mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
60 lines
1.4 KiB
C++
60 lines
1.4 KiB
C++
/*
|
||
* 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();
|
||
}
|