1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:07:36 +00:00

ClockSettings: Add 'show seconds' toggle to time format settings

This commit is contained in:
cflip 2022-04-12 18:01:35 -06:00 committed by Tim Flynn
parent b2ef7ee531
commit 0a92dbd390
3 changed files with 34 additions and 5 deletions

View file

@ -7,6 +7,7 @@
#include "ClockSettingsWidget.h"
#include <Applications/ClockSettings/ClockSettingsWidgetGML.h>
#include <LibConfig/Client.h>
#include <LibGUI/CheckBox.h>
#include <LibGUI/RadioButton.h>
#include <LibGUI/TextBox.h>
@ -16,6 +17,7 @@ ClockSettingsWidget::ClockSettingsWidget()
m_24_hour_radio = *find_descendant_of_type_named<GUI::RadioButton>("24hour_radio");
auto& twelve_hour_radio = *find_descendant_of_type_named<GUI::RadioButton>("12hour_radio");
m_show_seconds_checkbox = *find_descendant_of_type_named<GUI::CheckBox>("seconds_checkbox");
auto& custom_radio = *find_descendant_of_type_named<GUI::RadioButton>("custom_radio");
custom_radio.set_checked(true);
@ -23,16 +25,23 @@ ClockSettingsWidget::ClockSettingsWidget()
m_custom_format_input->set_text(Config::read_string("Taskbar", "Clock", "TimeFormat"));
m_24_hour_radio->on_checked = [&](bool) {
m_show_seconds_checkbox->set_enabled(true);
m_custom_format_input->set_enabled(false);
m_custom_format_input->set_text("%T");
update_time_format_string();
};
twelve_hour_radio.on_checked = [&](bool) {
m_show_seconds_checkbox->set_enabled(true);
m_custom_format_input->set_enabled(false);
m_custom_format_input->set_text("%I:%M %p");
update_time_format_string();
};
m_show_seconds_checkbox->on_checked = [&](bool) {
update_time_format_string();
};
custom_radio.on_checked = [&](bool) {
m_show_seconds_checkbox->set_enabled(false);
m_custom_format_input->set_enabled(true);
};
}
@ -45,5 +54,15 @@ void ClockSettingsWidget::apply_settings()
void ClockSettingsWidget::reset_default_values()
{
m_24_hour_radio->set_checked(true);
m_show_seconds_checkbox->set_checked(true);
Config::write_string("Taskbar", "Clock", "TimeFormat", "%T");
}
void ClockSettingsWidget::update_time_format_string()
{
bool show_seconds = m_show_seconds_checkbox->is_checked();
if (m_24_hour_radio->is_checked())
m_custom_format_input->set_text(show_seconds ? "%T" : "%R");
else
m_custom_format_input->set_text(show_seconds ? "%r" : "%I:%M %p");
}