mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-01 03:57:15 +02:00
ClockSettings+Taskbar: Add settings for taskbar clock format
This commit is contained in:
Notes:
sideshowbarker
2024-07-17 14:27:54 +09:00
Author: https://github.com/cflip 🔰 Commit: https://github.com/SerenityOS/serenity/commit/5bb0b6ba7a Pull-request: https://github.com/SerenityOS/serenity/pull/13497
@@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user