summaryrefslogtreecommitdiff
path: root/Userland/Applications/ClockSettings/TimeZoneSettingsWidget.gml
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Applications/ClockSettings/TimeZoneSettingsWidget.gml')
-rw-r--r--Userland/Applications/ClockSettings/TimeZoneSettingsWidget.gml42
1 files changed, 42 insertions, 0 deletions
diff --git a/Userland/Applications/ClockSettings/TimeZoneSettingsWidget.gml b/Userland/Applications/ClockSettings/TimeZoneSettingsWidget.gml
new file mode 100644
index 0000000000..f0b10cd4a8
--- /dev/null
+++ b/Userland/Applications/ClockSettings/TimeZoneSettingsWidget.gml
@@ -0,0 +1,42 @@
+@GUI::Frame {
+ fill_with_background_color: true
+ layout: @GUI::VerticalBoxLayout {
+ margins: [10]
+ spacing: 5
+ }
+
+ @GUI::GroupBox {
+ title: "Time Zone Settings"
+ layout: @GUI::VerticalBoxLayout {
+ margins: [16, 8, 8]
+ spacing: 16
+ }
+
+ @GUI::Label {
+ text: "Change the system's time zone used for the clock and other applications."
+ text_alignment: "TopLeft"
+ }
+
+ @GUI::Widget {
+ layout: @GUI::HorizontalBoxLayout {
+ spacing: 4
+ }
+
+ @GUI::Label {
+ text: "Time Zone:"
+ fixed_width: 80
+ name: "time_zone_label"
+ text_alignment: "CenterLeft"
+ }
+
+ @GUI::ComboBox {
+ name: "time_zone_input"
+ }
+ }
+
+ @GUI::ImageWidget {
+ name: "time_zone_map"
+ auto_resize: true
+ }
+ }
+}