Waybar/include/modules/keyboard_state.hpp

50 lines
1.1 KiB
C++
Raw Normal View History

2021-02-07 20:05:11 +00:00
#pragma once
#include <fmt/chrono.h>
2022-04-06 06:37:19 +00:00
#include <gtkmm/label.h>
#include <set>
#include <unordered_map>
2021-02-07 23:46:39 +00:00
#include "AModule.hpp"
#include "bar.hpp"
2021-02-07 20:05:11 +00:00
#include "util/sleeper_thread.hpp"
extern "C" {
#include <libevdev/libevdev.h>
#include <libinput.h>
2021-02-07 20:05:11 +00:00
}
namespace waybar::modules {
2021-02-07 23:46:39 +00:00
class KeyboardState : public AModule {
2021-02-07 20:05:11 +00:00
public:
2021-02-07 23:46:39 +00:00
KeyboardState(const std::string&, const waybar::Bar&, const Json::Value&);
2023-03-02 13:57:07 +00:00
virtual ~KeyboardState();
auto update() -> void override;
2021-02-07 20:05:11 +00:00
private:
auto tryAddDevice(const std::string&) -> void;
2022-04-06 06:37:19 +00:00
Gtk::Box box_;
Gtk::Label numlock_label_;
Gtk::Label capslock_label_;
Gtk::Label scrolllock_label_;
2021-02-07 23:46:39 +00:00
std::string numlock_format_;
std::string capslock_format_;
std::string scrolllock_format_;
const std::chrono::seconds interval_;
std::string icon_locked_;
std::string icon_unlocked_;
std::string devices_path_;
2021-02-07 23:46:39 +00:00
struct libinput* libinput_;
std::unordered_map<std::string, struct libinput_device*> libinput_devices_;
std::set<int> binding_keys;
2021-02-07 23:46:39 +00:00
util::SleeperThread libinput_thread_, hotplug_thread_;
2021-02-07 20:05:11 +00:00
};
} // namespace waybar::modules