waybar/include/ALabel.hpp

31 lines
906 B
C++
Raw Normal View History

#pragma once
#include <glibmm/markup.h>
#include <gtkmm/label.h>
2019-04-18 17:52:00 +02:00
#include <json/json.h>
2019-06-15 14:57:52 +02:00
#include "AModule.hpp"
namespace waybar {
2019-06-15 14:57:52 +02:00
class ALabel : public AModule {
2019-04-18 17:52:00 +02:00
public:
ALabel(const Json::Value &, const std::string &, const std::string &, const std::string &format,
2019-06-28 14:16:09 +02:00
uint16_t interval = 0, bool ellipsize = false);
2019-06-15 14:57:52 +02:00
virtual ~ALabel() = default;
2019-04-18 17:52:00 +02:00
virtual auto update() -> void;
2019-05-13 11:31:05 +02:00
virtual std::string getIcon(uint16_t, const std::string &alt = "", uint16_t max = 0);
2019-04-18 17:52:00 +02:00
protected:
Gtk::Label label_;
std::string format_;
std::string click_param;
2018-11-23 11:57:37 +01:00
const std::chrono::seconds interval_;
2019-04-18 17:52:00 +02:00
bool alt_ = false;
std::string default_format_;
2019-06-15 14:57:52 +02:00
virtual bool handleToggle(GdkEventButton *const &e);
2019-05-16 09:39:06 +02:00
virtual std::string getState(uint8_t value, bool lesser = false);
};
2019-04-18 17:52:00 +02:00
} // namespace waybar