mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-06 02:55:49 +03:00
e11d177618
This allows for typing [8] instead of [8, 8, 8, 8] to specify the same margin on all edges, for example. The constructors follow CSS' style of specifying margins. The added constructors are: - Margins(int all): Sets the same margin on all edges. - Margins(int vertical, int horizontal): Sets the first argument to top and bottom margins, and the second argument to left and right margins. - Margins(int top, int vertical, int bottom): Sets the first argument to the top margin, the second argument to the left and right margins, and the third argument to the bottom margin.
96 lines
3.3 KiB
C++
96 lines
3.3 KiB
C++
/*
|
|
* Copyright (c) 2019-2020, Jesse Buhagiar <jooster669@gmail.com>
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include "BackgroundSettingsWidget.h"
|
|
#include "DesktopSettingsWidget.h"
|
|
#include "FontSettingsWidget.h"
|
|
#include "MonitorSettingsWidget.h"
|
|
#include <LibGUI/Application.h>
|
|
#include <LibGUI/BoxLayout.h>
|
|
#include <LibGUI/Button.h>
|
|
#include <LibGUI/Icon.h>
|
|
#include <LibGUI/Menu.h>
|
|
#include <LibGUI/Menubar.h>
|
|
#include <LibGUI/TabWidget.h>
|
|
#include <LibGUI/Window.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(400, 480);
|
|
window->set_resizable(false);
|
|
window->set_minimizable(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);
|
|
main_widget.layout()->set_spacing(6);
|
|
|
|
auto& tab_widget = main_widget.add<GUI::TabWidget>();
|
|
auto& background_settings_widget = tab_widget.add_tab<DisplaySettings::BackgroundSettingsWidget>("Background");
|
|
auto& font_settings_widget = tab_widget.add_tab<DisplaySettings::FontSettingsWidget>("Fonts");
|
|
auto& monitor_settings_widget = tab_widget.add_tab<DisplaySettings::MonitorSettingsWidget>("Monitor");
|
|
auto& desktop_settings_widget = tab_widget.add_tab<DisplaySettings::DesktopSettingsWidget>("Workspaces");
|
|
tab_widget.on_change = [&](auto& widget) {
|
|
monitor_settings_widget.show_screen_numbers(&widget == &monitor_settings_widget);
|
|
};
|
|
|
|
auto& button_container = main_widget.add<GUI::Widget>();
|
|
button_container.set_shrink_to_fit(true);
|
|
button_container.set_layout<GUI::HorizontalBoxLayout>();
|
|
button_container.layout()->set_spacing(6);
|
|
button_container.layout()->add_spacer();
|
|
|
|
auto& ok_button = button_container.add<GUI::Button>("OK");
|
|
ok_button.set_fixed_width(75);
|
|
ok_button.on_click = [&](auto) {
|
|
background_settings_widget.apply_settings();
|
|
monitor_settings_widget.apply_settings();
|
|
desktop_settings_widget.apply_settings();
|
|
font_settings_widget.apply_settings();
|
|
app->quit();
|
|
};
|
|
|
|
auto& cancel_button = button_container.add<GUI::Button>("Cancel");
|
|
cancel_button.set_fixed_width(75);
|
|
cancel_button.on_click = [&](auto) {
|
|
app->quit();
|
|
};
|
|
|
|
auto& apply_button = button_container.add<GUI::Button>("Apply");
|
|
apply_button.set_fixed_width(75);
|
|
apply_button.on_click = [&](auto) {
|
|
background_settings_widget.apply_settings();
|
|
monitor_settings_widget.apply_settings();
|
|
desktop_settings_widget.apply_settings();
|
|
font_settings_widget.apply_settings();
|
|
};
|
|
|
|
window->set_icon(app_icon.bitmap_for_size(16));
|
|
|
|
window->show();
|
|
return app->exec();
|
|
}
|