mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-04 01:05:58 +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 :^)
49 lines
1.2 KiB
C++
49 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2019-2020, Jesse Buhagiar <jooster669@gmail.com>
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
* Copyright (c) 2022, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "MonitorWidget.h"
|
|
#include <LibCore/Timer.h>
|
|
#include <LibGUI/ColorInput.h>
|
|
#include <LibGUI/ComboBox.h>
|
|
#include <LibGUI/Menu.h>
|
|
#include <LibGUI/RadioButton.h>
|
|
#include <LibGUI/SettingsWindow.h>
|
|
|
|
namespace DisplaySettings {
|
|
|
|
class BackgroundSettingsWidget : public GUI::SettingsWindow::Tab {
|
|
C_OBJECT(BackgroundSettingsWidget);
|
|
|
|
public:
|
|
virtual ~BackgroundSettingsWidget() override = default;
|
|
|
|
virtual void apply_settings() override;
|
|
|
|
private:
|
|
BackgroundSettingsWidget(bool& background_settings_changed);
|
|
|
|
void create_frame();
|
|
void load_current_settings();
|
|
|
|
Vector<DeprecatedString> m_modes;
|
|
|
|
bool& m_background_settings_changed;
|
|
|
|
RefPtr<DisplaySettings::MonitorWidget> m_monitor_widget;
|
|
RefPtr<GUI::IconView> m_wallpaper_view;
|
|
RefPtr<GUI::ComboBox> m_mode_combo;
|
|
RefPtr<GUI::ColorInput> m_color_input;
|
|
RefPtr<GUI::Menu> m_context_menu;
|
|
RefPtr<GUI::Action> m_show_in_file_manager_action;
|
|
RefPtr<GUI::Action> m_copy_action;
|
|
};
|
|
|
|
}
|