ladybird/Userland/Applications/Calendar/AddEventDialog.gml

148 lines
3 KiB
Text

@GUI::Widget {
fill_with_background_color: true
layout: @GUI::VerticalBoxLayout {
margins: [4]
}
@GUI::Widget {
fill_with_background_color: true
fixed_height: 20
layout: @GUI::HorizontalBoxLayout {}
@GUI::Label {
text: "Title:"
text_alignment: "CenterLeft"
fixed_height: 14
font_weight: "Bold"
}
@GUI::TextBox {
name: "event_title_textbox"
fixed_size: [310, 20]
}
}
@GUI::Widget {
fill_with_background_color: true
fixed_height: 25
layout: @GUI::HorizontalBoxLayout {
spacing: 4
}
@GUI::Label {
text: "Start:"
text_alignment: "CenterLeft"
fixed_height: 14
font_weight: "Bold"
}
@GUI::ComboBox {
name: "start_month"
model_only: true
fixed_size: [50, 20]
}
@GUI::SpinBox {
name: "start_day"
fixed_size: [40, 20]
min: 1
}
@GUI::SpinBox {
name: "start_year"
fixed_size: [55, 20]
min: 0
max: 9999
}
@GUI::SpinBox {
name: "start_hour"
fixed_size: [50, 20]
min: 1
max: 12
}
@GUI::SpinBox {
name: "start_minute"
fixed_size: [40, 20]
min: 1
max: 59
}
@GUI::ComboBox {
name: "start_meridiem"
model_only: true
fixed_size: [55, 20]
}
}
@GUI::Widget {
fill_with_background_color: true
fixed_height: 25
layout: @GUI::HorizontalBoxLayout {
spacing: 4
}
@GUI::Label {
text: "End:"
text_alignment: "CenterLeft"
fixed_height: 14
font_weight: "Bold"
}
@GUI::ComboBox {
name: "end_month"
model_only: true
fixed_size: [50, 20]
}
@GUI::SpinBox {
name: "end_day"
fixed_size: [40, 20]
min: 1
}
@GUI::SpinBox {
name: "end_year"
fixed_size: [55, 20]
min: 0
max: 9999
}
@GUI::SpinBox {
name: "end_hour"
fixed_size: [50, 20]
min: 1
max: 12
}
@GUI::SpinBox {
name: "end_minute"
fixed_size: [40, 20]
min: 1
max: 59
}
@GUI::ComboBox {
name: "end_meridiem"
model_only: true
fixed_size: [55, 20]
}
}
@GUI::Layout::Spacer {}
@GUI::Widget {
fill_with_background_color: true
fixed_height: 20
layout: @GUI::HorizontalBoxLayout {}
@GUI::Layout::Spacer {}
@GUI::Button {
name: "ok_button"
text: "OK"
fixed_size: [80, 20]
}
}
}