123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /*
- * Copyright (c) 2019-2020, Jesse Buhagiar <jooster669@gmail.com>
- * Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #include "DisplaySettings.h"
- #include <LibGUI/Action.h>
- #include <LibGUI/Application.h>
- #include <LibGUI/BoxLayout.h>
- #include <LibGUI/Icon.h>
- #include <LibGUI/Menu.h>
- #include <LibGUI/Menubar.h>
- #include <LibGUI/TabWidget.h>
- #include <LibGUI/Window.h>
- #include <LibGfx/Bitmap.h>
- #include <stdio.h>
- #include <unistd.h>
- int main(int argc, char** argv)
- {
- if (pledge("stdio thread recvfd sendfd rpath cpath wpath unix", nullptr) < 0) {
- perror("pledge");
- return 1;
- }
- auto app = GUI::Application::construct(argc, argv);
- if (pledge("stdio thread recvfd sendfd rpath cpath wpath", nullptr) < 0) {
- perror("pledge");
- return 1;
- }
- auto app_icon = GUI::Icon::default_icon("app-display-settings");
- auto window = GUI::Window::construct();
- window->set_title("Display Settings");
- window->resize(360, 410);
- window->set_resizable(false);
- auto& main_widget = window->set_main_widget<GUI::Widget>();
- main_widget.set_fill_with_background_color(true);
- main_widget.set_layout<GUI::VerticalBoxLayout>();
- main_widget.layout()->set_margins({ 4, 4, 4, 4 });
- auto& tab_widget = main_widget.add<GUI::TabWidget>();
- tab_widget.add_tab<DisplaySettingsWidget>("Display Settings");
- window->set_icon(app_icon.bitmap_for_size(16));
- window->show();
- return app->exec();
- }
|