1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:17:35 +00:00

Keymap Applet: Spawn KeyboardSettings when clicking

This commit is contained in:
Maciej 2022-02-04 21:04:25 +01:00 committed by Andreas Kling
parent e087cd574e
commit 99e3e42fa5
3 changed files with 24 additions and 12 deletions

View file

@ -5,20 +5,29 @@
*/
#include "KeymapStatusWindow.h"
#include <LibCore/Process.h>
#include <LibGUI/Painter.h>
#include <LibGUI/WindowManagerServerConnection.h>
#include <LibKeyboard/CharacterMap.h>
void KeymapStatusWidget::mousedown_event(GUI::MouseEvent& event)
{
if (event.button() != GUI::MouseButton::Primary)
return;
Core::Process::spawn("/bin/KeyboardSettings");
}
KeymapStatusWindow::KeymapStatusWindow()
{
set_window_type(GUI::WindowType::Applet);
set_has_alpha_channel(true);
m_label = &set_main_widget<GUI::Label>();
m_status_widget = &set_main_widget<KeymapStatusWidget>();
auto current_keymap = MUST(Keyboard::CharacterMap::fetch_system_map());
auto current_keymap_name = current_keymap.character_map_name();
m_label->set_tooltip(current_keymap_name);
m_label->set_text(current_keymap_name.substring(0, 2));
m_status_widget->set_tooltip(current_keymap_name);
m_status_widget->set_text(current_keymap_name.substring(0, 2));
}
KeymapStatusWindow::~KeymapStatusWindow()
@ -36,9 +45,9 @@ void KeymapStatusWindow::wm_event(GUI::WMEvent& event)
void KeymapStatusWindow::set_keymap_text(const String& keymap)
{
GUI::Painter painter(*m_label);
painter.clear_rect(m_label->rect(), Color::from_rgba(0));
GUI::Painter painter(*m_status_widget);
painter.clear_rect(m_status_widget->rect(), Color::from_rgba(0));
m_label->set_tooltip(keymap);
m_label->set_text(keymap.substring(0, 2));
m_status_widget->set_tooltip(keymap);
m_status_widget->set_text(keymap.substring(0, 2));
}