1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /*
- * Copyright (c) 2020, Hüseyin Aslıtürk <asliturk@hotmail.com>
- * Copyright (c) 2021, Sam Atkins <atkinssj@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #include "KeyboardSettingsWidget.h"
- #include <LibGUI/Application.h>
- #include <LibGUI/SettingsWindow.h>
- #include <LibGUI/WindowServerConnection.h>
- // Including this after to avoid LibIPC errors
- #include <LibConfig/Client.h>
- int main(int argc, char** argv)
- {
- if (pledge("stdio rpath cpath wpath recvfd sendfd unix proc exec", nullptr) < 0) {
- perror("pledge");
- return 1;
- }
- auto app = GUI::Application::construct(argc, argv);
- Config::pledge_domains("KeyboardSettings");
- if (pledge("stdio rpath cpath wpath recvfd sendfd proc exec", nullptr) < 0) {
- perror("pledge");
- return 1;
- }
- if (unveil("/res", "r") < 0) {
- perror("unveil");
- return 1;
- }
- if (unveil("/bin/keymap", "x") < 0) {
- perror("unveil");
- return 1;
- }
- if (unveil("/proc/keymap", "r") < 0) {
- perror("unveil");
- return 1;
- }
- if (unveil(nullptr, nullptr)) {
- perror("unveil");
- return 1;
- }
- auto app_icon = GUI::Icon::default_icon("app-keyboard-settings");
- auto window = GUI::SettingsWindow::construct("Keyboard Settings");
- window->set_icon(app_icon.bitmap_for_size(16));
- window->add_tab<KeyboardSettingsWidget>("Keyboard");
- window->show();
- return app->exec();
- }
|