/* * Copyright (c) 2020, Idan Horowitz * Copyright (c) 2021, the SerenityOS developers. * Copyright (c) 2021, Andreas Kling * Copyright (c) 2021, Sam Atkins * * SPDX-License-Identifier: BSD-2-Clause */ #include "MouseWidget.h" #include "ThemeWidget.h" #include #include #include #include #include ErrorOr serenity_main(Main::Arguments arguments) { TRY(Core::System::pledge("stdio cpath rpath recvfd sendfd unix", nullptr)); auto app = TRY(GUI::Application::try_create(arguments)); TRY(Core::System::pledge("stdio cpath rpath recvfd sendfd", nullptr)); auto app_icon = GUI::Icon::default_icon("app-mouse"); auto window = TRY(GUI::SettingsWindow::try_create("Mouse Settings", GUI::SettingsWindow::ShowDefaultsButton::Yes)); window->add_tab("Mouse"); window->add_tab("Cursor Theme"); window->set_icon(app_icon.bitmap_for_size(16)); window->show(); return app->exec(); }