2018-08-10 14:26:46 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <fmt/format.h>
|
2021-10-03 10:17:51 +00:00
|
|
|
|
2021-10-03 10:33:08 +00:00
|
|
|
#include <mutex>
|
2019-05-18 23:44:45 +00:00
|
|
|
#include <string>
|
2021-10-03 10:33:08 +00:00
|
|
|
#include <variant>
|
2021-10-03 10:17:51 +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"
|
2021-10-03 10:17:51 +00:00
|
|
|
#include "util/worker_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&);
|
2021-10-03 10:33:08 +00:00
|
|
|
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&);
|
2021-10-03 10:33:08 +00:00
|
|
|
void handleOutputJson(const Json::Value&);
|
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
|
|
|
|
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_;
|
2021-10-03 10:33:08 +00:00
|
|
|
// 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
|
|
|
};
|
2018-08-10 14:26:46 +00:00
|
|
|
|
2019-04-18 15:52:00 +00:00
|
|
|
} // namespace waybar::modules
|