2022-08-18 18:00:27 +02:00
|
|
|
#include <fmt/format.h>
|
|
|
|
|
2021-05-27 15:40:54 +02:00
|
|
|
#include "AButton.hpp"
|
2022-08-18 18:00:27 +02:00
|
|
|
#include "bar.hpp"
|
|
|
|
#include "modules/hyprland/backend.hpp"
|
|
|
|
#include "util/json.hpp"
|
|
|
|
|
|
|
|
namespace waybar::modules::hyprland {
|
|
|
|
|
2022-11-09 09:34:19 +01:00
|
|
|
class Language : public waybar::AButton,
|
|
|
|
public EventHandler {
|
2021-05-27 15:40:54 +02:00
|
|
|
public:
|
2022-08-18 18:00:27 +02:00
|
|
|
Language(const std::string&, const waybar::Bar&, const Json::Value&);
|
2022-11-09 09:34:19 +01:00
|
|
|
~Language();
|
2022-08-18 18:00:27 +02:00
|
|
|
|
|
|
|
auto update() -> void;
|
|
|
|
|
2021-05-27 15:40:54 +02:00
|
|
|
private:
|
2022-08-18 18:00:27 +02:00
|
|
|
void onEvent(const std::string&);
|
|
|
|
|
|
|
|
void initLanguage();
|
2022-08-18 18:59:34 +02:00
|
|
|
std::string getShortFrom(const std::string&);
|
2022-08-18 18:00:27 +02:00
|
|
|
|
|
|
|
std::mutex mutex_;
|
|
|
|
const Bar& bar_;
|
|
|
|
util::JsonParser parser_;
|
|
|
|
std::string layoutName_;
|
|
|
|
};
|
|
|
|
|
2021-05-27 15:40:54 +02:00
|
|
|
} // namespace waybar::modules::hyprland
|