KeyboardMapper: Without arguments, load current keymap

This commit is contained in:
Ben Wiederhake 2021-01-30 22:30:46 +01:00 committed by Andreas Kling
parent dd4e670f72
commit d9e7e13fb2
Notes: sideshowbarker 2024-07-18 22:40:22 +09:00
3 changed files with 23 additions and 6 deletions

View file

@ -31,6 +31,7 @@
#include <LibGUI/InputBox.h>
#include <LibGUI/MessageBox.h>
#include <LibGUI/RadioButton.h>
#include <LibKeyboard/CharacterMap.h>
#include <LibKeyboard/CharacterMapFile.h>
#include <fcntl.h>
#include <stdio.h>
@ -145,9 +146,7 @@ void KeyboardMapperWidget::create_frame()
void KeyboardMapperWidget::load_from_file(String file_name)
{
auto result = Keyboard::CharacterMapFile::load_from_file(file_name);
if (!result.has_value()) {
ASSERT_NOT_REACHED();
}
ASSERT(result.has_value());
m_file_name = file_name;
m_character_map = result.value();
@ -161,6 +160,23 @@ void KeyboardMapperWidget::load_from_file(String file_name)
update_window_title();
}
void KeyboardMapperWidget::load_from_system()
{
auto result = Keyboard::CharacterMap::fetch_system_map();
ASSERT(!result.is_error());
m_file_name = String::formatted("/res/keymaps/{}.json", result.value().character_map_name());
m_character_map = result.value().character_map_data();
set_current_map("map");
for (Widget* widget : m_map_group->child_widgets()) {
auto radio_button = (GUI::RadioButton*)widget;
radio_button->set_checked(radio_button->name() == "map");
}
update_window_title();
}
void KeyboardMapperWidget::save()
{
save_to_file(m_file_name);