Waybar/include/ALabel.hpp

33 lines
946 B
C++
Raw Normal View History

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