aboutsummaryrefslogtreecommitdiff
path: root/Src/Wasabi/api/util/systray.h
diff options
context:
space:
mode:
Diffstat (limited to 'Src/Wasabi/api/util/systray.h')
-rw-r--r--Src/Wasabi/api/util/systray.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/Src/Wasabi/api/util/systray.h b/Src/Wasabi/api/util/systray.h
new file mode 100644
index 00000000..3e4f6d93
--- /dev/null
+++ b/Src/Wasabi/api/util/systray.h
@@ -0,0 +1,23 @@
+#ifndef __SYSTRAY_H
+#define __SYSTRAY_H
+
+#include <bfc/string/StringW.h>
+
+class Systray
+{
+public:
+ Systray(HWND wnd, int uid, int msg, HICON smallicon);
+ ~Systray();
+ void setTip(const wchar_t *tip);
+private:
+ bool addIcon();
+ bool deleteIcon();
+ bool setTip();
+ int id, message;
+ HWND hwnd;
+ HICON icon;
+ StringW tip;
+};
+
+
+#endif