]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/taskbar.h
Added experimental async clipboard format query
[wxWidgets.git] / include / wx / taskbar.h
index 96eef52049e7fe30a8b7a83cc6d4302af1994bb7..a7f523cced173195c58e8dfb8917d2820e729b61 100644 (file)
@@ -29,6 +29,12 @@ class WXDLLIMPEXP_ADV wxTaskBarIconBase : public wxEvtHandler
 public:
     wxTaskBarIconBase() { }
 
+#if defined(__WXGTK__) || defined(__WXX11__) || defined(__WXMOTIF__)
+    static bool IsAvailable();
+#else
+    static bool IsAvailable() { return true; };
+#endif
+
     // Operations:
     virtual bool SetIcon(const wxIcon& icon,
                          const wxString& tooltip = wxEmptyString) = 0;
@@ -62,7 +68,7 @@ private:
 #elif defined(__WXGTK__) || defined(__WXX11__) || defined(__WXMOTIF__)
     #include "wx/unix/taskbarx11.h"
 #elif defined (__WXMAC__)
-    #include "wx/mac/taskbarosx.h"
+    #include "wx/osx/taskbarosx.h"
 #elif defined (__WXCOCOA__)
     #include "wx/cocoa/taskbar.h"
 #endif