mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
3cc1a86ef5
When writing a custom format especially, it's nice to be able to see how it will look as you write it.
32 lines
749 B
C++
32 lines
749 B
C++
/*
|
|
* Copyright (c) 2022, cflip <cflip@cflip.net>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/RefPtr.h>
|
|
#include <LibGUI/SettingsWindow.h>
|
|
|
|
class ClockSettingsWidget final : public GUI::SettingsWindow::Tab {
|
|
C_OBJECT(ClockSettingsWidget)
|
|
|
|
private:
|
|
ClockSettingsWidget();
|
|
|
|
virtual void apply_settings() override;
|
|
virtual void reset_default_values() override;
|
|
|
|
void update_time_format_string();
|
|
void update_clock_preview();
|
|
|
|
RefPtr<GUI::RadioButton> m_24_hour_radio;
|
|
RefPtr<GUI::CheckBox> m_show_seconds_checkbox;
|
|
RefPtr<GUI::TextBox> m_custom_format_input;
|
|
RefPtr<GUI::Label> m_clock_preview;
|
|
|
|
RefPtr<Core::Timer> m_clock_preview_update_timer;
|
|
|
|
String m_time_format;
|
|
};
|