2018-08-10 14:26:46 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <fmt/format.h>
|
2022-04-06 06:37:19 +00:00
|
|
|
|
2019-03-18 17:46:44 +00:00
|
|
|
#include <csignal>
|
2019-05-18 23:44:45 +00:00
|
|
|
#include <string>
|
2022-04-06 06:37:19 +00:00
|
|
|
|
2019-04-18 15:52:00 +00:00
|
|
|
#include "ALabel.hpp"
|
2018-08-18 15:54:20 +00:00
|
|
|
#include "util/command.hpp"
|
2018-10-31 23:40:44 +00:00
|
|
|
#include "util/json.hpp"
|
2019-04-18 15:52:00 +00:00
|
|
|
#include "util/sleeper_thread.hpp"
|
2018-08-10 14:26:46 +00:00
|
|
|
|
|
|
|
namespace waybar::modules {
|
|
|
|
|
2018-08-18 09:43:48 +00:00
|
|
|
class Custom : public ALabel {
|
2019-04-18 15:52:00 +00:00
|
|
|
public:
|
2019-05-22 10:20:13 +00:00
|
|
|
Custom(const std::string&, const std::string&, const Json::Value&);
|
2019-04-18 15:52:00 +00:00
|
|
|
~Custom();
|
|
|
|
auto update() -> void;
|
|
|
|
void refresh(int /*signal*/);
|
|
|
|
|
|
|
|
private:
|
|
|
|
void delayWorker();
|
|
|
|
void continuousWorker();
|
|
|
|
void parseOutputRaw();
|
|
|
|
void parseOutputJson();
|
2020-09-06 19:47:34 +00:00
|
|
|
void handleEvent();
|
2019-05-18 14:07:55 +00:00
|
|
|
bool handleScroll(GdkEventScroll* e);
|
|
|
|
bool handleToggle(GdkEventButton* const& e);
|
2018-08-20 12:50:45 +00:00
|
|
|
|
2022-04-06 06:37:19 +00:00
|
|
|
const std::string name_;
|
|
|
|
std::string text_;
|
2022-06-13 17:22:23 +00:00
|
|
|
std::string id_;
|
2022-04-06 06:37:19 +00:00
|
|
|
std::string alt_;
|
|
|
|
std::string tooltip_;
|
2019-05-29 15:53:22 +00:00
|
|
|
std::vector<std::string> class_;
|
2022-04-06 06:37:19 +00:00
|
|
|
int percentage_;
|
|
|
|
FILE* fp_;
|
|
|
|
int pid_;
|
|
|
|
util::command::res output_;
|
|
|
|
util::JsonParser parser_;
|
2019-05-29 15:53:22 +00:00
|
|
|
|
|
|
|
util::SleeperThread thread_;
|
2018-08-16 12:29:41 +00:00
|
|
|
};
|
2018-08-10 14:26:46 +00:00
|
|
|
|
2019-04-18 15:52:00 +00:00
|
|
|
} // namespace waybar::modules
|