]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/unix/taskbarx11.h
Split wxWebHistoryItem headers out into separate files for each backend. This will...
[wxWidgets.git] / include / wx / unix / taskbarx11.h
... / ...
CommitLineData
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
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_UNIX_TASKBAR_H_
13#define _WX_UNIX_TASKBAR_H_
14
15class WXDLLIMPEXP_FWD_ADV wxTaskBarIconArea;
16
17class WXDLLIMPEXP_ADV wxTaskBarIcon: public wxTaskBarIconBase
18{
19public:
20 wxTaskBarIcon();
21 virtual ~wxTaskBarIcon();
22
23 // Accessors:
24 bool IsOk() const;
25 bool IsIconInstalled() const;
26
27 // Operations:
28 bool SetIcon(const wxIcon& icon, const wxString& tooltip = wxEmptyString);
29 bool RemoveIcon();
30 bool PopupMenu(wxMenu *menu);
31
32protected:
33 wxTaskBarIconArea *m_iconWnd;
34
35private:
36 void OnDestroy(wxWindowDestroyEvent&);
37
38 DECLARE_DYNAMIC_CLASS(wxTaskBarIcon)
39};
40
41#endif // _WX_UNIX_TASKBAR_H_