2018-08-18 11:43:48 +02:00
|
|
|
#pragma once
|
|
|
|
|
2019-01-08 21:05:44 +01:00
|
|
|
#include <glibmm/markup.h>
|
|
|
|
#include <gtkmm/eventbox.h>
|
|
|
|
#include <gtkmm/label.h>
|
2019-04-18 17:52:00 +02:00
|
|
|
#include <json/json.h>
|
|
|
|
#include "IModule.hpp"
|
2018-08-18 11:43:48 +02:00
|
|
|
|
|
|
|
namespace waybar {
|
|
|
|
|
|
|
|
class ALabel : public IModule {
|
2019-04-18 17:52:00 +02:00
|
|
|
public:
|
2019-04-24 12:37:24 +02:00
|
|
|
ALabel(const Json::Value &, const std::string &format, uint16_t interval = 0);
|
2019-04-23 15:56:38 +02:00
|
|
|
virtual ~ALabel();
|
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
|
|
|
virtual operator Gtk::Widget &();
|
2018-10-29 18:04:09 +01:00
|
|
|
|
2019-04-18 17:52:00 +02:00
|
|
|
protected:
|
2019-02-22 11:35:26 +01:00
|
|
|
bool tooltipEnabled();
|
|
|
|
|
2019-04-18 17:52:00 +02:00
|
|
|
Gtk::EventBox event_box_;
|
|
|
|
Gtk::Label label_;
|
|
|
|
const Json::Value & config_;
|
|
|
|
std::string format_;
|
2019-05-02 16:56:45 +02:00
|
|
|
std::string click_param;
|
2019-04-18 17:52:00 +02:00
|
|
|
std::mutex mutex_;
|
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_;
|
2018-10-29 18:04:09 +01:00
|
|
|
|
2019-03-03 22:02:34 +01:00
|
|
|
virtual bool handleToggle(GdkEventButton *const &ev);
|
|
|
|
virtual bool handleScroll(GdkEventScroll *);
|
2019-05-16 09:39:06 +02:00
|
|
|
virtual std::string getState(uint8_t value, bool lesser = false);
|
2019-04-23 15:56:38 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::vector<int> pid_;
|
2018-08-18 11:43:48 +02:00
|
|
|
};
|
|
|
|
|
2019-04-18 17:52:00 +02:00
|
|
|
} // namespace waybar
|