]> git.saurik.com Git - wxWidgets.git/blame - include/wx/unix/taskbarx11.h
removed not implemented anyhow SetIcons()
[wxWidgets.git] / include / wx / unix / taskbarx11.h
CommitLineData
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
b5dbe15d
VS
15class WXDLLIMPEXP_FWD_CORE wxIcon;
16class WXDLLIMPEXP_FWD_CORE wxFrame;
17class WXDLLIMPEXP_FWD_CORE wxWindow;
fb29dcac 18
b5dbe15d 19class WXDLLIMPEXP_FWD_ADV wxTaskBarIconArea;
ac258944
VS
20
21class WXDLLIMPEXP_ADV wxTaskBarIcon: public wxTaskBarIconBase
fb29dcac
VS
22{
23public:
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
36protected:
ac258944 37 wxTaskBarIconArea *m_iconWnd;
fb29dcac
VS
38
39 DECLARE_DYNAMIC_CLASS(wxTaskBarIcon)
40};
41
42#endif
43 // _TASKBAR_H_