Waybar/include/modules/custom.hpp

43 lines
1.0 KiB
C++

#pragma once
#include <fmt/format.h>
#include <csignal>
#include <string>
#include "ALabel.hpp"
#include "util/command.hpp"
#include "util/json.hpp"
#include "util/worker_thread.hpp"
namespace waybar::modules {
class Custom : public ALabel {
public:
Custom(const std::string&, const std::string&, const Json::Value&);
auto update() -> void;
void refresh(int /*signal*/);
private:
void workerExitCallback(int);
void workerOutputCallback(std::string);
void parseOutputRaw(const std::string&);
void parseOutputJson(const std::string&);
void handleEvent();
bool handleScroll(GdkEventScroll* e);
bool handleToggle(GdkEventButton* const& e);
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_;
waybar::util::WorkerThread thread_;
};
} // namespace waybar::modules