Waybar/include/modules/custom.hpp

43 lines
1.0 KiB
C++
Raw Normal View History

#pragma once
#include <fmt/format.h>
2021-10-03 10:17:51 +00:00
2019-03-18 17:46:44 +00:00
#include <csignal>
2019-05-18 23:44:45 +00:00
#include <string>
2021-10-03 10:17:51 +00:00
2019-04-18 15:52:00 +00:00
#include "ALabel.hpp"
#include "util/command.hpp"
#include "util/json.hpp"
2021-10-03 10:17:51 +00:00
#include "util/worker_thread.hpp"
namespace waybar::modules {
class Custom : public ALabel {
2019-04-18 15:52:00 +00:00
public:
Custom(const std::string&, const std::string&, const Json::Value&);
2019-04-18 15:52:00 +00:00
auto update() -> void;
void refresh(int /*signal*/);
private:
2021-10-03 10:17:51 +00:00
void workerExitCallback(int);
void workerOutputCallback(std::string);
void parseOutputRaw(const std::string&);
void parseOutputJson(const std::string&);
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
2019-05-29 15:53:22 +00:00
const std::string name_;
std::string text_;
std::string alt_;
std::string tooltip_;
std::vector<std::string> class_;
int percentage_;
util::command::res output_;
util::JsonParser parser_;
2021-10-03 10:17:51 +00:00
waybar::util::WorkerThread thread_;
2018-08-16 12:29:41 +00:00
};
2019-04-18 15:52:00 +00:00
} // namespace waybar::modules