]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/gtk/taskbarpriv.h
another DMC build fix (http://thread.gmane.org/gmane.comp.lib.wxwidgets.devel/93155)
[wxWidgets.git] / include / wx / gtk / taskbarpriv.h
... / ...
CommitLineData
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_GTK_TASKBARPRIV_H_
13#define _WX_GTK_TASKBARPRIV_H_
14
15#include "wx/toplevel.h"
16
17#include <gtk/gtkversion.h>
18#if GTK_CHECK_VERSION(2, 1, 0)
19
20class WXDLLIMPEXP_ADV wxTaskBarIconAreaBase : public wxTopLevelWindow
21{
22public:
23 wxTaskBarIconAreaBase();
24
25 // Returns true if SYSTRAY protocol is supported by the desktop
26 bool IsProtocolSupported();
27
28 virtual bool IsDecorCacheable() const;
29
30 wxEvtHandler *m_invokingWindow;
31
32protected:
33#if wxUSE_MENUS_NATIVE
34 virtual bool DoPopupMenu( wxMenu *menu, int x, int y );
35#endif // wxUSE_MENUS_NATIVE
36};
37
38#endif // GTK_CHECK_VERSION(2, 1, 0)
39#endif // _WX_GTK_TASKBARPRIV_H_