waybar/include/modules/hyprland/language.hpp

39 lines
774 B
C++
Raw Normal View History

2022-08-18 18:00:27 +02:00
#include <fmt/format.h>
2022-11-24 12:28:52 +01:00
#include "ALabel.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-24 12:28:52 +01:00
class Language : public waybar::ALabel, public EventHandler {
public:
2022-08-18 18:00:27 +02:00
Language(const std::string&, const waybar::Bar&, const Json::Value&);
2023-03-02 14:57:07 +01:00
virtual ~Language();
2022-08-18 18:00:27 +02:00
2023-03-02 14:57:07 +01:00
auto update() -> void override;
2022-08-18 18:00:27 +02:00
private:
2023-03-02 14:57:07 +01:00
void onEvent(const std::string&) override;
2022-08-18 18:00:27 +02:00
void initLanguage();
struct Layout {
std::string full_name;
std::string short_name;
std::string variant;
std::string short_description;
};
2023-03-21 20:30:35 +01:00
auto getLayout(const std::string&) -> Layout;
2022-08-18 18:00:27 +02:00
std::mutex mutex_;
const Bar& bar_;
util::JsonParser parser_;
Layout layout_;
2022-08-18 18:00:27 +02:00
};
} // namespace waybar::modules::hyprland