2021-11-24 19:47:39 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2021, Sam Atkins <atkinssj@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "BrowserSettingsWidget.h"
|
|
|
|
#include <LibConfig/Client.h>
|
|
|
|
#include <LibCore/System.h>
|
|
|
|
#include <LibGUI/Application.h>
|
|
|
|
#include <LibGUI/Icon.h>
|
|
|
|
#include <LibGUI/SettingsWindow.h>
|
|
|
|
#include <LibMain/Main.h>
|
|
|
|
|
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|
|
|
{
|
2021-11-28 01:26:34 +03:00
|
|
|
TRY(Core::System::pledge("stdio rpath recvfd sendfd unix"));
|
2021-11-24 19:47:39 +03:00
|
|
|
auto app = TRY(GUI::Application::try_create(arguments));
|
|
|
|
Config::pledge_domains("Browser");
|
|
|
|
|
|
|
|
TRY(Core::System::unveil("/res", "r"));
|
2021-11-25 15:26:54 +03:00
|
|
|
TRY(Core::System::unveil("/home", "r"));
|
2021-11-24 19:47:39 +03:00
|
|
|
TRY(Core::System::unveil(nullptr, nullptr));
|
|
|
|
|
|
|
|
auto app_icon = GUI::Icon::default_icon("app-browser");
|
|
|
|
|
2021-11-25 16:58:05 +03:00
|
|
|
auto window = TRY(GUI::SettingsWindow::try_create("Browser Settings", GUI::SettingsWindow::ShowDefaultsButton::Yes));
|
2021-11-24 19:47:39 +03:00
|
|
|
window->set_icon(app_icon.bitmap_for_size(16));
|
2021-11-27 19:37:00 +03:00
|
|
|
TRY(window->add_tab<BrowserSettingsWidget>("Browser"));
|
2021-11-24 19:47:39 +03:00
|
|
|
|
|
|
|
window->show();
|
|
|
|
return app->exec();
|
|
|
|
}
|