1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:27: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 "KeymapStatusWindow.h"
#include <LibCore/Process.h>
#include <LibGUI/Painter.h> #include <LibGUI/Painter.h>
#include <LibGUI/WindowManagerServerConnection.h> #include <LibGUI/WindowManagerServerConnection.h>
#include <LibKeyboard/CharacterMap.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() KeymapStatusWindow::KeymapStatusWindow()
{ {
set_window_type(GUI::WindowType::Applet); set_window_type(GUI::WindowType::Applet);
set_has_alpha_channel(true); 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 = MUST(Keyboard::CharacterMap::fetch_system_map());
auto current_keymap_name = current_keymap.character_map_name(); auto current_keymap_name = current_keymap.character_map_name();
m_label->set_tooltip(current_keymap_name); m_status_widget->set_tooltip(current_keymap_name);
m_label->set_text(current_keymap_name.substring(0, 2)); m_status_widget->set_text(current_keymap_name.substring(0, 2));
} }
KeymapStatusWindow::~KeymapStatusWindow() KeymapStatusWindow::~KeymapStatusWindow()
@ -36,9 +45,9 @@ void KeymapStatusWindow::wm_event(GUI::WMEvent& event)
void KeymapStatusWindow::set_keymap_text(const String& keymap) void KeymapStatusWindow::set_keymap_text(const String& keymap)
{ {
GUI::Painter painter(*m_label); GUI::Painter painter(*m_status_widget);
painter.clear_rect(m_label->rect(), Color::from_rgba(0)); painter.clear_rect(m_status_widget->rect(), Color::from_rgba(0));
m_label->set_tooltip(keymap); m_status_widget->set_tooltip(keymap);
m_label->set_text(keymap.substring(0, 2)); m_status_widget->set_text(keymap.substring(0, 2));
} }

View file

@ -9,19 +9,22 @@
#include <LibGUI/Label.h> #include <LibGUI/Label.h>
#include <LibGUI/Window.h> #include <LibGUI/Window.h>
class KeymapStatusWidget; class KeymapStatusWidget : public GUI::Label {
C_OBJECT(KeymapStatusWidget);
virtual void mousedown_event(GUI::MouseEvent& event) override;
};
class KeymapStatusWindow final : public GUI::Window { class KeymapStatusWindow final : public GUI::Window {
C_OBJECT(KeymapStatusWindow) C_OBJECT(KeymapStatusWindow)
public: public:
virtual ~KeymapStatusWindow() override; virtual ~KeymapStatusWindow() override;
private: private:
void wm_event(GUI::WMEvent&) override; virtual void wm_event(GUI::WMEvent&) override;
KeymapStatusWindow(); KeymapStatusWindow();
RefPtr<GUI::Label> m_label; RefPtr<KeymapStatusWidget> m_status_widget;
void set_keymap_text(String const& keymap); void set_keymap_text(String const& keymap);
}; };

View file

@ -13,7 +13,7 @@
ErrorOr<int> serenity_main(Main::Arguments arguments) ErrorOr<int> serenity_main(Main::Arguments arguments)
{ {
TRY(Core::System::pledge("stdio recvfd sendfd rpath unix getkeymap")); TRY(Core::System::pledge("stdio recvfd sendfd rpath unix getkeymap proc exec"));
auto app = TRY(GUI::Application::try_create(arguments)); auto app = TRY(GUI::Application::try_create(arguments));
@ -24,7 +24,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
window->show(); window->show();
window->make_window_manager(WindowServer::WMEventMask::KeymapChanged); window->make_window_manager(WindowServer::WMEventMask::KeymapChanged);
TRY(Core::System::pledge("stdio recvfd sendfd rpath getkeymap")); TRY(Core::System::pledge("stdio recvfd sendfd rpath getkeymap proc exec"));
return app->exec(); return app->exec();
} }