1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 21:47:45 +00:00

BrowserSettings: Use new GML compiler

This commit is contained in:
kleines Filmröllchen 2023-05-26 13:12:24 +02:00 committed by Sam Atkins
parent 6f554af9c5
commit 182126dfda
11 changed files with 59 additions and 32 deletions

View file

@ -12,6 +12,8 @@
#include <LibGUI/SettingsWindow.h>
#include <LibGUI/TextBox.h>
namespace BrowserSettings {
class BrowserSettingsWidget final : public GUI::SettingsWindow::Tab {
C_OBJECT_ABSTRACT(BrowserSettingsWidget)
public:
@ -22,6 +24,8 @@ public:
virtual void reset_default_values() override;
private:
static ErrorOr<NonnullRefPtr<BrowserSettingsWidget>> try_create();
ErrorOr<void> setup();
RefPtr<GUI::TextBox> m_homepage_url_textbox;
@ -39,3 +43,5 @@ private:
RefPtr<GUI::Widget> m_custom_search_engine_group;
RefPtr<GUI::TextBox> m_custom_search_engine_textbox;
};
}