2020-06-02 20:59:30 +03:00
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2020, Hüseyin Aslıtürk <asliturk@hotmail.com>
|
2021-12-17 22:03:23 +01:00
|
|
|
|
* Copyright (c) 2021, Rasmus Nylander <RasmusNylander.SerenityOS@gmail.com>
|
2020-06-02 20:59:30 +03:00
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-06-02 20:59:30 +03:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "KeyboardMapperWidget.h"
|
|
|
|
|
#include <LibCore/ArgsParser.h>
|
2021-12-16 14:20:25 +01:00
|
|
|
|
#include <LibCore/System.h>
|
2020-06-02 20:59:30 +03:00
|
|
|
|
#include <LibGUI/Action.h>
|
|
|
|
|
#include <LibGUI/Application.h>
|
|
|
|
|
#include <LibGUI/FilePicker.h>
|
|
|
|
|
#include <LibGUI/Icon.h>
|
|
|
|
|
#include <LibGUI/Menu.h>
|
2021-04-13 16:18:20 +02:00
|
|
|
|
#include <LibGUI/Menubar.h>
|
2021-12-16 14:20:25 +01:00
|
|
|
|
#include <LibMain/Main.h>
|
2020-06-02 20:59:30 +03:00
|
|
|
|
|
2021-12-16 14:20:25 +01:00
|
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
2020-06-02 20:59:30 +03:00
|
|
|
|
{
|
2021-12-16 19:39:38 +01:00
|
|
|
|
StringView path;
|
2020-06-02 20:59:30 +03:00
|
|
|
|
Core::ArgsParser args_parser;
|
|
|
|
|
args_parser.add_positional_argument(path, "Keyboard character mapping file.", "file", Core::ArgsParser::Required::No);
|
2021-12-16 14:20:25 +01:00
|
|
|
|
args_parser.parse(arguments);
|
2020-06-02 20:59:30 +03:00
|
|
|
|
|
2021-12-16 14:20:25 +01:00
|
|
|
|
TRY(Core::System::pledge("stdio getkeymap thread rpath cpath wpath recvfd sendfd unix"));
|
2020-11-02 21:34:29 +00:00
|
|
|
|
|
2021-12-16 14:20:25 +01:00
|
|
|
|
auto app = GUI::Application::construct(arguments.argc, arguments.argv);
|
2020-06-02 20:59:30 +03:00
|
|
|
|
|
2021-12-16 14:20:25 +01:00
|
|
|
|
TRY(Core::System::pledge("stdio getkeymap thread rpath cpath wpath recvfd sendfd"));
|
2020-11-02 21:34:29 +00:00
|
|
|
|
|
2020-06-02 20:59:30 +03:00
|
|
|
|
auto app_icon = GUI::Icon::default_icon("app-keyboard-mapper");
|
|
|
|
|
|
|
|
|
|
auto window = GUI::Window::construct();
|
2021-01-04 23:51:49 +01:00
|
|
|
|
window->set_title("Keyboard Mapper");
|
2020-06-02 20:59:30 +03:00
|
|
|
|
window->set_icon(app_icon.bitmap_for_size(16));
|
2022-01-07 14:55:58 +01:00
|
|
|
|
auto keyboard_mapper_widget = TRY(window->try_set_main_widget<KeyboardMapperWidget>());
|
2020-06-02 20:59:30 +03:00
|
|
|
|
window->resize(775, 315);
|
|
|
|
|
window->set_resizable(false);
|
|
|
|
|
|
2021-12-16 19:39:38 +01:00
|
|
|
|
if (path.is_empty())
|
|
|
|
|
TRY(keyboard_mapper_widget->load_map_from_system());
|
|
|
|
|
else
|
|
|
|
|
TRY(keyboard_mapper_widget->load_map_from_file(path));
|
2020-06-02 20:59:30 +03:00
|
|
|
|
|
2021-12-16 14:20:25 +01:00
|
|
|
|
TRY(Core::System::pledge("stdio thread rpath cpath wpath recvfd sendfd"));
|
2021-01-31 22:50:17 +01:00
|
|
|
|
|
2020-06-02 20:59:30 +03:00
|
|
|
|
auto open_action = GUI::CommonActions::make_open_action(
|
|
|
|
|
[&](auto&) {
|
2021-06-01 21:48:01 +02:00
|
|
|
|
Optional<String> path = GUI::FilePicker::get_open_filepath(window, "Open", "/res/keymaps/");
|
2021-12-17 22:03:23 +01:00
|
|
|
|
if (!path.has_value())
|
|
|
|
|
return;
|
2021-12-16 19:39:38 +01:00
|
|
|
|
|
|
|
|
|
ErrorOr<void> error_or = keyboard_mapper_widget->load_map_from_file(path.value());
|
|
|
|
|
if (error_or.is_error())
|
|
|
|
|
keyboard_mapper_widget->show_error_to_user(error_or.error());
|
2020-06-02 20:59:30 +03:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
auto save_action = GUI::CommonActions::make_save_action(
|
|
|
|
|
[&](auto&) {
|
2021-12-16 19:39:38 +01:00
|
|
|
|
ErrorOr<void> error_or = keyboard_mapper_widget->save();
|
|
|
|
|
if (error_or.is_error())
|
|
|
|
|
keyboard_mapper_widget->show_error_to_user(error_or.error());
|
2020-06-02 20:59:30 +03:00
|
|
|
|
});
|
|
|
|
|
|
2020-11-01 21:32:27 +00:00
|
|
|
|
auto save_as_action = GUI::CommonActions::make_save_as_action([&](auto&) {
|
2021-01-30 22:30:46 +01:00
|
|
|
|
String name = "Unnamed";
|
|
|
|
|
Optional<String> save_path = GUI::FilePicker::get_save_filepath(window, name, "json");
|
2020-11-01 21:32:27 +00:00
|
|
|
|
if (!save_path.has_value())
|
|
|
|
|
return;
|
|
|
|
|
|
2021-12-16 19:39:38 +01:00
|
|
|
|
ErrorOr<void> error_or = keyboard_mapper_widget->save_to_file(save_path.value());
|
|
|
|
|
if (error_or.is_error())
|
|
|
|
|
keyboard_mapper_widget->show_error_to_user(error_or.error());
|
2020-11-01 21:32:27 +00:00
|
|
|
|
});
|
2020-06-02 20:59:30 +03:00
|
|
|
|
|
|
|
|
|
auto quit_action = GUI::CommonActions::make_quit_action(
|
|
|
|
|
[&](auto&) {
|
2020-07-04 14:05:19 +02:00
|
|
|
|
app->quit();
|
2020-06-02 20:59:30 +03:00
|
|
|
|
});
|
|
|
|
|
|
2022-01-07 18:01:58 +01:00
|
|
|
|
auto auto_modifier_action = GUI::Action::create("Auto Modifier", [&](auto& act) {
|
|
|
|
|
keyboard_mapper_widget->set_automatic_modifier(act.is_checked());
|
|
|
|
|
});
|
|
|
|
|
auto_modifier_action->set_status_tip("Toggle automatic modifier");
|
|
|
|
|
auto_modifier_action->set_checkable(true);
|
|
|
|
|
auto_modifier_action->set_checked(false);
|
|
|
|
|
|
2021-07-21 21:21:03 +02:00
|
|
|
|
auto& file_menu = window->add_menu("&File");
|
2021-05-01 10:45:39 +02:00
|
|
|
|
file_menu.add_action(open_action);
|
|
|
|
|
file_menu.add_action(save_action);
|
|
|
|
|
file_menu.add_action(save_as_action);
|
|
|
|
|
file_menu.add_separator();
|
|
|
|
|
file_menu.add_action(quit_action);
|
2020-06-02 20:59:30 +03:00
|
|
|
|
|
2022-01-07 18:01:58 +01:00
|
|
|
|
auto& settings_menu = window->add_menu("&Settings");
|
|
|
|
|
settings_menu.add_action(auto_modifier_action);
|
|
|
|
|
|
2021-07-21 21:21:03 +02:00
|
|
|
|
auto& help_menu = window->add_menu("&Help");
|
2021-01-04 23:51:49 +01:00
|
|
|
|
help_menu.add_action(GUI::CommonActions::make_about_action("Keyboard Mapper", app_icon, window));
|
2020-06-02 20:59:30 +03:00
|
|
|
|
|
2021-07-28 12:32:41 +02:00
|
|
|
|
window->show();
|
|
|
|
|
|
2020-07-04 14:05:19 +02:00
|
|
|
|
return app->exec();
|
2020-06-02 20:59:30 +03:00
|
|
|
|
}
|