Waybar/include/modules/custom.hpp

49 lines
1.4 KiB
C++
Raw Normal View History

#pragma once
#include <fmt/format.h>
2021-10-03 10:17:51 +00:00
#include <mutex>
2019-05-18 23:44:45 +00:00
#include <string>
#include <variant>
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&);
void injectOutput(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 handleOutputJson(const Json::Value&);
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_;
// Worker exit code, worker raw output, or injected JSON.
// Injected JSON is string for raw output, object for JSON output.
std::variant<std::monostate, int, std::string, Json::Value> output_;
util::JsonParser parser_;
// Protects output_ since it is accessed from many threads.
std::mutex output_mutex_;
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