Waybar/include/ALabel.hpp

32 lines
726 B
C++
Raw Normal View History

#pragma once
#include <json/json.h>
#include "IModule.hpp"
namespace waybar {
class ALabel : public IModule {
2018-12-18 16:30:54 +00:00
public:
ALabel(const Json::Value &, const std::string format, uint16_t interval = 0);
virtual ~ALabel() = default;
virtual auto update() -> void;
2018-12-18 16:30:54 +00:00
virtual std::string getIcon(uint16_t, const std::string &alt = "");
virtual operator Gtk::Widget &();
2018-12-18 16:30:54 +00:00
protected:
Gtk::EventBox event_box_;
Gtk::Label label_;
2018-12-18 16:30:54 +00:00
const Json::Value &config_;
std::string format_;
std::mutex mutex_;
2018-11-23 10:57:37 +00:00
const std::chrono::seconds interval_;
2018-12-18 16:30:54 +00:00
private:
bool handleToggle(GdkEventButton *const &ev);
bool handleScroll(GdkEventScroll *);
bool alt = false;
2018-11-22 15:50:42 +00:00
const std::string default_format_;
};
2018-12-18 16:30:54 +00:00
} // namespace waybar