summaryrefslogtreecommitdiff
path: root/Userland/Applets/Keymap/KeymapStatusWindow.cpp
blob: 850198682b41556b5dc927b2599da5eda14c9899 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
 * Copyright (c) 2021, Timur Sultanov <SultanovTS@yandex.ru>
 * Copyright (c) 2022, the SerenityOS developers.
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include "KeymapStatusWindow.h"
#include <LibGUI/ConnectionToWindowMangerServer.h>
#include <LibGUI/Painter.h>
#include <LibGUI/Process.h>
#include <LibKeyboard/CharacterMap.h>

void KeymapStatusWidget::mousedown_event(GUI::MouseEvent& event)
{
    if (event.button() != GUI::MouseButton::Primary)
        return;

    GUI::Process::spawn_or_show_error(window(), "/bin/KeyboardSettings");
}

KeymapStatusWindow::KeymapStatusWindow()
{
    set_window_type(GUI::WindowType::Applet);
    set_has_alpha_channel(true);
    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_status_widget->set_tooltip(current_keymap_name);
    m_status_widget->set_text(current_keymap_name.substring(0, 2));
}

void KeymapStatusWindow::wm_event(GUI::WMEvent& event)
{
    if (event.type() == GUI::WMEvent::WM_KeymapChanged) {
        auto& keymap_event = static_cast<GUI::WMKeymapChangedEvent&>(event);
        auto keymap = keymap_event.keymap();
        set_keymap_text(keymap);
    }
}

void KeymapStatusWindow::set_keymap_text(String const& keymap)
{
    GUI::Painter painter(*m_status_widget);
    painter.clear_rect(m_status_widget->rect(), Color::from_argb(0));

    m_status_widget->set_tooltip(keymap);
    m_status_widget->set_text(keymap.substring(0, 2));
}