Waybar/include/modules/custom.hpp

42 lines
1.0 KiB
C++
Raw Normal View History

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