Waybar/include/modules/hyprland/language.hpp

30 lines
642 B
C++
Raw Normal View History

2022-08-18 16:00:27 +00:00
#include <fmt/format.h>
2022-11-24 11:28:52 +00:00
#include "ALabel.hpp"
2022-08-18 16:00:27 +00:00
#include "bar.hpp"
#include "modules/hyprland/backend.hpp"
#include "util/json.hpp"
namespace waybar::modules::hyprland {
2022-11-24 11:28:52 +00:00
class Language : public waybar::ALabel, public EventHandler {
public:
2022-08-18 16:00:27 +00:00
Language(const std::string&, const waybar::Bar&, const Json::Value&);
2023-03-02 13:57:07 +00:00
virtual ~Language();
2022-08-18 16:00:27 +00:00
2023-03-02 13:57:07 +00:00
auto update() -> void override;
2022-08-18 16:00:27 +00:00
private:
2023-03-02 13:57:07 +00:00
void onEvent(const std::string&) override;
2022-08-18 16:00:27 +00:00
void initLanguage();
2022-08-18 16:59:34 +00:00
std::string getShortFrom(const std::string&);
2022-08-18 16:00:27 +00:00
std::mutex mutex_;
const Bar& bar_;
util::JsonParser parser_;
std::string layoutName_;
};
} // namespace waybar::modules::hyprland