ClockSettings: Set window modified state

This commit is contained in:
Sam Atkins 2022-05-11 17:37:36 +01:00 committed by Andreas Kling
parent f27985a021
commit 57bac17b9f
Notes: sideshowbarker 2024-07-17 12:01:08 +09:00
2 changed files with 8 additions and 0 deletions

View file

@ -35,6 +35,7 @@ ClockSettingsWidget::ClockSettingsWidget()
m_custom_format_input->set_enabled(false);
m_custom_format_input->on_change = [&] {
m_time_format = m_custom_format_input->get_text();
set_modified(true);
update_clock_preview();
};
@ -60,6 +61,7 @@ ClockSettingsWidget::ClockSettingsWidget()
return;
m_show_seconds_checkbox->set_enabled(true);
m_custom_format_input->set_enabled(false);
set_modified(true);
update_time_format_string();
};
@ -68,10 +70,12 @@ ClockSettingsWidget::ClockSettingsWidget()
return;
m_show_seconds_checkbox->set_enabled(true);
m_custom_format_input->set_enabled(false);
set_modified(true);
update_time_format_string();
};
m_show_seconds_checkbox->on_checked = [&](bool) {
set_modified(true);
update_time_format_string();
};
@ -80,6 +84,7 @@ ClockSettingsWidget::ClockSettingsWidget()
return;
m_show_seconds_checkbox->set_enabled(false);
m_custom_format_input->set_enabled(true);
set_modified(true);
};
m_clock_preview_update_timer = Core::Timer::create_repeating(1000, [&]() {

View file

@ -50,6 +50,9 @@ TimeZoneSettingsWidget::TimeZoneSettingsWidget()
m_time_zone_combo_box->set_only_allow_values_from_model(true);
m_time_zone_combo_box->set_model(*StringViewListModel::create(time_zones));
m_time_zone_combo_box->set_text(m_time_zone);
m_time_zone_combo_box->on_change = [&](auto, auto) {
set_modified(true);
};
auto time_zone_map_bitmap = Gfx::Bitmap::try_load_from_file("/res/graphics/map.png"sv).release_value_but_fixme_should_propagate_errors();
auto time_zone_rect = time_zone_map_bitmap->rect().shrunken(TIME_ZONE_MAP_NORTHERN_TRIM, 0, TIME_ZONE_MAP_SOUTHERN_TRIM, 0);