diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:19:49 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:19:49 +0200 |
commit | c8e0e909b4a8d18319fc65434a10dc446434817c (patch) | |
tree | eee91e7d2ce229dd043811eae8f1e2bd78061916 /ui/tray_icon.h | |
parent | 5.2 (diff) | |
download | FreeFileSync-c8e0e909b4a8d18319fc65434a10dc446434817c.tar.gz FreeFileSync-c8e0e909b4a8d18319fc65434a10dc446434817c.tar.bz2 FreeFileSync-c8e0e909b4a8d18319fc65434a10dc446434817c.zip |
5.3
Diffstat (limited to 'ui/tray_icon.h')
-rw-r--r-- | ui/tray_icon.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ui/tray_icon.h b/ui/tray_icon.h index d1522602..50480b54 100644 --- a/ui/tray_icon.h +++ b/ui/tray_icon.h @@ -19,7 +19,8 @@ public: FfsTrayIcon(); ~FfsTrayIcon(); - void setToolTip(const wxString& toolTipText, double fraction = 0); //number between [0, 1], for small progress indicator + void setToolTip(const wxString& toolTip); + void setProgress(double fraction); //number between [0, 1], for small progress indicator private: FfsTrayIcon(const FfsTrayIcon&); @@ -30,6 +31,9 @@ private: class TaskBarImpl; TaskBarImpl* trayIcon; //actual tray icon (don't use inheritance to enable delayed deletion) + + wxString toolTipLast; + double fractionLast; }; #endif // TRAYICON_H_INCLUDED |