Waybar/include/modules/custom.hpp

44 lines
993 B
C++
Raw Normal View History

#pragma once
2022-11-24 11:28:52 +00:00
#include "ALabel.hpp"
#include "util/command.hpp"
#include "util/json.hpp"
2019-04-18 15:52:00 +00:00
#include "util/sleeper_thread.hpp"
namespace waybar::modules {
class Custom final : public ALabel {
2019-04-18 15:52:00 +00:00
public:
Custom(const std::string&, const std::string&, const Json::Value&, const std::string&);
2023-03-02 13:57:07 +00:00
virtual ~Custom();
auto update() -> void override;
void refresh(int /*signal*/) override;
2019-04-18 15:52:00 +00:00
private:
void delayWorker();
void continuousWorker();
2023-09-18 21:56:14 +00:00
void waitingWorker();
2019-04-18 15:52:00 +00:00
void parseOutputRaw();
void parseOutputJson();
void handleEvent();
bool handleScroll(double dx, double dy);
void handleToggle(int n_press, double dx, double dy);
2018-08-20 12:50:45 +00:00
2022-04-06 06:37:19 +00:00
const std::string name_;
const std::string output_name_;
2022-04-06 06:37:19 +00:00
std::string text_;
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
};
2019-04-18 15:52:00 +00:00
} // namespace waybar::modules