]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/taskbar/tbtest.h
Removed def files
[wxWidgets.git] / samples / taskbar / tbtest.h
index b4862386b6ea87257990f5168d9ccd828ec58f7a..a5674e56b1cf1dabcca94e415504b3c672c4eef7 100644 (file)
 class MyTaskBarIcon: public wxTaskBarIcon
 {
 public:
-    MyTaskBarIcon() {};
-
-    void OnLButtonDClick(wxTaskBarIconEvent&);
+#if defined(__WXCOCOA__)
+    MyTaskBarIcon(wxTaskBarIconType iconType = DEFAULT_TYPE)
+    :   wxTaskBarIcon(iconType)
+#else
+    MyTaskBarIcon()
+#endif
+    {}
+
+    void OnLeftButtonDClick(wxTaskBarIconEvent&);
     void OnMenuRestore(wxCommandEvent&);
     void OnMenuExit(wxCommandEvent&);
     void OnMenuSetNewIcon(wxCommandEvent&);
-
+       void OnMenuCheckmark(wxCommandEvent&);
+       void OnMenuUICheckmark(wxUpdateUIEvent&);
     virtual wxMenu *CreatePopupMenu();
 
 DECLARE_EVENT_TABLE()
@@ -46,8 +53,9 @@ public:
 
 protected:
     MyTaskBarIcon   *m_taskBarIcon;
+#if defined(__WXCOCOA__)
+    MyTaskBarIcon   *m_dockIcon;
+#endif
 
 DECLARE_EVENT_TABLE()
 };
-
-