]> git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk/taskbarpriv.h
make access specifiers for the virtual functions match their access in the base class...
[wxWidgets.git] / include / wx / gtk / taskbarpriv.h
1 /////////////////////////////////////////////////////////////////////////
2 // File: wx/gtk/taskbarpriv.h
3 // Purpose: wxTaskBarIcon (src/unix/taskbarx11.cpp) helper for GTK2
4 // Author: Vaclav Slavik
5 // Modified by:
6 // Created: 2004/05/29
7 // RCS-ID: $Id$
8 // Copyright: (c) Vaclav Slavik, 2004
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_TASKBARPRIV_H_
13 #define _WX_TASKBARPRIV_H_
14
15 #include "wx/toplevel.h"
16 #include "wx/bitmap.h"
17
18 #ifdef __WXGTK20__
19 #include <gtk/gtkversion.h>
20 #if GTK_CHECK_VERSION(2, 1, 0)
21
22 class WXDLLIMPEXP_ADV wxTaskBarIconAreaBase : public wxTopLevelWindow
23 {
24 public:
25 wxTaskBarIconAreaBase();
26
27 // Returns true if SYSTRAY protocol is supported by the desktop
28 bool IsProtocolSupported();
29
30 wxEvtHandler *m_invokingWindow;
31
32 protected:
33 #if wxUSE_MENUS_NATIVE
34 virtual bool DoPopupMenu( wxMenu *menu, int x, int y );
35 #endif // wxUSE_MENUS_NATIVE
36 };
37
38 #endif // __WXGTK20__
39 #endif // GTK_CHECK_VERSION(2, 1, 0)
40 #endif // _WX_TASKBARPRIV_H_