Merge pull request #2128 from Alan-Kuan/image-tooltip

Image tooltip
This commit is contained in:
Alexis Rouillard
2023-07-04 22:40:04 +02:00
committed by GitHub
3 changed files with 39 additions and 3 deletions

View File

@ -24,12 +24,15 @@ class Image : public AModule {
private:
void delayWorker();
void handleEvent();
void parseOutputRaw();
Gtk::Box box_;
Gtk::Image image_;
std::string path_;
std::string tooltip_;
int size_;
int interval_;
util::command::res output_;
util::SleeperThread thread_;
};