1 /////////////////////////////////////////////////////////////////////////
2 // File: wx/unix/taskbarx11.h
3 // Purpose: Defines wxTaskBarIcon class for most common X11 desktops
4 // Author: Vaclav Slavik
8 // Copyright: (c) Vaclav Slavik, 2003
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "taskbarx11.h"
19 class WXDLLEXPORT wxIcon
;
20 class WXDLLEXPORT wxFrame
;
21 class WXDLLEXPORT wxWindow
;
23 class WXDLLIMPEXP_ADV wxTaskBarIconArea
;
25 class WXDLLIMPEXP_ADV wxTaskBarIcon
: public wxTaskBarIconBase
29 virtual ~wxTaskBarIcon();
33 bool IsIconInstalled() const;
36 bool SetIcon(const wxIcon
& icon
, const wxString
& tooltip
= wxEmptyString
);
38 bool PopupMenu(wxMenu
*menu
);
41 wxTaskBarIconArea
*m_iconWnd
;
43 DECLARE_DYNAMIC_CLASS(wxTaskBarIcon
)