Files
Waybar/include/modules/custom.hpp
T

50 lines
1.1 KiB
C++
Raw Normal View History

#pragma once
#include <fmt/format.h>
2022-04-06 08:37:19 +02:00
2019-03-18 18:46:44 +01:00
#include <csignal>
2019-05-18 19:44:45 -04:00
#include <string>
2022-04-06 08:37:19 +02:00
2022-11-24 12:28:52 +01:00
#include "ALabel.hpp"
#include "util/command.hpp"
2018-11-01 00:40:44 +01:00
#include "util/json.hpp"
2019-04-18 17:52:00 +02:00
#include "util/sleeper_thread.hpp"
namespace waybar::modules {
2022-11-24 12:28:52 +01:00
class Custom : public ALabel {
2019-04-18 17:52:00 +02:00
public:
Custom(const std::string&, const std::string&, const Json::Value&, const std::string&);
2023-03-02 16:57:07 +03:00
virtual ~Custom();
auto update() -> void override;
void refresh(int /*signal*/) override;
2018-08-20 14:50:45 +02:00
2019-04-18 17:52:00 +02:00
private:
void delayWorker();
void continuousWorker();
2023-09-18 14:56:14 -07:00
void waitingWorker();
2019-04-18 17:52:00 +02:00
void parseOutputRaw();
void parseOutputJson();
2020-09-06 22:47:34 +03:00
void handleEvent();
2023-03-02 16:57:07 +03:00
bool handleScroll(GdkEventScroll* e) override;
bool handleToggle(GdkEventButton* const& e) override;
2019-04-18 17:52:00 +02:00
2022-04-06 08:37:19 +02:00
const std::string name_;
const std::string output_name_;
2022-04-06 08:37:19 +02:00
std::string text_;
std::string id_;
2022-04-06 08:37:19 +02:00
std::string alt_;
std::string tooltip_;
const bool tooltip_format_enabled_;
2019-05-29 17:53:22 +02:00
std::vector<std::string> class_;
2022-04-06 08:37:19 +02:00
int percentage_;
FILE* fp_;
int pid_;
util::command::res output_;
util::JsonParser parser_;
2019-05-29 17:53:22 +02:00
util::SleeperThread thread_;
2018-08-16 14:29:41 +02:00
};
2019-04-18 17:52:00 +02:00
} // namespace waybar::modules