mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-06 11:09:05 +03:00
6e19ab2bbc
We have a new, improved string type coming up in AK (OOM aware, no null state), and while it's going to use UTF-8, the name UTF8String is a mouthful - so let's free up the String name by renaming the existing class. Making the old one have an annoying name will hopefully also help with quick adoption :^)
33 lines
759 B
C++
33 lines
759 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;
|
|
|
|
DeprecatedString m_time_format;
|
|
};
|