]> git.saurik.com Git - wxWidgets.git/blame - src/msw/taskbar.cpp
Added GUI part of AppTraits for OS/2.
[wxWidgets.git] / src / msw / taskbar.cpp
CommitLineData
2bda0e17
KB
1/////////////////////////////////////////////////////////////////////////
2// File: taskbar.cpp
c42404a5 3// Purpose: Implements wxTaskBarIcon class for manipulating icons on
2bda0e17
KB
4// the Windows task bar.
5// Author: Julian Smart
6// Modified by:
7// Created: 24/3/98
8// RCS-ID: $Id$
9// Copyright: (c)
c42404a5 10// Licence: wxWindows licence
2bda0e17
KB
11/////////////////////////////////////////////////////////////////////////
12
14f355c2 13#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
2bda0e17
KB
14#pragma implementation "taskbar.h"
15#endif
16
17// For compilers that support precompilation, includes "wx.h".
18#include "wx/wxprec.h"
19
20#ifdef __BORLANDC__
21#pragma hdrstop
22#endif
23
24#ifndef WX_PRECOMP
25#include "wx/defs.h"
ad5c34f3
JS
26#include "wx/window.h"
27#include "wx/frame.h"
28#include "wx/utils.h"
0ae2df30 29#include "wx/menu.h"
2bda0e17
KB
30#endif
31
b39dbf34 32#if defined(__WIN95__)
2bda0e17 33
4676948b 34#include "wx/msw/private.h"
c25a510b
JS
35#include "wx/msw/winundef.h"
36
2bda0e17 37#include <string.h>
6af507f7 38#include "wx/taskbar.h"
2bda0e17 39
b39dbf34
JS
40#ifdef __GNUWIN32_OLD__
41 #include "wx/msw/gnuwin32/extra.h"
65fd5cb0 42#endif
2bda0e17 43
4676948b
JS
44#ifdef __WXWINCE__
45 #include <winreg.h>
c42404a5 46 #include <shellapi.h>
ce3ed50d
JS
47#endif
48
d162a7ee
VZ
49#include "wx/listimpl.cpp"
50WX_DEFINE_LIST(wxTaskBarIconList);
51
4d0d77af
VZ
52LRESULT APIENTRY _EXPORT
53wxTaskBarIconWindowProc( HWND hWnd, unsigned msg, UINT wParam, LONG lParam );
2bda0e17 54
ba14d986 55wxChar *wxTaskBarWindowClass = (wxChar*) wxT("wxTaskBarWindowClass");
2bda0e17 56
d162a7ee 57wxTaskBarIconList wxTaskBarIcon::sm_taskBarIcons;
4d0d77af
VZ
58
59// initialized on demand
60UINT gs_msgTaskbar = 0;
61UINT gs_msgRestartTaskbar = 0;
2bda0e17 62
6af507f7 63#if WXWIN_COMPATIBILITY_2_4
56194595 64BEGIN_EVENT_TABLE(wxTaskBarIcon, wxEvtHandler)
69ecd30f
RD
65 EVT_TASKBAR_MOVE (wxTaskBarIcon::_OnMouseMove)
66 EVT_TASKBAR_LEFT_DOWN (wxTaskBarIcon::_OnLButtonDown)
67 EVT_TASKBAR_LEFT_UP (wxTaskBarIcon::_OnLButtonUp)
68 EVT_TASKBAR_RIGHT_DOWN (wxTaskBarIcon::_OnRButtonDown)
69 EVT_TASKBAR_RIGHT_UP (wxTaskBarIcon::_OnRButtonUp)
70 EVT_TASKBAR_LEFT_DCLICK (wxTaskBarIcon::_OnLButtonDClick)
71 EVT_TASKBAR_RIGHT_DCLICK (wxTaskBarIcon::_OnRButtonDClick)
56194595 72END_EVENT_TABLE()
6af507f7 73#endif
56194595
RD
74
75
76IMPLEMENT_DYNAMIC_CLASS(wxTaskBarIcon, wxEvtHandler)
56194595 77
4d0d77af
VZ
78// ============================================================================
79// implementation
80// ============================================================================
81
82// ----------------------------------------------------------------------------
83// NotifyIconData: wrapper around NOTIFYICONDATA
84// ----------------------------------------------------------------------------
56194595 85
4d0d77af
VZ
86struct NotifyIconData : public NOTIFYICONDATA
87{
88 NotifyIconData(WXHWND hwnd)
89 {
90 memset(this, 0, sizeof(NOTIFYICONDATA));
91 cbSize = sizeof(NOTIFYICONDATA);
92 hWnd = (HWND) hwnd;
93 uCallbackMessage = gs_msgTaskbar;
94 uFlags = NIF_MESSAGE;
95
96 // we use the same id for all taskbar icons as we don't need it to
97 // distinguish between them
98 uID = 99;
99 }
100};
101
102// ----------------------------------------------------------------------------
103// wxTaskBarIcon
104// ----------------------------------------------------------------------------
105
106wxTaskBarIcon::wxTaskBarIcon()
2bda0e17
KB
107{
108 m_hWnd = 0;
04cd30de 109 m_iconAdded = false;
2bda0e17
KB
110
111 AddObject(this);
112
113 if (RegisterWindowClass())
114 m_hWnd = CreateTaskBarWindow();
115}
116
4d0d77af 117wxTaskBarIcon::~wxTaskBarIcon()
2bda0e17
KB
118{
119 RemoveObject(this);
120
121 if (m_iconAdded)
122 {
123 RemoveIcon();
124 }
125
126 if (m_hWnd)
127 {
128 ::DestroyWindow((HWND) m_hWnd);
129 m_hWnd = 0;
130 }
131}
132
133// Operations
134bool wxTaskBarIcon::SetIcon(const wxIcon& icon, const wxString& tooltip)
135{
6af507f7 136 if (!IsOk())
04cd30de 137 return false;
2bda0e17 138
4d0d77af
VZ
139 m_icon = icon;
140 m_strTooltip = tooltip;
141
142 NotifyIconData notifyData(m_hWnd);
2bda0e17 143
e96360ef 144 if (icon.Ok())
2bda0e17 145 {
e96360ef 146 notifyData.uFlags |= NIF_ICON;
4d0d77af 147 notifyData.hIcon = GetHiconOf(icon);
2bda0e17
KB
148 }
149
4d0d77af 150 if ( !tooltip.empty() )
2bda0e17 151 {
4d0d77af 152 notifyData.uFlags |= NIF_TIP;
4676948b
JS
153// lstrcpyn(notifyData.szTip, tooltip.c_str(), WXSIZEOF(notifyData.szTip));
154 wxStrncpy(notifyData.szTip, tooltip.c_str(), WXSIZEOF(notifyData.szTip));
2bda0e17
KB
155 }
156
4d0d77af
VZ
157 bool ok = Shell_NotifyIcon(m_iconAdded ? NIM_MODIFY
158 : NIM_ADD, &notifyData) != 0;
2bda0e17 159
4d0d77af
VZ
160 if ( !m_iconAdded && ok )
161 m_iconAdded = true;
162
163 return ok;
2bda0e17
KB
164}
165
4d0d77af 166bool wxTaskBarIcon::RemoveIcon()
2bda0e17
KB
167{
168 if (!m_iconAdded)
04cd30de 169 return false;
2bda0e17 170
04cd30de 171 m_iconAdded = false;
2bda0e17 172
4d0d77af
VZ
173 NotifyIconData notifyData(m_hWnd);
174
175 return Shell_NotifyIcon(NIM_DELETE, &notifyData) != 0;
2bda0e17
KB
176}
177
4d0d77af 178bool wxTaskBarIcon::PopupMenu(wxMenu *menu)
69ecd30f 179{
04cd30de 180 static bool s_inPopup = false;
c7527e3f
JS
181
182 if (s_inPopup)
04cd30de 183 return false;
c7527e3f 184
04cd30de 185 s_inPopup = true;
c7527e3f 186
04cd30de 187 bool rval = false;
69ecd30f
RD
188 wxWindow* win;
189 int x, y;
190 wxGetMousePosition(&x, &y);
191
192 // is wxFrame the best window type to use???
2b5f62a0 193 win = new wxFrame(NULL, -1, wxEmptyString, wxPoint(x,y), wxSize(-1,-1), 0);
69ecd30f
RD
194 win->PushEventHandler(this);
195
d66d9d5b
JS
196 // Remove from record of top-level windows, or will confuse wxWindows
197 // if we try to exit right now.
198 wxTopLevelWindows.DeleteObject(win);
199
50bcd1ae
JS
200 menu->UpdateUI();
201
f6bcfd97
BP
202 // Work around a WIN32 bug
203 ::SetForegroundWindow ((HWND) win->GetHWND ());
204
69ecd30f
RD
205 rval = win->PopupMenu(menu, 0, 0);
206
f6bcfd97
BP
207 // Work around a WIN32 bug
208 ::PostMessage ((HWND) win->GetHWND(),WM_NULL,0,0L);
209
04cd30de 210 win->PopEventHandler(false);
50c319be 211 win->Destroy();
c7527e3f
JS
212 delete win;
213
04cd30de 214 s_inPopup = false;
d66d9d5b 215
69ecd30f
RD
216 return rval;
217}
218
6af507f7 219#if WXWIN_COMPATIBILITY_2_4
2bda0e17 220// Overridables
6af507f7
VS
221void wxTaskBarIcon::OnMouseMove(wxEvent&) {}
222void wxTaskBarIcon::OnLButtonDown(wxEvent&) {}
223void wxTaskBarIcon::OnLButtonUp(wxEvent&) {}
224void wxTaskBarIcon::OnRButtonDown(wxEvent&) {}
225void wxTaskBarIcon::OnRButtonUp(wxEvent&) {}
226void wxTaskBarIcon::OnLButtonDClick(wxEvent&) {}
227void wxTaskBarIcon::OnRButtonDClick(wxEvent&) {}
2bda0e17 228
69ecd30f
RD
229void wxTaskBarIcon::_OnMouseMove(wxEvent& e) { OnMouseMove(e); }
230void wxTaskBarIcon::_OnLButtonDown(wxEvent& e) { OnLButtonDown(e); }
231void wxTaskBarIcon::_OnLButtonUp(wxEvent& e) { OnLButtonUp(e); }
232void wxTaskBarIcon::_OnRButtonDown(wxEvent& e) { OnRButtonDown(e); }
233void wxTaskBarIcon::_OnRButtonUp(wxEvent& e) { OnRButtonUp(e); }
234void wxTaskBarIcon::_OnLButtonDClick(wxEvent& e) { OnLButtonDClick(e); }
235void wxTaskBarIcon::_OnRButtonDClick(wxEvent& e) { OnRButtonDClick(e); }
6af507f7 236#endif
69ecd30f 237
2bda0e17
KB
238wxTaskBarIcon* wxTaskBarIcon::FindObjectForHWND(WXHWND hWnd)
239{
222ed1d6 240 wxTaskBarIconList::compatibility_iterator node = sm_taskBarIcons.GetFirst();
2bda0e17
KB
241 while (node)
242 {
d162a7ee 243 wxTaskBarIcon *obj = node->GetData();
2bda0e17
KB
244 if (obj->GetHWND() == hWnd)
245 return obj;
04cd30de 246 node = node->GetNext();
2bda0e17
KB
247 }
248 return NULL;
249}
250
251void wxTaskBarIcon::AddObject(wxTaskBarIcon* obj)
252{
253 sm_taskBarIcons.Append(obj);
254}
255
256void wxTaskBarIcon::RemoveObject(wxTaskBarIcon* obj)
257{
258 sm_taskBarIcons.DeleteObject(obj);
259}
260
261bool wxTaskBarIcon::RegisterWindowClass()
262{
4d0d77af 263 static bool s_registered = false;
2bda0e17 264
4d0d77af
VZ
265 if ( s_registered )
266 return true;
2bda0e17 267
4d0d77af
VZ
268 // Taskbar restart msg will be sent to us if the icon needs to be redrawn
269 gs_msgRestartTaskbar = RegisterWindowMessage(wxT("TaskbarCreated"));
2bda0e17 270
4d0d77af
VZ
271 // Also register the taskbar message here
272 gs_msgTaskbar = ::RegisterWindowMessage(wxT("wxTaskBarIconMessage"));
2bda0e17 273
4d0d77af
VZ
274 // set up and register window class
275 WNDCLASS wc;
2bda0e17
KB
276 wc.style = CS_HREDRAW | CS_VREDRAW;
277 wc.lpfnWndProc = (WNDPROC) wxTaskBarIconWindowProc;
278 wc.cbClsExtra = 0;
279 wc.cbWndExtra = 0;
4d0d77af 280 wc.hInstance = wxGetInstance();
2bda0e17
KB
281 wc.hIcon = 0;
282 wc.hCursor = 0;
283 wc.hbrBackground = 0;
284 wc.lpszMenuName = NULL;
4d0d77af
VZ
285 wc.lpszClassName = wxTaskBarWindowClass;
286
287 if ( !::RegisterClass(&wc) )
288 {
289 wxLogLastError(_T("RegisterClass(taskbar icon)"));
290
291 return false;
292 }
2bda0e17 293
4d0d77af 294 s_registered = true;
2bda0e17 295
4d0d77af 296 return true;
2bda0e17
KB
297}
298
299WXHWND wxTaskBarIcon::CreateTaskBarWindow()
300{
301 HINSTANCE hInstance = GetModuleHandle(NULL);
302
303 HWND hWnd = CreateWindowEx (0, wxTaskBarWindowClass,
223d09f6 304 wxT("wxTaskBarWindow"),
2bda0e17
KB
305 WS_OVERLAPPED,
306 0,
307 0,
308 10,
309 10,
310 NULL,
311 (HMENU) 0,
312 hInstance,
313 NULL);
314
315 return (WXHWND) hWnd;
316}
317
4d0d77af
VZ
318// ----------------------------------------------------------------------------
319// wxTaskBarIcon window proc
320// ----------------------------------------------------------------------------
321
322long wxTaskBarIcon::WindowProc(WXHWND hWnd,
323 unsigned int msg,
324 unsigned int wParam,
325 long lParam)
2bda0e17 326{
56194595
RD
327 wxEventType eventType = 0;
328
4d0d77af
VZ
329 if (msg == gs_msgRestartTaskbar) // does the icon need to be redrawn?
330 {
331 m_iconAdded = false;
332 SetIcon(m_icon, m_strTooltip);
333 }
334
335 if (msg != gs_msgTaskbar)
2bda0e17
KB
336 return DefWindowProc((HWND) hWnd, msg, wParam, lParam);
337
338 switch (lParam)
339 {
c42404a5 340 case WM_LBUTTONDOWN:
56194595
RD
341 eventType = wxEVT_TASKBAR_LEFT_DOWN;
342 break;
2bda0e17 343
c42404a5 344 case WM_LBUTTONUP:
56194595
RD
345 eventType = wxEVT_TASKBAR_LEFT_UP;
346 break;
2bda0e17 347
c42404a5 348 case WM_RBUTTONDOWN:
56194595
RD
349 eventType = wxEVT_TASKBAR_RIGHT_DOWN;
350 break;
2bda0e17 351
c42404a5 352 case WM_RBUTTONUP:
56194595
RD
353 eventType = wxEVT_TASKBAR_RIGHT_UP;
354 break;
2bda0e17 355
c42404a5 356 case WM_LBUTTONDBLCLK:
56194595
RD
357 eventType = wxEVT_TASKBAR_LEFT_DCLICK;
358 break;
2bda0e17 359
c42404a5 360 case WM_RBUTTONDBLCLK:
56194595
RD
361 eventType = wxEVT_TASKBAR_RIGHT_DCLICK;
362 break;
2bda0e17 363
c42404a5 364 case WM_MOUSEMOVE:
56194595
RD
365 eventType = wxEVT_TASKBAR_MOVE;
366 break;
2bda0e17 367
c42404a5 368 default:
56194595 369 break;
4d0d77af 370 }
56194595 371
4d0d77af
VZ
372 if (eventType)
373 {
fa1c12bd 374 wxTaskBarIconEvent event(eventType, this);
56194595
RD
375
376 ProcessEvent(event);
377 }
4d0d77af 378
2bda0e17
KB
379 return 0;
380}
381
4d0d77af
VZ
382LRESULT APIENTRY _EXPORT
383wxTaskBarIconWindowProc(HWND hWnd, unsigned msg, UINT wParam, LONG lParam)
2bda0e17 384{
d162a7ee 385 wxTaskBarIcon *obj = wxTaskBarIcon::FindObjectForHWND((WXHWND) hWnd);
2bda0e17
KB
386 if (obj)
387 return obj->WindowProc((WXHWND) hWnd, msg, wParam, lParam);
388 else
389 return DefWindowProc(hWnd, msg, wParam, lParam);
390}
391
392#endif
393 // __WIN95__