]>
Commit | Line | Data |
---|---|---|
23324ae1 FM |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: taskbar.h | |
e54c96f1 | 3 | // Purpose: interface of wxTaskBarIcon |
23324ae1 FM |
4 | // Author: wxWidgets team |
5 | // RCS-ID: $Id$ | |
6 | // Licence: wxWindows license | |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
76ef2d39 FM |
9 | |
10 | /** | |
11 | @class wxTaskBarIconEvent | |
12 | ||
13 | The event class used by wxTaskBarIcon. | |
14 | For a list of the event macros meant to be used with wxTaskBarIconEvent, | |
15 | please look at wxTaskBarIcon description. | |
16 | ||
17 | @library{wxadv} | |
18 | @category{events} | |
19 | */ | |
20 | class wxTaskBarIconEvent : public wxEvent | |
21 | { | |
22 | public: | |
23 | /** | |
24 | Constructor. | |
25 | */ | |
26 | wxTaskBarIconEvent(wxEventType evtType, wxTaskBarIcon *tbIcon); | |
27 | }; | |
28 | ||
23324ae1 FM |
29 | /** |
30 | @class wxTaskBarIcon | |
7c913512 | 31 | |
c6cf894a FM |
32 | This class represents a taskbar icon. |
33 | A taskbar icon is an icon that appears in the 'system tray' and responds to | |
34 | mouse clicks, optionally with a tooltip above it to help provide information. | |
35 | ||
76ef2d39 | 36 | |
c6cf894a | 37 | @section taskbaricon_xnote X Window System Note |
76ef2d39 | 38 | |
c6cf894a | 39 | Under X Window System, the window manager must support either the |
4876436a | 40 | "System Tray Protocol" (see http://freedesktop.org/wiki/Specifications/systemtray-spec) |
c6cf894a FM |
41 | by freedesktop.org (WMs used by modern desktop environments such as GNOME >= 2, |
42 | KDE >= 3 and XFCE >= 4 all do) or the older methods used in GNOME 1.2 and KDE 1 and 2. | |
43 | ||
44 | If it doesn't, the icon will appear as a toplevel window on user's desktop. | |
45 | Because not all window managers have system tray, there's no guarantee that | |
46 | wxTaskBarIcon will work correctly under X Window System and so the applications | |
47 | should use it only as an optional component of their user interface. | |
48 | The user should be required to explicitly enable the taskbar icon on Unix, | |
49 | it shouldn't be on by default. | |
50 | ||
51 | @beginEventTable{wxTaskBarIconEvent} | |
52 | Note that not all ports are required to send these events and so it's better | |
53 | to override wxTaskBarIcon::CreatePopupMenu() if all that the application does | |
54 | is that it shows a popup menu in reaction to mouse click. | |
55 | @event{EVT_TASKBAR_MOVE(func)} | |
56 | Process a wxEVT_TASKBAR_MOVE event. | |
57 | @event{EVT_TASKBAR_LEFT_DOWN(func)} | |
58 | Process a wxEVT_TASKBAR_LEFT_DOWN event. | |
59 | @event{EVT_TASKBAR_LEFT_UP(func)} | |
60 | Process a wxEVT_TASKBAR_LEFT_UP event. | |
61 | @event{EVT_TASKBAR_RIGHT_DOWN(func)} | |
62 | Process a wxEVT_TASKBAR_RIGHT_DOWN event. | |
63 | @event{EVT_TASKBAR_RIGHT_UP(func)} | |
64 | Process a wxEVT_TASKBAR_RIGHT_UP event. | |
65 | @event{EVT_TASKBAR_LEFT_DCLICK(func)} | |
66 | Process a wxEVT_TASKBAR_LEFT_DCLICK event. | |
67 | @event{EVT_TASKBAR_RIGHT_DCLICK(func)} | |
68 | Process a wxEVT_TASKBAR_RIGHT_DCLICK event. | |
69 | @event{EVT_TASKBAR_CLICK(func)} | |
70 | This is a synonym for either EVT_TASKBAR_RIGHT_DOWN or UP depending on | |
71 | the platform, use this event macro to catch the event which should result | |
72 | in the menu being displayed on the current platform. | |
73 | @endEventTable | |
7c913512 | 74 | |
23324ae1 | 75 | @library{wxadv} |
c6cf894a | 76 | @category{misc} |
23324ae1 FM |
77 | */ |
78 | class wxTaskBarIcon : public wxEvtHandler | |
79 | { | |
80 | public: | |
81 | /** | |
82 | Default constructor. | |
83 | */ | |
84 | wxTaskBarIcon(); | |
85 | ||
86 | /** | |
87 | Destroys the wxTaskBarIcon object, removing the icon if not already removed. | |
88 | */ | |
adaaa686 | 89 | virtual ~wxTaskBarIcon(); |
23324ae1 | 90 | |
23324ae1 | 91 | /** |
c6cf894a FM |
92 | This method is similar to wxWindow::Destroy and can be used to schedule |
93 | the task bar icon object for the delayed destruction: it will be deleted | |
94 | during the next event loop iteration, which allows the task bar | |
23324ae1 FM |
95 | icon to process any pending events for it before being destroyed. |
96 | */ | |
97 | void Destroy(); | |
98 | ||
99 | /** | |
100 | Returns @true if SetIcon() was called with no subsequent RemoveIcon(). | |
101 | */ | |
adaaa686 | 102 | bool IsIconInstalled() const; |
23324ae1 FM |
103 | |
104 | /** | |
105 | Returns @true if the object initialized successfully. | |
106 | */ | |
adaaa686 | 107 | bool IsOk() const; |
23324ae1 FM |
108 | |
109 | /** | |
c6cf894a FM |
110 | Pops up a menu at the current mouse position. |
111 | The events can be handled by a class derived from wxTaskBarIcon. | |
112 | ||
113 | @note | |
114 | It is recommended to override CreatePopupMenu() callback instead of | |
115 | calling this method from event handler, because some ports (e.g. wxCocoa) | |
116 | may not implement PopupMenu() and mouse click events at all. | |
23324ae1 | 117 | */ |
adaaa686 | 118 | virtual bool PopupMenu(wxMenu* menu); |
23324ae1 FM |
119 | |
120 | /** | |
121 | Removes the icon previously set with SetIcon(). | |
122 | */ | |
adaaa686 | 123 | virtual bool RemoveIcon(); |
23324ae1 FM |
124 | |
125 | /** | |
126 | Sets the icon, and optional tooltip text. | |
127 | */ | |
43c48e1e FM |
128 | virtual bool SetIcon(const wxIcon& icon, |
129 | const wxString& tooltip = wxEmptyString); | |
cf78bdcb VS |
130 | |
131 | /** | |
132 | Returns true if system tray is available in the desktop environment the | |
133 | app runs under. | |
134 | ||
135 | On Windows and Mac OS X, the tray is always available and this function | |
136 | simply returns true. | |
137 | ||
138 | On Unix, X11 environment may or may not provide the tray, depending on | |
139 | user's desktop environment. Most modern desktops support the tray via | |
140 | the System Tray Protocol by freedesktop.org | |
141 | (http://freedesktop.org/wiki/Specifications/systemtray-spec). | |
142 | ||
143 | @note Tray availability may change during application's lifetime | |
144 | under X11 and so applications shouldn't cache the result. | |
145 | ||
146 | @note wxTaskBarIcon supports older GNOME 1.2 and KDE 1/2 methods of | |
147 | adding icons to tray, but they are unreliable and this method | |
148 | doesn't detect them. | |
149 | ||
150 | @since 2.9.0 | |
151 | */ | |
152 | static bool IsAvailable(); | |
5e6e278d FM |
153 | |
154 | protected: | |
155 | ||
156 | /** | |
157 | This method is called by the library when the user requests popup menu | |
158 | (on Windows and Unix platforms, this is when the user right-clicks the icon). | |
159 | ||
160 | Override this function in order to provide popup menu associated with the icon. | |
161 | If CreatePopupMenu() returns @NULL (this happens by default), no menu is shown, | |
162 | otherwise the menu is displayed and then deleted by the library as soon as the | |
163 | user dismisses it. | |
164 | ||
165 | The events can be handled by a class derived from wxTaskBarIcon. | |
166 | */ | |
167 | virtual wxMenu* CreatePopupMenu(); | |
23324ae1 | 168 | }; |
e54c96f1 | 169 |