feat: tooltip for image module

This commit is contained in:
Alan-Kuan
2023-04-21 16:38:21 +08:00
parent a9a2223469
commit 6a17139423
2 changed files with 25 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_;
};