]>
Commit | Line | Data |
---|---|---|
fb29dcac VS |
1 | ///////////////////////////////////////////////////////////////////////// |
2 | // File: wx/unix/taskbarx11.h | |
3 | // Purpose: Defines wxTaskBarIcon class for most common X11 desktops | |
4 | // Author: Vaclav Slavik | |
5 | // Modified by: | |
6 | // Created: 04/04/2003 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Vaclav Slavik, 2003 | |
65571936 | 9 | // Licence: wxWindows licence |
fb29dcac VS |
10 | ///////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _TASKBAR_H_ | |
13 | #define _TASKBAR_H_ | |
14 | ||
fb29dcac VS |
15 | class WXDLLEXPORT wxIcon; |
16 | class WXDLLEXPORT wxFrame; | |
17 | class WXDLLEXPORT wxWindow; | |
18 | ||
ac258944 VS |
19 | class WXDLLIMPEXP_ADV wxTaskBarIconArea; |
20 | ||
21 | class WXDLLIMPEXP_ADV wxTaskBarIcon: public wxTaskBarIconBase | |
fb29dcac VS |
22 | { |
23 | public: | |
24 | wxTaskBarIcon(); | |
25 | virtual ~wxTaskBarIcon(); | |
26 | ||
27 | // Accessors: | |
28 | bool IsOk() const; | |
29 | bool IsIconInstalled() const; | |
30 | ||
31 | // Operations: | |
32 | bool SetIcon(const wxIcon& icon, const wxString& tooltip = wxEmptyString); | |
33 | bool RemoveIcon(); | |
34 | bool PopupMenu(wxMenu *menu); | |
35 | ||
36 | protected: | |
ac258944 | 37 | wxTaskBarIconArea *m_iconWnd; |
fb29dcac VS |
38 | |
39 | DECLARE_DYNAMIC_CLASS(wxTaskBarIcon) | |
40 | }; | |
41 | ||
42 | #endif | |
43 | // _TASKBAR_H_ |