mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
40 lines
1.3 KiB
C++
40 lines
1.3 KiB
C++
/*
|
|
* Copyright (c) 2021, Sam Atkins <atkinssj@serenityos.org>
|
|
* Copyright (c) 2022, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibGUI/CheckBox.h>
|
|
#include <LibGUI/ComboBox.h>
|
|
#include <LibGUI/SettingsWindow.h>
|
|
#include <LibGUI/TextBox.h>
|
|
|
|
class BrowserSettingsWidget final : public GUI::SettingsWindow::Tab {
|
|
C_OBJECT(BrowserSettingsWidget)
|
|
public:
|
|
virtual ~BrowserSettingsWidget() override = default;
|
|
|
|
virtual void apply_settings() override;
|
|
virtual void reset_default_values() override;
|
|
|
|
private:
|
|
BrowserSettingsWidget();
|
|
|
|
RefPtr<GUI::TextBox> m_homepage_url_textbox;
|
|
RefPtr<GUI::TextBox> m_new_tab_url_textbox;
|
|
void set_color_scheme(StringView);
|
|
RefPtr<GUI::ComboBox> m_color_scheme_combobox;
|
|
RefPtr<GUI::CheckBox> m_show_bookmarks_bar_checkbox;
|
|
RefPtr<GUI::CheckBox> m_auto_close_download_windows_checkbox;
|
|
|
|
void set_search_engine_url(StringView);
|
|
bool m_is_custom_search_engine { false };
|
|
RefPtr<GUI::CheckBox> m_enable_search_engine_checkbox;
|
|
RefPtr<GUI::Widget> m_search_engine_combobox_group;
|
|
RefPtr<GUI::ComboBox> m_search_engine_combobox;
|
|
RefPtr<GUI::Widget> m_custom_search_engine_group;
|
|
RefPtr<GUI::TextBox> m_custom_search_engine_textbox;
|
|
};
|