Waybar/include/modules/hyprland/language.hpp

29 lines
562 B
C++
Raw Normal View History

2022-08-18 16:00:27 +00:00
#include <fmt/format.h>
#include "ALabel.hpp"
#include "bar.hpp"
#include "modules/hyprland/backend.hpp"
#include "util/json.hpp"
namespace waybar::modules::hyprland {
class Language : public waybar::ALabel {
public:
Language(const std::string&, const waybar::Bar&, const Json::Value&);
~Language() = default;
auto update() -> void;
private:
void onEvent(const std::string&);
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_;
};
}