]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | ///////////////////////////////////////////////////////////////////////// |
a71d815b | 2 | // File: src/msw/taskbar.cpp |
c42404a5 | 3 | // Purpose: Implements wxTaskBarIcon class for manipulating icons on |
2bda0e17 KB |
4 | // the Windows task bar. |
5 | // Author: Julian Smart | |
1e6d9c20 | 6 | // Modified by: Vaclav Slavik |
2bda0e17 KB |
7 | // Created: 24/3/98 |
8 | // RCS-ID: $Id$ | |
9 | // Copyright: (c) | |
65571936 | 10 | // Licence: wxWindows licence |
2bda0e17 KB |
11 | ///////////////////////////////////////////////////////////////////////// |
12 | ||
2bda0e17 KB |
13 | // For compilers that support precompilation, includes "wx.h". |
14 | #include "wx/wxprec.h" | |
15 | ||
16 | #ifdef __BORLANDC__ | |
7520f3da | 17 | #pragma hdrstop |
2bda0e17 KB |
18 | #endif |
19 | ||
20 | #ifndef WX_PRECOMP | |
7520f3da WS |
21 | #include "wx/window.h" |
22 | #include "wx/frame.h" | |
23 | #include "wx/utils.h" | |
24 | #include "wx/menu.h" | |
2bda0e17 KB |
25 | #endif |
26 | ||
4676948b | 27 | #include "wx/msw/private.h" |
c25a510b JS |
28 | #include "wx/msw/winundef.h" |
29 | ||
2bda0e17 | 30 | #include <string.h> |
6af507f7 | 31 | #include "wx/taskbar.h" |
2bda0e17 | 32 | |
4676948b JS |
33 | #ifdef __WXWINCE__ |
34 | #include <winreg.h> | |
c42404a5 | 35 | #include <shellapi.h> |
ce3ed50d JS |
36 | #endif |
37 | ||
4d0d77af VZ |
38 | // initialized on demand |
39 | UINT gs_msgTaskbar = 0; | |
40 | UINT gs_msgRestartTaskbar = 0; | |
2bda0e17 | 41 | |
56194595 RD |
42 | |
43 | IMPLEMENT_DYNAMIC_CLASS(wxTaskBarIcon, wxEvtHandler) | |
56194595 | 44 | |
4d0d77af VZ |
45 | // ============================================================================ |
46 | // implementation | |
47 | // ============================================================================ | |
48 | ||
1e6d9c20 VS |
49 | // ---------------------------------------------------------------------------- |
50 | // wxTaskBarIconWindow: helper window | |
51 | // ---------------------------------------------------------------------------- | |
52 | ||
53 | // NB: this class serves two purposes: | |
54 | // 1. win32 needs a HWND associated with taskbar icon, this provides it | |
55 | // 2. we need wxTopLevelWindow so that the app doesn't exit when | |
56 | // last frame is closed but there still is a taskbar icon | |
57 | class wxTaskBarIconWindow : public wxFrame | |
58 | { | |
59 | public: | |
60 | wxTaskBarIconWindow(wxTaskBarIcon *icon) | |
bfbb0b4c | 61 | : wxFrame(NULL, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0), |
1e6d9c20 VS |
62 | m_icon(icon) |
63 | { | |
64 | } | |
bfbb0b4c | 65 | |
1e6d9c20 VS |
66 | WXLRESULT MSWWindowProc(WXUINT msg, |
67 | WXWPARAM wParam, WXLPARAM lParam) | |
68 | { | |
69 | if (msg == gs_msgRestartTaskbar || msg == gs_msgTaskbar) | |
70 | { | |
dda36afd | 71 | return m_icon->WindowProc(msg, wParam, lParam); |
1e6d9c20 VS |
72 | } |
73 | else | |
74 | { | |
75 | return wxFrame::MSWWindowProc(msg, wParam, lParam); | |
76 | } | |
77 | } | |
78 | ||
79 | private: | |
80 | wxTaskBarIcon *m_icon; | |
81 | }; | |
82 | ||
bfbb0b4c | 83 | |
4d0d77af VZ |
84 | // ---------------------------------------------------------------------------- |
85 | // NotifyIconData: wrapper around NOTIFYICONDATA | |
86 | // ---------------------------------------------------------------------------- | |
56194595 | 87 | |
4d0d77af VZ |
88 | struct NotifyIconData : public NOTIFYICONDATA |
89 | { | |
90 | NotifyIconData(WXHWND hwnd) | |
91 | { | |
92 | memset(this, 0, sizeof(NOTIFYICONDATA)); | |
93 | cbSize = sizeof(NOTIFYICONDATA); | |
94 | hWnd = (HWND) hwnd; | |
95 | uCallbackMessage = gs_msgTaskbar; | |
96 | uFlags = NIF_MESSAGE; | |
97 | ||
98 | // we use the same id for all taskbar icons as we don't need it to | |
99 | // distinguish between them | |
100 | uID = 99; | |
101 | } | |
102 | }; | |
103 | ||
104 | // ---------------------------------------------------------------------------- | |
105 | // wxTaskBarIcon | |
106 | // ---------------------------------------------------------------------------- | |
107 | ||
108 | wxTaskBarIcon::wxTaskBarIcon() | |
2bda0e17 | 109 | { |
1e6d9c20 | 110 | m_win = NULL; |
04cd30de | 111 | m_iconAdded = false; |
1e6d9c20 | 112 | RegisterWindowMessages(); |
2bda0e17 KB |
113 | } |
114 | ||
4d0d77af | 115 | wxTaskBarIcon::~wxTaskBarIcon() |
2bda0e17 | 116 | { |
2bda0e17 | 117 | if (m_iconAdded) |
2bda0e17 | 118 | RemoveIcon(); |
2bda0e17 | 119 | |
1e6d9c20 VS |
120 | if (m_win) |
121 | m_win->Destroy(); | |
2bda0e17 KB |
122 | } |
123 | ||
124 | // Operations | |
125 | bool wxTaskBarIcon::SetIcon(const wxIcon& icon, const wxString& tooltip) | |
126 | { | |
3103e8a9 JS |
127 | // NB: we have to create the window lazily because of backward compatibility, |
128 | // old applications may create a wxTaskBarIcon instance before wxApp | |
1e6d9c20 VS |
129 | // is initialized (as samples/taskbar used to do) |
130 | if (!m_win) | |
131 | { | |
132 | m_win = new wxTaskBarIconWindow(this); | |
133 | } | |
2bda0e17 | 134 | |
4d0d77af VZ |
135 | m_icon = icon; |
136 | m_strTooltip = tooltip; | |
137 | ||
63b3dc58 | 138 | NotifyIconData notifyData(GetHwndOf(m_win)); |
2bda0e17 | 139 | |
e96360ef | 140 | if (icon.Ok()) |
2bda0e17 | 141 | { |
e96360ef | 142 | notifyData.uFlags |= NIF_ICON; |
4d0d77af | 143 | notifyData.hIcon = GetHiconOf(icon); |
2bda0e17 KB |
144 | } |
145 | ||
4d0d77af | 146 | if ( !tooltip.empty() ) |
2bda0e17 | 147 | { |
4d0d77af | 148 | notifyData.uFlags |= NIF_TIP; |
4676948b JS |
149 | // lstrcpyn(notifyData.szTip, tooltip.c_str(), WXSIZEOF(notifyData.szTip)); |
150 | wxStrncpy(notifyData.szTip, tooltip.c_str(), WXSIZEOF(notifyData.szTip)); | |
2bda0e17 KB |
151 | } |
152 | ||
4d0d77af VZ |
153 | bool ok = Shell_NotifyIcon(m_iconAdded ? NIM_MODIFY |
154 | : NIM_ADD, ¬ifyData) != 0; | |
2bda0e17 | 155 | |
4d0d77af VZ |
156 | if ( !m_iconAdded && ok ) |
157 | m_iconAdded = true; | |
158 | ||
159 | return ok; | |
2bda0e17 KB |
160 | } |
161 | ||
4d0d77af | 162 | bool wxTaskBarIcon::RemoveIcon() |
2bda0e17 KB |
163 | { |
164 | if (!m_iconAdded) | |
04cd30de | 165 | return false; |
2bda0e17 | 166 | |
04cd30de | 167 | m_iconAdded = false; |
2bda0e17 | 168 | |
63b3dc58 | 169 | NotifyIconData notifyData(GetHwndOf(m_win)); |
4d0d77af VZ |
170 | |
171 | return Shell_NotifyIcon(NIM_DELETE, ¬ifyData) != 0; | |
2bda0e17 KB |
172 | } |
173 | ||
53a118d6 | 174 | #if wxUSE_MENUS |
4d0d77af | 175 | bool wxTaskBarIcon::PopupMenu(wxMenu *menu) |
69ecd30f | 176 | { |
1e6d9c20 VS |
177 | wxASSERT_MSG( m_win != NULL, _T("taskbar icon not initialized") ); |
178 | ||
04cd30de | 179 | static bool s_inPopup = false; |
c7527e3f JS |
180 | |
181 | if (s_inPopup) | |
04cd30de | 182 | return false; |
c7527e3f | 183 | |
04cd30de | 184 | s_inPopup = true; |
c7527e3f | 185 | |
69ecd30f RD |
186 | int x, y; |
187 | wxGetMousePosition(&x, &y); | |
188 | ||
1e6d9c20 | 189 | m_win->Move(x, y); |
bfbb0b4c | 190 | |
1e6d9c20 | 191 | m_win->PushEventHandler(this); |
d66d9d5b | 192 | |
50bcd1ae JS |
193 | menu->UpdateUI(); |
194 | ||
63b3dc58 VZ |
195 | // the SetForegroundWindow() and PostMessage() calls are needed to work |
196 | // around Win32 bug with the popup menus shown for the notifications as | |
197 | // documented at http://support.microsoft.com/kb/q135788/ | |
198 | ::SetForegroundWindow(GetHwndOf(m_win)); | |
f6bcfd97 | 199 | |
1e6d9c20 | 200 | bool rval = m_win->PopupMenu(menu, 0, 0); |
69ecd30f | 201 | |
63b3dc58 | 202 | ::PostMessage(GetHwndOf(m_win), WM_NULL, 0, 0L); |
f6bcfd97 | 203 | |
1e6d9c20 | 204 | m_win->PopEventHandler(false); |
c7527e3f | 205 | |
04cd30de | 206 | s_inPopup = false; |
d66d9d5b | 207 | |
69ecd30f RD |
208 | return rval; |
209 | } | |
53a118d6 | 210 | #endif // wxUSE_MENUS |
69ecd30f | 211 | |
1e6d9c20 | 212 | void wxTaskBarIcon::RegisterWindowMessages() |
2bda0e17 | 213 | { |
4d0d77af | 214 | static bool s_registered = false; |
2bda0e17 | 215 | |
1e6d9c20 | 216 | if ( !s_registered ) |
bfbb0b4c | 217 | { |
1e6d9c20 VS |
218 | // Taskbar restart msg will be sent to us if the icon needs to be redrawn |
219 | gs_msgRestartTaskbar = RegisterWindowMessage(wxT("TaskbarCreated")); | |
2bda0e17 | 220 | |
1e6d9c20 VS |
221 | // Also register the taskbar message here |
222 | gs_msgTaskbar = ::RegisterWindowMessage(wxT("wxTaskBarIconMessage")); | |
2bda0e17 | 223 | |
1e6d9c20 VS |
224 | s_registered = true; |
225 | } | |
2bda0e17 KB |
226 | } |
227 | ||
4d0d77af VZ |
228 | // ---------------------------------------------------------------------------- |
229 | // wxTaskBarIcon window proc | |
230 | // ---------------------------------------------------------------------------- | |
231 | ||
dda36afd VS |
232 | long wxTaskBarIcon::WindowProc(unsigned int msg, |
233 | unsigned int WXUNUSED(wParam), | |
4d0d77af | 234 | long lParam) |
2bda0e17 | 235 | { |
56194595 RD |
236 | wxEventType eventType = 0; |
237 | ||
4d0d77af VZ |
238 | if (msg == gs_msgRestartTaskbar) // does the icon need to be redrawn? |
239 | { | |
240 | m_iconAdded = false; | |
241 | SetIcon(m_icon, m_strTooltip); | |
242 | } | |
243 | ||
1e6d9c20 VS |
244 | // this function should only be called for gs_msg(Restart)Taskbar messages |
245 | wxASSERT(msg == gs_msgTaskbar); | |
2bda0e17 KB |
246 | |
247 | switch (lParam) | |
248 | { | |
c42404a5 | 249 | case WM_LBUTTONDOWN: |
56194595 RD |
250 | eventType = wxEVT_TASKBAR_LEFT_DOWN; |
251 | break; | |
2bda0e17 | 252 | |
c42404a5 | 253 | case WM_LBUTTONUP: |
56194595 RD |
254 | eventType = wxEVT_TASKBAR_LEFT_UP; |
255 | break; | |
2bda0e17 | 256 | |
c42404a5 | 257 | case WM_RBUTTONDOWN: |
56194595 RD |
258 | eventType = wxEVT_TASKBAR_RIGHT_DOWN; |
259 | break; | |
2bda0e17 | 260 | |
c42404a5 | 261 | case WM_RBUTTONUP: |
56194595 RD |
262 | eventType = wxEVT_TASKBAR_RIGHT_UP; |
263 | break; | |
2bda0e17 | 264 | |
c42404a5 | 265 | case WM_LBUTTONDBLCLK: |
56194595 RD |
266 | eventType = wxEVT_TASKBAR_LEFT_DCLICK; |
267 | break; | |
2bda0e17 | 268 | |
c42404a5 | 269 | case WM_RBUTTONDBLCLK: |
56194595 RD |
270 | eventType = wxEVT_TASKBAR_RIGHT_DCLICK; |
271 | break; | |
2bda0e17 | 272 | |
c42404a5 | 273 | case WM_MOUSEMOVE: |
56194595 RD |
274 | eventType = wxEVT_TASKBAR_MOVE; |
275 | break; | |
2bda0e17 | 276 | |
c42404a5 | 277 | default: |
56194595 | 278 | break; |
4d0d77af | 279 | } |
56194595 | 280 | |
4d0d77af VZ |
281 | if (eventType) |
282 | { | |
fa1c12bd | 283 | wxTaskBarIconEvent event(eventType, this); |
56194595 RD |
284 | |
285 | ProcessEvent(event); | |
286 | } | |
4d0d77af | 287 | |
2bda0e17 KB |
288 | return 0; |
289 | } |