]> git.saurik.com Git - wxWidgets.git/blame - src/msw/window.cpp
Remove double buffering from wxWebViewIE as this is handled by the web browser contro...
[wxWidgets.git] / src / msw / window.cpp
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
faa49bfd
WS
2// Name: src/msw/window.cpp
3// Purpose: wxWindowMSW
2bda0e17 4// Author: Julian Smart
a23fd0e1 5// Modified by: VZ on 13.05.99: no more Default(), MSWOnXXX() reorganisation
2bda0e17
KB
6// Created: 04/01/98
7// RCS-ID: $Id$
6c9a19aa 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
a23fd0e1
VZ
12// ===========================================================================
13// declarations
14// ===========================================================================
15
16// ---------------------------------------------------------------------------
17// headers
18// ---------------------------------------------------------------------------
19
2bda0e17
KB
20// For compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
09914df7 24 #pragma hdrstop
2bda0e17
KB
25#endif
26
e4db172a
WS
27#include "wx/window.h"
28
2bda0e17 29#ifndef WX_PRECOMP
9ed0d735 30 #include "wx/msw/wrapwin.h"
57bd4c60
WS
31 #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly"
32 #include "wx/msw/missing.h"
0c589ad0 33 #include "wx/accel.h"
3a19e16d
VZ
34 #include "wx/menu.h"
35 #include "wx/dc.h"
36 #include "wx/dcclient.h"
8e92ccef 37 #include "wx/dcmemory.h"
3a19e16d
VZ
38 #include "wx/utils.h"
39 #include "wx/app.h"
3a19e16d
VZ
40 #include "wx/layout.h"
41 #include "wx/dialog.h"
42 #include "wx/frame.h"
43 #include "wx/listbox.h"
44 #include "wx/button.h"
3a19e16d 45 #include "wx/msgdlg.h"
1f3943e0 46 #include "wx/settings.h"
8d753488 47 #include "wx/statbox.h"
1e2aa2f8 48 #include "wx/sizer.h"
88a7a4e1 49 #include "wx/intl.h"
e4db172a 50 #include "wx/log.h"
fec9cc08 51 #include "wx/textctrl.h"
25466131 52 #include "wx/menuitem.h"
02761f6c 53 #include "wx/module.h"
2bda0e17
KB
54#endif
55
61fef19b 56#if wxUSE_OWNER_DRAWN && !defined(__WXUNIVERSAL__)
09914df7 57 #include "wx/ownerdrw.h"
2bda0e17
KB
58#endif
59
5acec112 60#include "wx/hashmap.h"
a3dc1da9 61#include "wx/evtloop.h"
355debca 62#include "wx/power.h"
c6430ed0 63#include "wx/sysopt.h"
d79df32c 64
9e2896e5
VZ
65#if wxUSE_DRAG_AND_DROP
66 #include "wx/dnd.h"
2bda0e17
KB
67#endif
68
ed5317e5
JS
69#if wxUSE_ACCESSIBILITY
70 #include "wx/access.h"
bef8d481 71 #include <ole2.h>
ed5317e5
JS
72 #include <oleacc.h>
73 #ifndef WM_GETOBJECT
74 #define WM_GETOBJECT 0x003D
75 #endif
76 #ifndef OBJID_CLIENT
77 #define OBJID_CLIENT 0xFFFFFFFC
78 #endif
79#endif
80
0c589ad0 81#include "wx/msw/private.h"
0c03f52d 82#include "wx/msw/private/keyboard.h"
888dde65 83#include "wx/msw/dcclient.h"
0c589ad0 84
750b78ba 85#if wxUSE_TOOLTIPS
42e69d6b 86 #include "wx/tooltip.h"
750b78ba
JS
87#endif
88
789295bf
VZ
89#if wxUSE_CARET
90 #include "wx/caret.h"
91#endif // wxUSE_CARET
92
7ee21e3a
VZ
93#if wxUSE_RADIOBOX
94 #include "wx/radiobox.h"
95#endif // wxUSE_RADIOBOX
96
6fe19057
VZ
97#if wxUSE_SPINCTRL
98 #include "wx/spinctrl.h"
99#endif // wxUSE_SPINCTRL
100
d9317fd4 101#include "wx/notebook.h"
5c6c3176 102#include "wx/listctrl.h"
aafb9978 103#include "wx/dynlib.h"
2a47d3c1 104
2bda0e17
KB
105#include <string.h>
106
d61c1a6f 107#if (!defined(__GNUWIN32_OLD__) && !defined(__WXMICROWIN__) /* && !defined(__WXWINCE__) */ ) || defined(__CYGWIN10__)
3a19e16d
VZ
108 #include <shellapi.h>
109 #include <mmsystem.h>
2bda0e17
KB
110#endif
111
112#ifdef __WIN32__
3a19e16d 113 #include <windowsx.h>
2bda0e17
KB
114#endif
115
dcfd4ac4 116#if !defined __WXWINCE__ && !defined NEED_PBT_H
dbc74bcc
WS
117 #include <pbt.h>
118#endif
2bda0e17 119
7f0586ef 120#if defined(__WXWINCE__)
4e5c6c33 121 #include "wx/msw/wince/missing.h"
7d4f65e3
JS
122#ifdef __POCKETPC__
123 #include <windows.h>
124 #include <shellapi.h>
125 #include <ole2.h>
126 #include <aygshell.h>
127#endif
7f0586ef
JS
128#endif
129
a047aff2
JS
130#if wxUSE_UXTHEME
131 #include "wx/msw/uxtheme.h"
132 #define EP_EDITTEXT 1
133 #define ETS_NORMAL 1
134 #define ETS_HOT 2
135 #define ETS_SELECTED 3
136 #define ETS_DISABLED 4
137 #define ETS_FOCUSED 5
138 #define ETS_READONLY 6
139 #define ETS_ASSIST 7
140#endif
141
21487550
VZ
142// define the constants used by AnimateWindow() if our SDK doesn't have them
143#ifndef AW_CENTER
144 #define AW_HOR_POSITIVE 0x00000001
145 #define AW_HOR_NEGATIVE 0x00000002
146 #define AW_VER_POSITIVE 0x00000004
147 #define AW_VER_NEGATIVE 0x00000008
148 #define AW_CENTER 0x00000010
149 #define AW_HIDE 0x00010000
150 #define AW_ACTIVATE 0x00020000
151 #define AW_SLIDE 0x00040000
152 #define AW_BLEND 0x00080000
153#endif
154
aafb9978 155#if defined(TME_LEAVE) && defined(WM_MOUSELEAVE) && wxUSE_DYNLIB_CLASS
4e5c6c33
VZ
156 #define HAVE_TRACKMOUSEEVENT
157#endif // everything needed for TrackMouseEvent()
158
c358ea41
VZ
159// set this to 1 to filter out duplicate mouse events, e.g. mouse move events
160// when mouse position didnd't change
161#ifdef __WXWINCE__
162 #define wxUSE_MOUSEEVENT_HACK 0
163#else
164 #define wxUSE_MOUSEEVENT_HACK 1
165#endif
166
2f68482e
VZ
167// not all compilers/platforms have X button related declarations (notably
168// Windows CE doesn't, and probably some old SDKs don't neither)
169#ifdef WM_XBUTTONDOWN
170 #define wxHAS_XBUTTON
171#endif
172
7095bd60
VZ
173#ifndef MAPVK_VK_TO_CHAR
174 #define MAPVK_VK_TO_CHAR 2
175#endif
176
a23fd0e1 177// ---------------------------------------------------------------------------
42e69d6b 178// global variables
a23fd0e1 179// ---------------------------------------------------------------------------
47cbd6da 180
1950edc3
RR
181#if wxUSE_MENUS_NATIVE
182extern wxMenu *wxCurrentPopupMenu;
183#endif
184
a3b89fa9
VZ
185#if wxUSE_UXTHEME
186// This is a hack used by the owner-drawn wxButton implementation to ensure
187// that the brush used for erasing its background is correctly aligned with the
188// control.
bb60690d 189wxWindowMSW *wxWindowBeingErased = NULL;
a3b89fa9
VZ
190#endif // wxUSE_UXTHEME
191
bec9bf3e
VZ
192namespace
193{
194
90c1530a
VZ
195// true if we had already created the std colour map, used by
196// wxGetStdColourMap() and wxWindow::OnSysColourChanged() (FIXME-MT)
bec9bf3e 197bool gs_hasStdCmap = false;
90c1530a 198
c358ea41
VZ
199// last mouse event information we need to filter out the duplicates
200#if wxUSE_MOUSEEVENT_HACK
bec9bf3e 201struct MouseEventInfoDummy
c358ea41
VZ
202{
203 // mouse position (in screen coordinates)
204 wxPoint pos;
205
206 // last mouse event type
207 wxEventType type;
208} gs_lastMouseEvent;
209#endif // wxUSE_MOUSEEVENT_HACK
210
5acec112
VZ
211// hash containing the registered handlers for the custom messages
212WX_DECLARE_HASH_MAP(int, wxWindow::MSWMessageHandler,
213 wxIntegerHash, wxIntegerEqual,
214 MSWMessageHandlers);
215
bec9bf3e 216MSWMessageHandlers gs_messageHandlers;
5acec112 217
dca0f651
VZ
218// hash containing all our windows, it uses HWND keys and wxWindow* values
219WX_DECLARE_HASH_MAP(HWND, wxWindow *,
220 wxPointerHash, wxPointerEqual,
221 WindowHandles);
222
bec9bf3e
VZ
223WindowHandles gs_windowHandles;
224
225#ifdef wxHAS_MSW_BACKGROUND_ERASE_HOOK
226
227// temporary override for WM_ERASEBKGND processing: we don't store this in
228// wxWindow itself as we don't need it during most of the time so don't
229// increase the size of all window objects unnecessarily
230WX_DECLARE_HASH_MAP(wxWindow *, wxWindow *,
231 wxPointerHash, wxPointerEqual,
232 EraseBgHooks);
233
234EraseBgHooks gs_eraseBgHooks;
235
236#endif // wxHAS_MSW_BACKGROUND_ERASE_HOOK
237
982bc2e4
VZ
238// If this variable is strictly positive, EVT_CHAR_HOOK is not generated for
239// Escape key presses as it can't be intercepted because it's needed by some
240// currently shown window, e.g. IME entry.
241//
242// This is currently global as we allow using UI from the main thread only
243// anyhow but could be replaced with a thread-specific value in the future if
244// needed.
245int gs_modalEntryWindowCount = 0;
246
bec9bf3e 247} // anonymous namespace
dca0f651 248
42e69d6b
VZ
249// ---------------------------------------------------------------------------
250// private functions
251// ---------------------------------------------------------------------------
252
253// the window proc for all our windows
3135f4a7 254LRESULT WXDLLEXPORT APIENTRY _EXPORT wxWndProc(HWND hWnd, UINT message,
42e69d6b 255 WPARAM wParam, LPARAM lParam);
577baeef 256
42e69d6b 257
4b6a582b 258#if wxDEBUG_LEVEL >= 2
4a712ba3 259 const wxChar *wxGetMessageName(int message);
4b6a582b 260#endif // wxDEBUG_LEVEL >= 2
2bda0e17 261
1e6feb95 262void wxRemoveHandleAssociation(wxWindowMSW *win);
cc972ac6 263extern void wxAssociateWinWithHandle(HWND hWnd, wxWindowMSW *win);
2bda0e17 264
f6bcfd97 265// get the text metrics for the current font
1e6feb95
VZ
266static TEXTMETRIC wxGetTextMetrics(const wxWindowMSW *win);
267
42b1fb63 268#ifdef __WXWINCE__
dfafa702 269// find the window for the mouse event at the specified position
42b1fb63
VZ
270static wxWindowMSW *FindWindowForMouseEvent(wxWindowMSW *win, int *x, int *y);
271#endif // __WXWINCE__
dfafa702 272
c48926e1 273// wrapper around BringWindowToTop() API
44d5b352 274static inline void wxBringWindowToTop(HWND hwnd)
c48926e1
VZ
275{
276#ifdef __WXMICROWIN__
277 // It seems that MicroWindows brings the _parent_ of the window to the top,
278 // which can be the wrong one.
279
280 // activate (set focus to) specified window
281 ::SetFocus(hwnd);
313901f3 282#endif
c48926e1
VZ
283
284 // raise top level parent to top of z order
313901f3 285 if (!::SetWindowPos(hwnd, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE))
c48926e1 286 {
9a83f860 287 wxLogLastError(wxT("SetWindowPos"));
c48926e1 288 }
c48926e1 289}
f6bcfd97 290
e0c5c96f
VZ
291#ifndef __WXWINCE__
292
ee471817
VZ
293// ensure that all our parent windows have WS_EX_CONTROLPARENT style
294static void EnsureParentHasControlParentStyle(wxWindow *parent)
295{
296 /*
297 If we have WS_EX_CONTROLPARENT flag we absolutely *must* set it for our
298 parent as well as otherwise several Win32 functions using
299 GetNextDlgTabItem() to iterate over all controls such as
300 IsDialogMessage() or DefDlgProc() would enter an infinite loop: indeed,
301 all of them iterate over all the controls starting from the currently
302 focused one and stop iterating when they get back to the focus but
303 unless all parents have WS_EX_CONTROLPARENT bit set, they would never
304 get back to the initial (focused) window: as we do have this style,
305 GetNextDlgTabItem() will leave this window and continue in its parent,
306 but if the parent doesn't have it, it wouldn't recurse inside it later
90e572f1 307 on and so wouldn't have a chance of getting back to this window either.
ee471817 308 */
ee471817
VZ
309 while ( parent && !parent->IsTopLevel() )
310 {
d66d0500 311 LONG exStyle = wxGetWindowExStyle(parent);
ee471817
VZ
312 if ( !(exStyle & WS_EX_CONTROLPARENT) )
313 {
314 // force the parent to have this style
d66d0500 315 wxSetWindowExStyle(parent, exStyle | WS_EX_CONTROLPARENT);
ee471817
VZ
316 }
317
318 parent = parent->GetParent();
319 }
ee471817
VZ
320}
321
e0c5c96f
VZ
322#endif // !__WXWINCE__
323
d6c37f5b
VZ
324// GetCursorPos can return an error, so use this function
325// instead.
326// Error originally observed with WinCE, but later using Remote Desktop
327// to connect to XP.
328void wxGetCursorPosMSW(POINT* pt)
f2325516 329{
7d30268c
JS
330 if (!GetCursorPos(pt))
331 {
d6c37f5b
VZ
332#ifdef __WXWINCE__
333 wxLogLastError(wxT("GetCursorPos"));
334#endif
7d30268c 335 DWORD pos = GetMessagePos();
d6c37f5b
VZ
336 // the coordinates may be negative in multi-monitor systems
337 pt->x = GET_X_LPARAM(pos);
338 pt->y = GET_Y_LPARAM(pos);
7d30268c 339 }
f2325516 340}
f2325516 341
a23fd0e1
VZ
342// ---------------------------------------------------------------------------
343// event tables
344// ---------------------------------------------------------------------------
345
1e6feb95
VZ
346// in wxUniv/MSW this class is abstract because it doesn't have DoPopupMenu()
347// method
348#ifdef __WXUNIVERSAL__
349 IMPLEMENT_ABSTRACT_CLASS(wxWindowMSW, wxWindowBase)
28953245 350#endif // __WXUNIVERSAL__
1e6feb95
VZ
351
352BEGIN_EVENT_TABLE(wxWindowMSW, wxWindowBase)
1e6feb95 353 EVT_SYS_COLOUR_CHANGED(wxWindowMSW::OnSysColourChanged)
79099b80 354#ifdef __WXWINCE__
1e6feb95 355 EVT_INIT_DIALOG(wxWindowMSW::OnInitDialog)
79099b80 356#endif
2bda0e17
KB
357END_EVENT_TABLE()
358
a23fd0e1
VZ
359// ===========================================================================
360// implementation
361// ===========================================================================
362
42e69d6b
VZ
363// ---------------------------------------------------------------------------
364// wxWindow utility functions
365// ---------------------------------------------------------------------------
366
2bda0e17 367// Find an item given the MS Windows id
1e6feb95 368wxWindow *wxWindowMSW::FindItem(long id) const
2bda0e17 369{
1e6feb95 370#if wxUSE_CONTROLS
f7637829 371 wxControl *item = wxDynamicCastThis(wxControl);
f048e32f
VZ
372 if ( item )
373 {
90e572f1 374 // is it us or one of our "internal" children?
1e6feb95
VZ
375 if ( item->GetId() == id
376#ifndef __WXUNIVERSAL__
377 || (item->GetSubcontrols().Index(id) != wxNOT_FOUND)
378#endif // __WXUNIVERSAL__
379 )
f048e32f
VZ
380 {
381 return item;
382 }
383 }
1e6feb95 384#endif // wxUSE_CONTROLS
f048e32f 385
222ed1d6 386 wxWindowList::compatibility_iterator current = GetChildren().GetFirst();
2d0a075d
JS
387 while (current)
388 {
42e69d6b 389 wxWindow *childWin = current->GetData();
2bda0e17 390
42e69d6b 391 wxWindow *wnd = childWin->FindItem(id);
cc2b7472 392 if ( wnd )
42e69d6b 393 return wnd;
2bda0e17 394
42e69d6b 395 current = current->GetNext();
2bda0e17 396 }
42e69d6b 397
2d0a075d 398 return NULL;
2bda0e17
KB
399}
400
401// Find an item given the MS Windows handle
1e6feb95 402wxWindow *wxWindowMSW::FindItemByHWND(WXHWND hWnd, bool controlOnly) const
2bda0e17 403{
222ed1d6 404 wxWindowList::compatibility_iterator current = GetChildren().GetFirst();
2d0a075d 405 while (current)
2bda0e17 406 {
42e69d6b
VZ
407 wxWindow *parent = current->GetData();
408
2d0a075d 409 // Do a recursive search.
42e69d6b 410 wxWindow *wnd = parent->FindItemByHWND(hWnd);
cc2b7472 411 if ( wnd )
42e69d6b 412 return wnd;
2d0a075d 413
1e6feb95
VZ
414 if ( !controlOnly
415#if wxUSE_CONTROLS
416 || parent->IsKindOf(CLASSINFO(wxControl))
417#endif // wxUSE_CONTROLS
418 )
2d0a075d 419 {
42e69d6b
VZ
420 wxWindow *item = current->GetData();
421 if ( item->GetHWND() == hWnd )
2d0a075d
JS
422 return item;
423 else
424 {
425 if ( item->ContainsHWND(hWnd) )
426 return item;
427 }
428 }
42e69d6b
VZ
429
430 current = current->GetNext();
2bda0e17 431 }
2d0a075d 432 return NULL;
2bda0e17
KB
433}
434
435// Default command handler
1e6feb95 436bool wxWindowMSW::MSWCommand(WXUINT WXUNUSED(param), WXWORD WXUNUSED(id))
2bda0e17 437{
08158721 438 return false;
2bda0e17
KB
439}
440
fd3f686c
VZ
441// ----------------------------------------------------------------------------
442// constructors and such
443// ----------------------------------------------------------------------------
444
1e6feb95 445void wxWindowMSW::Init()
2bda0e17 446{
cc2b7472 447 // MSW specific
5a403e3f 448 m_oldWndProc = NULL;
08158721
DS
449 m_mouseInWindow = false;
450 m_lastKeydownProcessed = false;
2bda0e17 451
319fefa9
VZ
452 m_hWnd = 0;
453
2d0a075d
JS
454 m_xThumbSize = 0;
455 m_yThumbSize = 0;
2bda0e17 456
f5c1b76c
VZ
457#if wxUSE_DEFERRED_SIZING
458 m_hDWP = 0;
67644c1d
RD
459 m_pendingPosition = wxDefaultPosition;
460 m_pendingSize = wxDefaultSize;
f5c1b76c 461#endif // wxUSE_DEFERRED_SIZING
7d4f65e3
JS
462
463#ifdef __POCKETPC__
464 m_contextMenuEnabled = false;
465#endif
fd3f686c
VZ
466}
467
2bda0e17 468// Destructor
1e6feb95 469wxWindowMSW::~wxWindowMSW()
2bda0e17 470{
c6212a0c 471 SendDestroyEvent();
2bda0e17 472
2e9f62da 473#ifndef __WXUNIVERSAL__
4a41c655 474 // VS: make sure there's no wxFrame with last focus set to us:
2e9f62da 475 for ( wxWindow *win = GetParent(); win; win = win->GetParent() )
4a41c655 476 {
085ad686 477 wxTopLevelWindow *frame = wxDynamicCast(win, wxTopLevelWindow);
4a41c655
VS
478 if ( frame )
479 {
c5053639 480 if ( frame->GetLastFocus() == this )
2e9f62da 481 {
085ad686 482 frame->SetLastFocus(NULL);
2e9f62da 483 }
4552892f
VZ
484
485 // apparently sometimes we can end up with our grand parent
486 // pointing to us as well: this is surely a bug in focus handling
487 // code but it's not clear where it happens so for now just try to
488 // fix it here by not breaking out of the loop
489 //break;
4a41c655
VS
490 }
491 }
2e9f62da 492#endif // __WXUNIVERSAL__
2bda0e17 493
cc0c7cd8 494 // VS: destroy children first and _then_ detach *this from its parent.
90e572f1 495 // If we did it the other way around, children wouldn't be able
cc0c7cd8
VS
496 // find their parent frame (see above).
497 DestroyChildren();
498
cc2b7472 499 if ( m_hWnd )
42e69d6b 500 {
98440bc3
VZ
501 // VZ: test temp removed to understand what really happens here
502 //if (::IsWindow(GetHwnd()))
df61c009
JS
503 {
504 if ( !::DestroyWindow(GetHwnd()) )
43b2d5e7 505 {
f6bcfd97 506 wxLogLastError(wxT("DestroyWindow"));
43b2d5e7 507 }
df61c009 508 }
2bda0e17 509
c50f1fb9
VZ
510 // remove hWnd <-> wxWindow association
511 wxRemoveHandleAssociation(this);
512 }
d7cbabe0 513
2bda0e17
KB
514}
515
d9698bd4
VZ
516/* static */
517const wxChar *wxWindowMSW::MSWGetRegisteredClassName()
518{
9a83f860 519 return wxApp::GetRegisteredClassName(wxT("wxWindow"), COLOR_BTNFACE);
d9698bd4
VZ
520}
521
fd3f686c 522// real construction (Init() must have been called before!)
1e6feb95
VZ
523bool wxWindowMSW::Create(wxWindow *parent,
524 wxWindowID id,
525 const wxPoint& pos,
526 const wxSize& size,
527 long style,
528 const wxString& name)
2d0a075d 529{
08158721 530 wxCHECK_MSG( parent, false, wxT("can't create wxWindow without parent") );
2bda0e17 531
8d99be5f 532 if ( !CreateBase(parent, id, pos, size, style, wxDefaultValidator, name) )
08158721 533 return false;
42e69d6b 534
fd3f686c 535 parent->AddChild(this);
2bda0e17 536
b2d5a7ee 537 WXDWORD exstyle;
e49d97e6 538 DWORD msflags = MSWGetCreateWindowFlags(&exstyle);
1e6feb95
VZ
539
540#ifdef __WXUNIVERSAL__
d1fe917b 541 // no borders, we draw them ourselves
76c79ff4
VZ
542 exstyle &= ~(WS_EX_DLGMODALFRAME |
543 WS_EX_STATICEDGE |
544 WS_EX_CLIENTEDGE |
545 WS_EX_WINDOWEDGE);
d1fe917b 546 msflags &= ~WS_BORDER;
b2d5a7ee 547#endif // wxUniversal
1e6feb95 548
ff792344 549 if ( IsShown() )
e49d97e6
VZ
550 {
551 msflags |= WS_VISIBLE;
552 }
1e6feb95 553
d9698bd4
VZ
554 if ( !MSWCreate(MSWGetRegisteredClassName(),
555 NULL, pos, size, msflags, exstyle) )
45956e37
VZ
556 return false;
557
558 InheritAttributes();
559
560 return true;
2bda0e17
KB
561}
562
42e69d6b
VZ
563// ---------------------------------------------------------------------------
564// basic operations
565// ---------------------------------------------------------------------------
566
1e6feb95 567void wxWindowMSW::SetFocus()
2bda0e17 568{
a23fd0e1 569 HWND hWnd = GetHwnd();
9a83f860 570 wxCHECK_RET( hWnd, wxT("can't set focus to invalid window") );
1e6feb95 571
4b6a582b 572#if !defined(__WXWINCE__)
1e6feb95 573 ::SetLastError(0);
8cb172b4 574#endif
d0a3d109 575
1e6feb95
VZ
576 if ( !::SetFocus(hWnd) )
577 {
578 // was there really an error?
579 DWORD dwRes = ::GetLastError();
580 if ( dwRes )
581 {
5262eb0a
VZ
582 HWND hwndFocus = ::GetFocus();
583 if ( hwndFocus != hWnd )
584 {
9a83f860 585 wxLogApiError(wxT("SetFocus"), dwRes);
5262eb0a 586 }
1e6feb95 587 }
1e6feb95 588 }
2bda0e17
KB
589}
590
ddf9d04f
VZ
591void wxWindowMSW::SetFocusFromKbd()
592{
ddf9d04f
VZ
593 // when the focus is given to the control with DLGC_HASSETSEL style from
594 // keyboard its contents should be entirely selected: this is what
595 // ::IsDialogMessage() does and so we should do it as well to provide the
596 // same LNF as the native programs
597 if ( ::SendMessage(GetHwnd(), WM_GETDLGCODE, 0, 0) & DLGC_HASSETSEL )
598 {
599 ::SendMessage(GetHwnd(), EM_SETSEL, 0, -1);
600 }
1b1ca07a
VZ
601
602 // do this after (maybe) setting the selection as like this when
603 // wxEVT_SET_FOCUS handler is called, the selection would have been already
604 // set correctly -- this may be important
605 wxWindowBase::SetFocusFromKbd();
ddf9d04f
VZ
606}
607
42e69d6b 608// Get the window with the focus
0fe02759 609wxWindow *wxWindowBase::DoFindFocus()
42e69d6b
VZ
610{
611 HWND hWnd = ::GetFocus();
612 if ( hWnd )
613 {
a2242341 614 return wxGetWindowFromHWND((WXHWND)hWnd);
42e69d6b
VZ
615 }
616
617 return NULL;
618}
619
47a8a4d5 620void wxWindowMSW::DoEnable( bool enable )
2bda0e17 621{
0826c4d3
VS
622 MSWEnableHWND(GetHwnd(), enable);
623}
624
625bool wxWindowMSW::MSWEnableHWND(WXHWND hWnd, bool enable)
626{
627 if ( !hWnd )
628 return false;
629
630 // If disabling focused control, we move focus to the next one, as if the
631 // user pressed Tab. That's because we can't keep focus on a disabled
632 // control, Tab-navigation would stop working then.
633 if ( !enable && ::GetFocus() == hWnd )
634 Navigate();
635
a492bccf 636 return ::EnableWindow(hWnd, (BOOL)enable) != 0;
2bda0e17
KB
637}
638
1e6feb95 639bool wxWindowMSW::Show(bool show)
42e69d6b
VZ
640{
641 if ( !wxWindowBase::Show(show) )
08158721 642 return false;
42e69d6b
VZ
643
644 HWND hWnd = GetHwnd();
42e69d6b 645
a068160f
VZ
646 // we could be called before the underlying window is created (this is
647 // actually useful to prevent it from being initially shown), e.g.
648 //
649 // wxFoo *foo = new wxFoo;
650 // foo->Hide();
651 // foo->Create(parent, ...);
652 //
653 // should work without errors
654 if ( hWnd )
42e69d6b 655 {
a068160f 656 ::ShowWindow(hWnd, show ? SW_SHOW : SW_HIDE);
42e69d6b
VZ
657 }
658
89267fe5
VS
659 if ( IsFrozen() )
660 {
661 // DoFreeze/DoThaw don't do anything if the window is not shown, so
662 // we have to call them from here now
663 if ( show )
664 DoFreeze();
665 else
666 DoThaw();
667 }
668
08158721 669 return true;
42e69d6b
VZ
670}
671
376d7d97
VZ
672bool
673wxWindowMSW::MSWShowWithEffect(bool show,
674 wxShowEffect effect,
eed04c99 675 unsigned timeout)
376d7d97 676{
ffa50e73
VZ
677 if ( effect == wxSHOW_EFFECT_NONE )
678 return Show(show);
679
30443550
VS
680 if ( !wxWindowBase::Show(show) )
681 return false;
682
376d7d97
VZ
683 typedef BOOL (WINAPI *AnimateWindow_t)(HWND, DWORD, DWORD);
684
685 static AnimateWindow_t s_pfnAnimateWindow = NULL;
686 static bool s_initDone = false;
687 if ( !s_initDone )
688 {
9a83f860 689 wxDynamicLibrary dllUser32(wxT("user32.dll"), wxDL_VERBATIM | wxDL_QUIET);
376d7d97
VZ
690 wxDL_INIT_FUNC(s_pfn, AnimateWindow, dllUser32);
691
692 s_initDone = true;
693
694 // notice that it's ok to unload user32.dll here as it won't be really
695 // unloaded, being still in use because we link to it statically too
696 }
697
698 if ( !s_pfnAnimateWindow )
699 return Show(show);
700
7157abfb
VZ
701 // Show() has a side effect of sending a WM_SIZE to the window, which helps
702 // ensuring that it's laid out correctly, but AnimateWindow() doesn't do
703 // this so send the event ourselves
704 SendSizeEvent();
705
376d7d97
VZ
706 // prepare to use AnimateWindow()
707
708 if ( !timeout )
709 timeout = 200; // this is the default animation timeout, per MSDN
710
711 DWORD dwFlags = show ? 0 : AW_HIDE;
eed04c99 712
376d7d97
VZ
713 switch ( effect )
714 {
eed04c99
VS
715 case wxSHOW_EFFECT_ROLL_TO_LEFT:
716 dwFlags |= AW_HOR_NEGATIVE;
717 break;
718
719 case wxSHOW_EFFECT_ROLL_TO_RIGHT:
720 dwFlags |= AW_HOR_POSITIVE;
721 break;
722
723 case wxSHOW_EFFECT_ROLL_TO_TOP:
724 dwFlags |= AW_VER_NEGATIVE;
725 break;
726
727 case wxSHOW_EFFECT_ROLL_TO_BOTTOM:
728 dwFlags |= AW_VER_POSITIVE;
729 break;
730
731 case wxSHOW_EFFECT_SLIDE_TO_LEFT:
732 dwFlags |= AW_SLIDE | AW_HOR_NEGATIVE;
733 break;
734
735 case wxSHOW_EFFECT_SLIDE_TO_RIGHT:
736 dwFlags |= AW_SLIDE | AW_HOR_POSITIVE;
737 break;
738
739 case wxSHOW_EFFECT_SLIDE_TO_TOP:
740 dwFlags |= AW_SLIDE | AW_VER_NEGATIVE;
376d7d97
VZ
741 break;
742
eed04c99
VS
743 case wxSHOW_EFFECT_SLIDE_TO_BOTTOM:
744 dwFlags |= AW_SLIDE | AW_VER_POSITIVE;
376d7d97
VZ
745 break;
746
747 case wxSHOW_EFFECT_BLEND:
748 dwFlags |= AW_BLEND;
749 break;
750
751 case wxSHOW_EFFECT_EXPAND:
752 dwFlags |= AW_CENTER;
753 break;
754
755
756 case wxSHOW_EFFECT_MAX:
9a83f860 757 wxFAIL_MSG( wxT("invalid window show effect") );
376d7d97
VZ
758 return false;
759
760 default:
9a83f860 761 wxFAIL_MSG( wxT("unknown window show effect") );
376d7d97
VZ
762 return false;
763 }
764
376d7d97
VZ
765 if ( !(*s_pfnAnimateWindow)(GetHwnd(), timeout, dwFlags) )
766 {
9a83f860 767 wxLogLastError(wxT("AnimateWindow"));
376d7d97
VZ
768
769 return false;
770 }
771
772 return true;
773}
774
42e69d6b 775// Raise the window to the top of the Z order
1e6feb95 776void wxWindowMSW::Raise()
42e69d6b 777{
c48926e1 778 wxBringWindowToTop(GetHwnd());
42e69d6b
VZ
779}
780
781// Lower the window to the bottom of the Z order
1e6feb95 782void wxWindowMSW::Lower()
42e69d6b
VZ
783{
784 ::SetWindowPos(GetHwnd(), HWND_BOTTOM, 0, 0, 0, 0,
785 SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
786}
787
94633ad9 788void wxWindowMSW::DoCaptureMouse()
2bda0e17 789{
a23fd0e1 790 HWND hWnd = GetHwnd();
1e6feb95 791 if ( hWnd )
2d0a075d 792 {
1e6feb95 793 ::SetCapture(hWnd);
2d0a075d 794 }
2bda0e17
KB
795}
796
94633ad9 797void wxWindowMSW::DoReleaseMouse()
2bda0e17 798{
1e6feb95 799 if ( !::ReleaseCapture() )
2d0a075d 800 {
9a83f860 801 wxLogLastError(wxT("ReleaseCapture"));
2d0a075d 802 }
2bda0e17
KB
803}
804
1e6feb95
VZ
805/* static */ wxWindow *wxWindowBase::GetCapture()
806{
807 HWND hwnd = ::GetCapture();
dca0f651 808 return hwnd ? wxFindWinFromHandle(hwnd) : NULL;
1e6feb95
VZ
809}
810
811bool wxWindowMSW::SetFont(const wxFont& font)
2bda0e17 812{
42e69d6b
VZ
813 if ( !wxWindowBase::SetFont(font) )
814 {
815 // nothing to do
08158721 816 return false;
2d0a075d 817 }
195896c7 818
42e69d6b
VZ
819 HWND hWnd = GetHwnd();
820 if ( hWnd != 0 )
821 {
d8df8893
VZ
822 // note the use of GetFont() instead of m_font: our own font could have
823 // just been reset and in this case we need to change the font used by
824 // the native window to the default for this class, i.e. exactly what
825 // GetFont() returns
826 WXHANDLE hFont = GetFont().GetResourceHandle();
2bda0e17 827
223d09f6 828 wxASSERT_MSG( hFont, wxT("should have valid font") );
3a19e16d 829
c50f1fb9 830 ::SendMessage(hWnd, WM_SETFONT, (WPARAM)hFont, MAKELPARAM(TRUE, 0));
42e69d6b 831 }
2bda0e17 832
08158721 833 return true;
42e69d6b 834}
fd2eccd1 835
1e6feb95 836bool wxWindowMSW::SetCursor(const wxCursor& cursor)
2bda0e17 837{
42e69d6b
VZ
838 if ( !wxWindowBase::SetCursor(cursor) )
839 {
840 // no change
08158721 841 return false;
42e69d6b
VZ
842 }
843
8e75dca8 844 // don't "overwrite" busy cursor
fd2eccd1
VZ
845 if ( wxIsBusy() )
846 return true;
847
848 if ( m_cursor.IsOk() )
8a9c2246 849 {
a8b2285e
VZ
850 // normally we should change the cursor only if it's over this window
851 // but we should do it always if we capture the mouse currently
852 bool set = HasCapture();
853 if ( !set )
854 {
855 HWND hWnd = GetHwnd();
856
857 POINT point;
d6c37f5b 858 ::wxGetCursorPosMSW(&point);
a8b2285e
VZ
859
860 RECT rect = wxGetWindowRect(hWnd);
861
862 set = ::PtInRect(&rect, point) != 0;
863 }
864
865 if ( set )
866 {
867 ::SetCursor(GetHcursorOf(m_cursor));
868 }
869 //else: will be set later when the mouse enters this window
8a9c2246 870 }
fd2eccd1
VZ
871 else // Invalid cursor: this means reset to the default one.
872 {
873 // To revert to the correct cursor we need to find the window currently
874 // under the cursor and ask it to set its cursor itself as only it
875 // knows what it is.
876 POINT pt;
d6c37f5b 877 wxGetCursorPosMSW(&pt);
fd2eccd1 878
1df57a24 879 const wxWindowMSW* win = wxFindWindowAtPoint(wxPoint(pt.x, pt.y));
fd2eccd1
VZ
880 if ( !win )
881 win = this;
882
883 ::SendMessage(GetHwndOf(win), WM_SETCURSOR,
884 (WPARAM)GetHwndOf(win),
885 MAKELPARAM(HTCLIENT, WM_MOUSEMOVE));
886 }
3a19e16d 887
08158721 888 return true;
3a19e16d
VZ
889}
890
d7e0024b 891void wxWindowMSW::WarpPointer(int x, int y)
2bda0e17 892{
1e6feb95 893 ClientToScreen(&x, &y);
42e69d6b 894
1e6feb95
VZ
895 if ( !::SetCursorPos(x, y) )
896 {
9a83f860 897 wxLogLastError(wxT("SetCursorPos"));
1e6feb95 898 }
2bda0e17
KB
899}
900
1ca78aa1 901void wxWindowMSW::MSWUpdateUIState(int action, int state)
d7e0024b 902{
1ca78aa1 903 // WM_CHANGEUISTATE only appeared in Windows 2000 so it can do us no good
d7e0024b
VZ
904 // to use it on older systems -- and could possibly do some harm
905 static int s_needToUpdate = -1;
906 if ( s_needToUpdate == -1 )
907 {
908 int verMaj, verMin;
406d283a 909 s_needToUpdate = wxGetOsVersion(&verMaj, &verMin) == wxOS_WINDOWS_NT &&
d7e0024b
VZ
910 verMaj >= 5;
911 }
912
913 if ( s_needToUpdate )
914 {
1ca78aa1
JS
915 // we send WM_CHANGEUISTATE so if nothing needs changing then the system
916 // won't send WM_UPDATEUISTATE
917 ::SendMessage(GetHwnd(), WM_CHANGEUISTATE, MAKEWPARAM(action, state), 0);
d7e0024b
VZ
918 }
919}
920
42e69d6b
VZ
921// ---------------------------------------------------------------------------
922// scrolling stuff
923// ---------------------------------------------------------------------------
2d0a075d 924
1ddb6d28
VZ
925namespace
926{
927
9cd6d737
VZ
928inline int GetScrollPosition(HWND hWnd, int wOrient)
929{
930#ifdef __WXMICROWIN__
931 return ::GetScrollPosWX(hWnd, wOrient);
932#else
f676b387 933 WinStruct<SCROLLINFO> scrollInfo;
4676948b 934 scrollInfo.cbSize = sizeof(SCROLLINFO);
7f0586ef 935 scrollInfo.fMask = SIF_POS;
e795e8b5 936 ::GetScrollInfo(hWnd, wOrient, &scrollInfo );
a71d815b 937
7f0586ef 938 return scrollInfo.nPos;
e795e8b5 939
9cd6d737
VZ
940#endif
941}
942
1ddb6d28
VZ
943inline UINT WXOrientToSB(int orient)
944{
945 return orient == wxHORIZONTAL ? SB_HORZ : SB_VERT;
946}
947
948} // anonymous namespace
949
1e6feb95 950int wxWindowMSW::GetScrollPos(int orient) const
2bda0e17 951{
42e69d6b 952 HWND hWnd = GetHwnd();
9a83f860 953 wxCHECK_MSG( hWnd, 0, wxT("no HWND in GetScrollPos") );
9cd6d737 954
1ddb6d28 955 return GetScrollPosition(hWnd, WXOrientToSB(orient));
42e69d6b 956}
2bda0e17 957
42e69d6b
VZ
958// This now returns the whole range, not just the number
959// of positions that we can scroll.
1e6feb95 960int wxWindowMSW::GetScrollRange(int orient) const
42e69d6b 961{
7f0586ef 962 int maxPos;
a23fd0e1 963 HWND hWnd = GetHwnd();
0cf5de11 964 if ( !hWnd )
42e69d6b 965 return 0;
f676b387 966 WinStruct<SCROLLINFO> scrollInfo;
7f0586ef 967 scrollInfo.fMask = SIF_RANGE;
1ddb6d28 968 if ( !::GetScrollInfo(hWnd, WXOrientToSB(orient), &scrollInfo) )
7f0586ef 969 {
f676b387
RD
970 // Most of the time this is not really an error, since the return
971 // value can also be zero when there is no scrollbar yet.
9a83f860 972 // wxLogLastError(wxT("GetScrollInfo"));
7f0586ef
JS
973 }
974 maxPos = scrollInfo.nMax;
0cf5de11
VZ
975
976 // undo "range - 1" done in SetScrollbar()
977 return maxPos + 1;
cc2b7472 978}
2bda0e17 979
1e6feb95 980int wxWindowMSW::GetScrollThumb(int orient) const
2bda0e17 981{
0cf5de11 982 return orient == wxHORIZONTAL ? m_xThumbSize : m_yThumbSize;
2bda0e17
KB
983}
984
1e6feb95 985void wxWindowMSW::SetScrollPos(int orient, int pos, bool refresh)
2bda0e17 986{
5f3286d1 987 HWND hWnd = GetHwnd();
9a83f860 988 wxCHECK_RET( hWnd, wxT("SetScrollPos: no HWND") );
72fd19a1 989
0cf5de11 990 WinStruct<SCROLLINFO> info;
42e69d6b
VZ
991 info.nPage = 0;
992 info.nMin = 0;
993 info.nPos = pos;
994 info.fMask = SIF_POS;
a647d42a
VZ
995 if ( HasFlag(wxALWAYS_SHOW_SB) )
996 {
997 // disable scrollbar instead of removing it then
998 info.fMask |= SIF_DISABLENOSCROLL;
999 }
2d0a075d 1000
1ddb6d28 1001 ::SetScrollInfo(hWnd, WXOrientToSB(orient), &info, refresh);
2bda0e17
KB
1002}
1003
42e69d6b 1004// New function that will replace some of the above.
0cf5de11
VZ
1005void wxWindowMSW::SetScrollbar(int orient,
1006 int pos,
1007 int pageSize,
1008 int range,
1009 bool refresh)
1010{
1ddb6d28
VZ
1011 // We have to set the variables here to make them valid in events
1012 // triggered by ::SetScrollInfo()
1013 *(orient == wxHORIZONTAL ? &m_xThumbSize : &m_yThumbSize) = pageSize;
1014
1015 HWND hwnd = GetHwnd();
1016 if ( !hwnd )
1017 return;
1018
0cf5de11 1019 WinStruct<SCROLLINFO> info;
1ddb6d28
VZ
1020 if ( range != -1 )
1021 {
1022 info.nPage = pageSize;
1023 info.nMin = 0; // range is nMax - nMin + 1
1024 info.nMax = range - 1; // as both nMax and nMax are inclusive
1025 info.nPos = pos;
1026
f074df34
VZ
1027 // We normally also reenable scrollbar in case it had been previously
1028 // disabled by specifying SIF_DISABLENOSCROLL below but we should only
1029 // do this if it has valid range, otherwise it would be enabled but not
1030 // do anything.
1031 if ( range >= pageSize )
1032 {
1033 ::EnableScrollBar(hwnd, WXOrientToSB(orient), ESB_ENABLE_BOTH);
1034 }
1ddb6d28
VZ
1035 }
1036 //else: leave all the fields to be 0
1037
42e69d6b 1038 info.fMask = SIF_RANGE | SIF_PAGE | SIF_POS;
1ddb6d28 1039 if ( HasFlag(wxALWAYS_SHOW_SB) || range == -1 )
a647d42a
VZ
1040 {
1041 // disable scrollbar instead of removing it then
1042 info.fMask |= SIF_DISABLENOSCROLL;
1043 }
2bda0e17 1044
1ddb6d28 1045 ::SetScrollInfo(hwnd, WXOrientToSB(orient), &info, refresh);
81d66cf3
JS
1046}
1047
1e6feb95 1048void wxWindowMSW::ScrollWindow(int dx, int dy, const wxRect *prect)
2bda0e17 1049{
574c939e
KB
1050 RECT rect;
1051 RECT *pr;
1e6feb95 1052 if ( prect )
2d0a075d 1053 {
f9c980f6 1054 wxCopyRectToRECT(*prect, rect);
f797e53d
VZ
1055 pr = &rect;
1056 }
1057 else
1058 {
1059 pr = NULL;
304b8bc1 1060
2d0a075d 1061 }
2bda0e17 1062
7f0586ef
JS
1063#ifdef __WXWINCE__
1064 // FIXME: is this the exact equivalent of the line below?
304b8bc1 1065 ::ScrollWindowEx(GetHwnd(), dx, dy, pr, pr, 0, 0, SW_SCROLLCHILDREN|SW_ERASE|SW_INVALIDATE);
7f0586ef 1066#else
f797e53d 1067 ::ScrollWindow(GetHwnd(), dx, dy, pr, pr);
7f0586ef 1068#endif
2bda0e17
KB
1069}
1070
9cd6d737 1071static bool ScrollVertically(HWND hwnd, int kind, int count)
b9b3393e 1072{
9cd6d737
VZ
1073 int posStart = GetScrollPosition(hwnd, SB_VERT);
1074
1075 int pos = posStart;
c0cdd6cc
VZ
1076 for ( int n = 0; n < count; n++ )
1077 {
1078 ::SendMessage(hwnd, WM_VSCROLL, kind, 0);
9cd6d737
VZ
1079
1080 int posNew = GetScrollPosition(hwnd, SB_VERT);
1081 if ( posNew == pos )
1082 {
1083 // don't bother to continue, we're already at top/bottom
1084 break;
1085 }
1086
1087 pos = posNew;
c0cdd6cc 1088 }
9cd6d737
VZ
1089
1090 return pos != posStart;
b9b3393e
VZ
1091}
1092
9cd6d737 1093bool wxWindowMSW::ScrollLines(int lines)
b9b3393e
VZ
1094{
1095 bool down = lines > 0;
1096
9cd6d737
VZ
1097 return ScrollVertically(GetHwnd(),
1098 down ? SB_LINEDOWN : SB_LINEUP,
1099 down ? lines : -lines);
b9b3393e
VZ
1100}
1101
9cd6d737 1102bool wxWindowMSW::ScrollPages(int pages)
b9b3393e
VZ
1103{
1104 bool down = pages > 0;
1105
9cd6d737
VZ
1106 return ScrollVertically(GetHwnd(),
1107 down ? SB_PAGEDOWN : SB_PAGEUP,
1108 down ? pages : -pages);
b9b3393e
VZ
1109}
1110
978af864
VZ
1111// ----------------------------------------------------------------------------
1112// RTL support
1113// ----------------------------------------------------------------------------
1114
1115void wxWindowMSW::SetLayoutDirection(wxLayoutDirection dir)
1116{
08a58133
WS
1117#ifdef __WXWINCE__
1118 wxUnusedVar(dir);
1119#else
d66d0500 1120 wxCHECK_RET( GetHwnd(),
9a83f860 1121 wxT("layout direction must be set after window creation") );
978af864 1122
d66d0500 1123 LONG styleOld = wxGetWindowExStyle(this);
978af864
VZ
1124
1125 LONG styleNew = styleOld;
1126 switch ( dir )
1127 {
1128 case wxLayout_LeftToRight:
1129 styleNew &= ~WS_EX_LAYOUTRTL;
1130 break;
1131
1132 case wxLayout_RightToLeft:
1133 styleNew |= WS_EX_LAYOUTRTL;
1134 break;
1135
1136 default:
9a83f860 1137 wxFAIL_MSG(wxT("unsupported layout direction"));
978af864
VZ
1138 break;
1139 }
1140
1141 if ( styleNew != styleOld )
1142 {
d66d0500 1143 wxSetWindowExStyle(this, styleNew);
978af864 1144 }
08a58133 1145#endif
978af864
VZ
1146}
1147
1148wxLayoutDirection wxWindowMSW::GetLayoutDirection() const
1149{
08a58133
WS
1150#ifdef __WXWINCE__
1151 return wxLayout_Default;
1152#else
9a83f860 1153 wxCHECK_MSG( GetHwnd(), wxLayout_Default, wxT("invalid window") );
978af864 1154
d66d0500
VZ
1155 return wxHasWindowExStyle(this, WS_EX_LAYOUTRTL) ? wxLayout_RightToLeft
1156 : wxLayout_LeftToRight;
08a58133 1157#endif
978af864
VZ
1158}
1159
1160wxCoord
1161wxWindowMSW::AdjustForLayoutDirection(wxCoord x,
1162 wxCoord WXUNUSED(width),
1163 wxCoord WXUNUSED(widthTotal)) const
1164{
1165 // Win32 mirrors the coordinates of RTL windows automatically, so don't
1166 // redo it ourselves
1167 return x;
1168}
1169
42e69d6b
VZ
1170// ---------------------------------------------------------------------------
1171// subclassing
1172// ---------------------------------------------------------------------------
1173
1e6feb95 1174void wxWindowMSW::SubclassWin(WXHWND hWnd)
2bda0e17 1175{
223d09f6 1176 wxASSERT_MSG( !m_oldWndProc, wxT("subclassing window twice?") );
2bda0e17 1177
c50f1fb9 1178 HWND hwnd = (HWND)hWnd;
223d09f6 1179 wxCHECK_RET( ::IsWindow(hwnd), wxT("invalid HWND in SubclassWin") );
c50f1fb9 1180
e322e3b6
VZ
1181 SetHWND(hWnd);
1182
c50f1fb9 1183 wxAssociateWinWithHandle(hwnd, this);
2bda0e17 1184
975b6bcf 1185 m_oldWndProc = (WXFARPROC)wxGetWindowProc((HWND)hWnd);
b2d5a7ee 1186
b225f659
VZ
1187 // we don't need to subclass the window of our own class (in the Windows
1188 // sense of the word)
3a3c8603 1189 if ( !wxCheckWindowWndProc(hWnd, (WXFARPROC)wxWndProc) )
b225f659 1190 {
975b6bcf 1191 wxSetWindowProc(hwnd, wxWndProc);
b225f659
VZ
1192 }
1193 else
1194 {
90e572f1 1195 // don't bother restoring it either: this also makes it easy to
08158721 1196 // implement IsOfStandardClass() method which returns true for the
77ffb593 1197 // standard controls and false for the wxWidgets own windows as it can
5a403e3f 1198 // simply check m_oldWndProc
b225f659
VZ
1199 m_oldWndProc = NULL;
1200 }
e7c652bc
VZ
1201
1202 // we're officially created now, send the event
1203 wxWindowCreateEvent event((wxWindow *)this);
937013e0 1204 (void)HandleWindowEvent(event);
2bda0e17
KB
1205}
1206
1e6feb95 1207void wxWindowMSW::UnsubclassWin()
2bda0e17 1208{
42e69d6b 1209 wxRemoveHandleAssociation(this);
2bda0e17 1210
42e69d6b 1211 // Restore old Window proc
c50f1fb9
VZ
1212 HWND hwnd = GetHwnd();
1213 if ( hwnd )
42e69d6b 1214 {
ed4780ea 1215 SetHWND(0);
c50f1fb9 1216
223d09f6 1217 wxCHECK_RET( ::IsWindow(hwnd), wxT("invalid HWND in UnsubclassWin") );
c50f1fb9 1218
b225f659 1219 if ( m_oldWndProc )
42e69d6b 1220 {
eb5e4d9a 1221 if ( !wxCheckWindowWndProc((WXHWND)hwnd, m_oldWndProc) )
b225f659 1222 {
975b6bcf 1223 wxSetWindowProc(hwnd, (WNDPROC)m_oldWndProc);
b225f659
VZ
1224 }
1225
1226 m_oldWndProc = NULL;
42e69d6b 1227 }
42e69d6b 1228 }
2bda0e17
KB
1229}
1230
a4d1972d 1231void wxWindowMSW::AssociateHandle(WXWidget handle)
ed4780ea
VZ
1232{
1233 if ( m_hWnd )
1234 {
1235 if ( !::DestroyWindow(GetHwnd()) )
43b2d5e7 1236 {
ed4780ea 1237 wxLogLastError(wxT("DestroyWindow"));
43b2d5e7 1238 }
ed4780ea 1239 }
a4d1972d 1240
ed4780ea
VZ
1241 WXHWND wxhwnd = (WXHWND)handle;
1242
e322e3b6 1243 // this also calls SetHWND(wxhwnd)
ed4780ea
VZ
1244 SubclassWin(wxhwnd);
1245}
1246
1247void wxWindowMSW::DissociateHandle()
a4d1972d 1248{
ed4780ea 1249 // this also calls SetHWND(0) for us
a4d1972d 1250 UnsubclassWin();
ed4780ea
VZ
1251}
1252
1253
0c0d1521 1254bool wxCheckWindowWndProc(WXHWND hWnd,
11f104e5 1255 WXFARPROC WXUNUSED(wndProc))
eb5e4d9a 1256{
d9698bd4
VZ
1257 const wxString str(wxGetWindowClass(hWnd));
1258
1259 // TODO: get rid of wxTLWHiddenParent special case (currently it's not
1260 // registered by wxApp but using ad hoc code in msw/toplevel.cpp);
1261 // there is also a hidden window class used by sockets &c
9a83f860 1262 return wxApp::IsRegisteredClassName(str) || str == wxT("wxTLWHiddenParent");
eb5e4d9a
VS
1263}
1264
b2d5a7ee
VZ
1265// ----------------------------------------------------------------------------
1266// Style handling
1267// ----------------------------------------------------------------------------
1268
1269void wxWindowMSW::SetWindowStyleFlag(long flags)
1270{
1271 long flagsOld = GetWindowStyleFlag();
1272 if ( flags == flagsOld )
1273 return;
1274
1275 // update the internal variable
1276 wxWindowBase::SetWindowStyleFlag(flags);
1277
7bd6bf45
VZ
1278 // and the real window flags
1279 MSWUpdateStyle(flagsOld, GetExtraStyle());
1280}
1281
1282void wxWindowMSW::SetExtraStyle(long exflags)
1283{
1284 long exflagsOld = GetExtraStyle();
1285 if ( exflags == exflagsOld )
1286 return;
1287
1288 // update the internal variable
1289 wxWindowBase::SetExtraStyle(exflags);
1290
1291 // and the real window flags
1292 MSWUpdateStyle(GetWindowStyleFlag(), exflagsOld);
1293}
1294
1295void wxWindowMSW::MSWUpdateStyle(long flagsOld, long exflagsOld)
1296{
5b2f31eb
VZ
1297 // now update the Windows style as well if needed - and if the window had
1298 // been already created
1299 if ( !GetHwnd() )
1300 return;
1301
9ce75461
VZ
1302 // we may need to call SetWindowPos() when we change some styles
1303 bool callSWP = false;
1304
7bd6bf45
VZ
1305 WXDWORD exstyle;
1306 long style = MSWGetStyle(GetWindowStyleFlag(), &exstyle);
1307
1308 // this is quite a horrible hack but we need it because MSWGetStyle()
1309 // doesn't take exflags as parameter but uses GetExtraStyle() internally
1310 // and so we have to modify the window exflags temporarily to get the
1311 // correct exstyleOld
1312 long exflagsNew = GetExtraStyle();
1313 wxWindowBase::SetExtraStyle(exflagsOld);
1314
1315 WXDWORD exstyleOld;
1316 long styleOld = MSWGetStyle(flagsOld, &exstyleOld);
1317
1318 wxWindowBase::SetExtraStyle(exflagsNew);
1319
b2d5a7ee
VZ
1320
1321 if ( style != styleOld )
1322 {
1323 // some flags (e.g. WS_VISIBLE or WS_DISABLED) should not be changed by
1324 // this function so instead of simply setting the style to the new
1325 // value we clear the bits which were set in styleOld but are set in
1326 // the new one and set the ones which were not set before
1327 long styleReal = ::GetWindowLong(GetHwnd(), GWL_STYLE);
1328 styleReal &= ~styleOld;
1329 styleReal |= style;
1330
1331 ::SetWindowLong(GetHwnd(), GWL_STYLE, styleReal);
9ce75461 1332
7bd6bf45
VZ
1333 // we need to call SetWindowPos() if any of the styles affecting the
1334 // frame appearance have changed
9ce75461
VZ
1335 callSWP = ((styleOld ^ style ) & (WS_BORDER |
1336 WS_THICKFRAME |
1337 WS_CAPTION |
1338 WS_DLGFRAME |
1339 WS_MAXIMIZEBOX |
1340 WS_MINIMIZEBOX |
1341 WS_SYSMENU) ) != 0;
b2d5a7ee
VZ
1342 }
1343
1344 // and the extended style
d66d0500 1345 long exstyleReal = wxGetWindowExStyle(this);
9ce75461 1346
b2d5a7ee
VZ
1347 if ( exstyle != exstyleOld )
1348 {
b2d5a7ee
VZ
1349 exstyleReal &= ~exstyleOld;
1350 exstyleReal |= exstyle;
1351
d66d0500 1352 wxSetWindowExStyle(this, exstyleReal);
b2d5a7ee 1353
9ce75461
VZ
1354 // ex style changes don't take effect without calling SetWindowPos
1355 callSWP = true;
1356 }
1357
1358 if ( callSWP )
1359 {
85d8df29 1360 // we must call SetWindowPos() to flush the cached extended style and
b2d5a7ee
VZ
1361 // also to make the change to wxSTAY_ON_TOP style take effect: just
1362 // setting the style simply doesn't work
1363 if ( !::SetWindowPos(GetHwnd(),
1364 exstyleReal & WS_EX_TOPMOST ? HWND_TOPMOST
1365 : HWND_NOTOPMOST,
1366 0, 0, 0, 0,
58331be2
VZ
1367 SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE |
1368 SWP_FRAMECHANGED) )
b2d5a7ee 1369 {
9a83f860 1370 wxLogLastError(wxT("SetWindowPos"));
b2d5a7ee
VZ
1371 }
1372 }
1373}
1374
a047aff2
JS
1375wxBorder wxWindowMSW::GetDefaultBorderForControl() const
1376{
28319afe 1377 return wxBORDER_THEME;
a047aff2
JS
1378}
1379
4c0d2cd3
JS
1380wxBorder wxWindowMSW::GetDefaultBorder() const
1381{
dc797d8e 1382 return wxWindowBase::GetDefaultBorder();
4c0d2cd3
JS
1383}
1384
28bf925c 1385// Translate wxBORDER_THEME (and other border styles if necessary) to the value
dc797d8e
JS
1386// that makes most sense for this Windows environment
1387wxBorder wxWindowMSW::TranslateBorder(wxBorder border) const
1388{
1389#if defined(__POCKETPC__) || defined(__SMARTPHONE__)
1390 if (border == wxBORDER_THEME || border == wxBORDER_SUNKEN || border == wxBORDER_SIMPLE)
1391 return wxBORDER_SIMPLE;
1392 else
1393 return wxBORDER_NONE;
1394#else
1395#if wxUSE_UXTHEME
1396 if (border == wxBORDER_THEME)
1397 {
1398 if (CanApplyThemeBorder())
1399 {
1400 wxUxThemeEngine* theme = wxUxThemeEngine::GetIfActive();
1401 if (theme)
1402 return wxBORDER_THEME;
1403 }
28bf925c 1404 return wxBORDER_SUNKEN;
dc797d8e
JS
1405 }
1406#endif
1407 return border;
1408#endif
dc797d8e
JS
1409}
1410
1411
b2d5a7ee
VZ
1412WXDWORD wxWindowMSW::MSWGetStyle(long flags, WXDWORD *exstyle) const
1413{
77ffb593 1414 // translate common wxWidgets styles to Windows ones
af495479
VZ
1415
1416 // most of windows are child ones, those which are not (such as
1417 // wxTopLevelWindow) should remove WS_CHILD in their MSWGetStyle()
1418 WXDWORD style = WS_CHILD;
b2d5a7ee 1419
9b6ae450
VZ
1420 // using this flag results in very significant reduction in flicker,
1421 // especially with controls inside the static boxes (as the interior of the
90e572f1 1422 // box is not redrawn twice), but sometimes results in redraw problems, so
c7e1d004
VZ
1423 // optionally allow the old code to continue to use it provided a special
1424 // system option is turned on
1425 if ( !wxSystemOptions::GetOptionInt(wxT("msw.window.no-clip-children"))
1426 || (flags & wxCLIP_CHILDREN) )
c6430ed0 1427 style |= WS_CLIPCHILDREN;
9b6ae450
VZ
1428
1429 // it doesn't seem useful to use WS_CLIPSIBLINGS here as we officially
1430 // don't support overlapping windows and it only makes sense for them and,
1431 // presumably, gives the system some extra work (to manage more clipping
1432 // regions), so avoid it alltogether
b2d5a7ee 1433
b2d5a7ee 1434
f9007c32
JS
1435 if ( flags & wxVSCROLL )
1436 style |= WS_VSCROLL;
1437
1438 if ( flags & wxHSCROLL )
1439 style |= WS_HSCROLL;
1440
dc797d8e
JS
1441 const wxBorder border = TranslateBorder(GetBorder(flags));
1442
1443 // After translation, border is now optimized for the specific version of Windows
1444 // and theme engine presence.
577baeef 1445
65bc172c
VZ
1446 // WS_BORDER is only required for wxBORDER_SIMPLE
1447 if ( border == wxBORDER_SIMPLE )
b2d5a7ee 1448 style |= WS_BORDER;
577baeef 1449
b2d5a7ee
VZ
1450 // now deal with ext style if the caller wants it
1451 if ( exstyle )
1452 {
1453 *exstyle = 0;
1454
7f0586ef 1455#ifndef __WXWINCE__
b2d5a7ee
VZ
1456 if ( flags & wxTRANSPARENT_WINDOW )
1457 *exstyle |= WS_EX_TRANSPARENT;
7f0586ef 1458#endif
b2d5a7ee 1459
fe3d9123 1460 switch ( border )
b2d5a7ee 1461 {
78cd9c69
JS
1462 default:
1463 case wxBORDER_DEFAULT:
9a83f860 1464 wxFAIL_MSG( wxT("unknown border style") );
78cd9c69 1465 // fall through
b2d5a7ee
VZ
1466
1467 case wxBORDER_NONE:
1468 case wxBORDER_SIMPLE:
78cd9c69 1469 case wxBORDER_THEME:
b2d5a7ee
VZ
1470 break;
1471
1472 case wxBORDER_STATIC:
1473 *exstyle |= WS_EX_STATICEDGE;
1474 break;
1475
1476 case wxBORDER_RAISED:
7699361c 1477 *exstyle |= WS_EX_DLGMODALFRAME;
b2d5a7ee
VZ
1478 break;
1479
b2d5a7ee
VZ
1480 case wxBORDER_SUNKEN:
1481 *exstyle |= WS_EX_CLIENTEDGE;
fe3d9123 1482 style &= ~WS_BORDER;
b2d5a7ee
VZ
1483 break;
1484
78cd9c69
JS
1485// case wxBORDER_DOUBLE:
1486// *exstyle |= WS_EX_DLGMODALFRAME;
1487// break;
b2d5a7ee 1488 }
d515c32d 1489
09168de7 1490 // wxUniv doesn't use Windows dialog navigation functions at all
7f0586ef 1491#if !defined(__WXUNIVERSAL__) && !defined(__WXWINCE__)
5b9c12e1 1492 // to make the dialog navigation work with the nested panels we must
09168de7
VZ
1493 // use this style (top level windows such as dialogs don't need it)
1494 if ( (flags & wxTAB_TRAVERSAL) && !IsTopLevel() )
d515c32d
VZ
1495 {
1496 *exstyle |= WS_EX_CONTROLPARENT;
1497 }
09168de7 1498#endif // __WXUNIVERSAL__
b2d5a7ee
VZ
1499 }
1500
1501 return style;
1502}
eb5e4d9a 1503
42e69d6b 1504// Setup background and foreground colours correctly
1e6feb95 1505void wxWindowMSW::SetupColours()
42e69d6b
VZ
1506{
1507 if ( GetParent() )
1508 SetBackgroundColour(GetParent()->GetBackgroundColour());
1509}
a23fd0e1 1510
1e6feb95
VZ
1511bool wxWindowMSW::IsMouseInWindow() const
1512{
1513 // get the mouse position
1514 POINT pt;
d6c37f5b 1515 wxGetCursorPosMSW(&pt);
1e6feb95
VZ
1516
1517 // find the window which currently has the cursor and go up the window
1518 // chain until we find this window - or exhaust it
1519 HWND hwnd = ::WindowFromPoint(pt);
1520 while ( hwnd && (hwnd != GetHwnd()) )
1521 hwnd = ::GetParent(hwnd);
1522
1523 return hwnd != NULL;
1524}
1525
e39af974 1526void wxWindowMSW::OnInternalIdle()
42e69d6b 1527{
4e5c6c33 1528#ifndef HAVE_TRACKMOUSEEVENT
42e69d6b
VZ
1529 // Check if we need to send a LEAVE event
1530 if ( m_mouseInWindow )
2d0a075d 1531 {
ee74faf9
VZ
1532 // note that we should generate the leave event whether the window has
1533 // or doesn't have mouse capture
1534 if ( !IsMouseInWindow() )
42e69d6b 1535 {
51e4e266 1536 GenerateMouseLeave();
42e69d6b
VZ
1537 }
1538 }
4e5c6c33 1539#endif // !HAVE_TRACKMOUSEEVENT
c085e333 1540
6a50a2c4 1541 wxWindowBase::OnInternalIdle();
42e69d6b 1542}
568cb543 1543
42e69d6b 1544// Set this window to be the child of 'parent'.
1e6feb95 1545bool wxWindowMSW::Reparent(wxWindowBase *parent)
42e69d6b
VZ
1546{
1547 if ( !wxWindowBase::Reparent(parent) )
08158721 1548 return false;
c085e333 1549
42e69d6b
VZ
1550 HWND hWndChild = GetHwnd();
1551 HWND hWndParent = GetParent() ? GetWinHwnd(GetParent()) : (HWND)0;
a23fd0e1 1552
42e69d6b 1553 ::SetParent(hWndChild, hWndParent);
a23fd0e1 1554
ee471817 1555#ifndef __WXWINCE__
d66d0500 1556 if ( wxHasWindowExStyle(this, WS_EX_CONTROLPARENT) )
ee471817
VZ
1557 {
1558 EnsureParentHasControlParentStyle(GetParent());
1559 }
1560#endif // !__WXWINCE__
1561
08158721 1562 return true;
42e69d6b 1563}
a23fd0e1 1564
a0e449ff
VZ
1565static inline void SendSetRedraw(HWND hwnd, bool on)
1566{
c67d6888 1567#ifndef __WXMICROWIN__
a0e449ff 1568 ::SendMessage(hwnd, WM_SETREDRAW, (WPARAM)on, 0);
c67d6888 1569#endif
a0e449ff
VZ
1570}
1571
17808a75 1572void wxWindowMSW::DoFreeze()
a0e449ff 1573{
89267fe5
VS
1574 if ( !IsShown() )
1575 return; // no point in freezing hidden window
1576
1577 SendSetRedraw(GetHwnd(), false);
a0e449ff
VZ
1578}
1579
17808a75 1580void wxWindowMSW::DoThaw()
a0e449ff 1581{
89267fe5
VS
1582 if ( !IsShown() )
1583 return; // hidden windows aren't frozen by DoFreeze
a1037371 1584
89267fe5
VS
1585 SendSetRedraw(GetHwnd(), true);
1586
1587 // we need to refresh everything or otherwise the invalidated area
1588 // is not going to be repainted
1589 Refresh();
a0e449ff
VZ
1590}
1591
1e6feb95 1592void wxWindowMSW::Refresh(bool eraseBack, const wxRect *rect)
42e69d6b
VZ
1593{
1594 HWND hWnd = GetHwnd();
1595 if ( hWnd )
1596 {
d181e053
VZ
1597 RECT mswRect;
1598 const RECT *pRect;
42e69d6b
VZ
1599 if ( rect )
1600 {
f9c980f6 1601 wxCopyRectToRECT(*rect, mswRect);
d181e053 1602 pRect = &mswRect;
42e69d6b
VZ
1603 }
1604 else
d181e053
VZ
1605 {
1606 pRect = NULL;
1607 }
1608
82e3664e 1609 // RedrawWindow not available on SmartPhone or eVC++ 3
41527143 1610#if !defined(__SMARTPHONE__) && !(defined(_WIN32_WCE) && _WIN32_WCE < 400)
d181e053
VZ
1611 UINT flags = RDW_INVALIDATE | RDW_ALLCHILDREN;
1612 if ( eraseBack )
1613 flags |= RDW_ERASE;
1614
1615 ::RedrawWindow(hWnd, pRect, NULL, flags);
480e9098 1616#else
16d652a5 1617 ::InvalidateRect(hWnd, pRect, eraseBack);
480e9098 1618#endif
42e69d6b
VZ
1619 }
1620}
a23fd0e1 1621
1e6feb95
VZ
1622void wxWindowMSW::Update()
1623{
1624 if ( !::UpdateWindow(GetHwnd()) )
1625 {
9a83f860 1626 wxLogLastError(wxT("UpdateWindow"));
1e6feb95 1627 }
2b5f62a0 1628
7f0586ef 1629#if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
1e6feb95
VZ
1630 // just calling UpdateWindow() is not enough, what we did in our WM_PAINT
1631 // handler needs to be really drawn right now
1632 (void)::GdiFlush();
1633#endif // __WIN32__
1634}
1635
42e69d6b
VZ
1636// ---------------------------------------------------------------------------
1637// drag and drop
1638// ---------------------------------------------------------------------------
a23fd0e1 1639
3febc967
VZ
1640#if wxUSE_DRAG_AND_DROP || !defined(__WXWINCE__)
1641
1642#if wxUSE_STATBOX
1643
006b8dff
JG
1644// we need to lower the sibling static boxes so controls contained within can be
1645// a drop target
3febc967 1646static void AdjustStaticBoxZOrder(wxWindow *parent)
006b8dff 1647{
deb0d191
JG
1648 // no sibling static boxes if we have no parent (ie TLW)
1649 if ( !parent )
1650 return;
1651
006b8dff
JG
1652 for ( wxWindowList::compatibility_iterator node = parent->GetChildren().GetFirst();
1653 node;
1654 node = node->GetNext() )
1655 {
1656 wxStaticBox *statbox = wxDynamicCast(node->GetData(), wxStaticBox);
1657 if ( statbox )
1658 {
1659 ::SetWindowPos(GetHwndOf(statbox), HWND_BOTTOM, 0, 0, 0, 0,
1660 SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
1661 }
1662 }
1663}
a23fd0e1 1664
3febc967
VZ
1665#else // !wxUSE_STATBOX
1666
1667static inline void AdjustStaticBoxZOrder(wxWindow * WXUNUSED(parent))
1668{
1669}
1670
1671#endif // wxUSE_STATBOX/!wxUSE_STATBOX
1672
1673#endif // drag and drop is used
1674
4ce1efe1 1675#if wxUSE_DRAG_AND_DROP
1e6feb95 1676void wxWindowMSW::SetDropTarget(wxDropTarget *pDropTarget)
42e69d6b
VZ
1677{
1678 if ( m_dropTarget != 0 ) {
1679 m_dropTarget->Revoke(m_hWnd);
1680 delete m_dropTarget;
1681 }
a23fd0e1 1682
42e69d6b
VZ
1683 m_dropTarget = pDropTarget;
1684 if ( m_dropTarget != 0 )
006b8dff
JG
1685 {
1686 AdjustStaticBoxZOrder(GetParent());
42e69d6b 1687 m_dropTarget->Register(m_hWnd);
006b8dff 1688 }
42e69d6b 1689}
42e69d6b 1690#endif // wxUSE_DRAG_AND_DROP
2a47d3c1 1691
90e572f1 1692// old-style file manager drag&drop support: we retain the old-style
42e69d6b 1693// DragAcceptFiles in parallel with SetDropTarget.
0c0d1521 1694void wxWindowMSW::DragAcceptFiles(bool WXUNUSED_IN_WINCE(accept))
42e69d6b 1695{
0c0d1521 1696#ifndef __WXWINCE__
42e69d6b
VZ
1697 HWND hWnd = GetHwnd();
1698 if ( hWnd )
006b8dff
JG
1699 {
1700 AdjustStaticBoxZOrder(GetParent());
42e69d6b 1701 ::DragAcceptFiles(hWnd, (BOOL)accept);
006b8dff 1702 }
7f0586ef 1703#endif
42e69d6b 1704}
a23fd0e1 1705
42e69d6b
VZ
1706// ----------------------------------------------------------------------------
1707// tooltips
1708// ----------------------------------------------------------------------------
dbda9e86 1709
42e69d6b 1710#if wxUSE_TOOLTIPS
2d0a075d 1711
1e6feb95 1712void wxWindowMSW::DoSetToolTip(wxToolTip *tooltip)
42e69d6b
VZ
1713{
1714 wxWindowBase::DoSetToolTip(tooltip);
839b865d 1715
42e69d6b 1716 if ( m_tooltip )
d4e5272b 1717 m_tooltip->SetWindow((wxWindow *)this);
42e69d6b 1718}
9a05fd8d 1719
42e69d6b 1720#endif // wxUSE_TOOLTIPS
9a05fd8d 1721
42e69d6b
VZ
1722// ---------------------------------------------------------------------------
1723// moving and resizing
1724// ---------------------------------------------------------------------------
839b865d 1725
f7040b5f
VZ
1726bool wxWindowMSW::IsSizeDeferred() const
1727{
6bd9b9f2 1728#if wxUSE_DEFERRED_SIZING
f7040b5f
VZ
1729 if ( m_pendingPosition != wxDefaultPosition ||
1730 m_pendingSize != wxDefaultSize )
1731 return true;
6bd9b9f2 1732#endif // wxUSE_DEFERRED_SIZING
f7040b5f
VZ
1733
1734 return false;
1735}
1736
42e69d6b 1737// Get total size
1e6feb95 1738void wxWindowMSW::DoGetSize(int *x, int *y) const
42e69d6b 1739{
6bd9b9f2 1740#if wxUSE_DEFERRED_SIZING
11cfa8ef
VZ
1741 // if SetSize() had been called at wx level but not realized at Windows
1742 // level yet (i.e. EndDeferWindowPos() not called), we still should return
1743 // the new and not the old position to the other wx code
1744 if ( m_pendingSize != wxDefaultSize )
1745 {
1746 if ( x )
1747 *x = m_pendingSize.x;
1748 if ( y )
1749 *y = m_pendingSize.y;
1750 }
1751 else // use current size
6bd9b9f2 1752#endif // wxUSE_DEFERRED_SIZING
11cfa8ef
VZ
1753 {
1754 RECT rect = wxGetWindowRect(GetHwnd());
82c9f85c 1755
11cfa8ef
VZ
1756 if ( x )
1757 *x = rect.right - rect.left;
1758 if ( y )
1759 *y = rect.bottom - rect.top;
1760 }
42e69d6b
VZ
1761}
1762
82c9f85c
VZ
1763// Get size *available for subwindows* i.e. excluding menu bar etc.
1764void wxWindowMSW::DoGetClientSize(int *x, int *y) const
42e69d6b 1765{
6bd9b9f2 1766#if wxUSE_DEFERRED_SIZING
0d6fdb3c 1767 if ( m_pendingSize != wxDefaultSize )
0d7f75df 1768 {
0d6fdb3c 1769 // we need to calculate the client size corresponding to pending size
e259ce57
VZ
1770 //
1771 // FIXME: Unfortunately this doesn't work correctly for the maximized
1772 // top level windows, the returned values are too small (e.g.
1773 // under Windows 7 on a 1600*1200 screen with task bar on the
1774 // right the pending size for a maximized window is 1538*1200
1775 // and WM_NCCALCSIZE returns 1528*1172 even though the correct
1776 // client size of such window is 1538*1182). No idea how to fix
1777 // it though, setting WS_MAXIMIZE in GWL_STYLE before calling
1778 // WM_NCCALCSIZE doesn't help and AdjustWindowRectEx() doesn't
1779 // work in this direction neither. So we just have to live with
1780 // the slightly wrong results and relayout the window when it
1781 // gets finally shown in its maximized state (see #11762).
dc497201
JG
1782 RECT rect;
1783 rect.left = m_pendingPosition.x;
1784 rect.top = m_pendingPosition.y;
1785 rect.right = rect.left + m_pendingSize.x;
1786 rect.bottom = rect.top + m_pendingSize.y;
1787
1788 ::SendMessage(GetHwnd(), WM_NCCALCSIZE, FALSE, (LPARAM)&rect);
1789
1790 if ( x )
1791 *x = rect.right - rect.left;
1792 if ( y )
1793 *y = rect.bottom - rect.top;
0d7f75df 1794 }
0d6fdb3c 1795 else
6bd9b9f2 1796#endif // wxUSE_DEFERRED_SIZING
0d6fdb3c
VZ
1797 {
1798 RECT rect = wxGetClientRect(GetHwnd());
1799
1800 if ( x )
1801 *x = rect.right;
1802 if ( y )
1803 *y = rect.bottom;
1804 }
352a7d6c
VZ
1805
1806 // The size of the client window can't be negative but ::GetClientRect()
1807 // can return negative size for an extremely small (1x1) window with
1808 // borders so ensure that we correct it here as having negative sizes is
1809 // completely unexpected.
1810 if ( x && *x < 0 )
1811 *x = 0;
1812 if ( y && *y < 0 )
1813 *y = 0;
82c9f85c
VZ
1814}
1815
1816void wxWindowMSW::DoGetPosition(int *x, int *y) const
1817{
a7e0e432
VZ
1818 wxWindow * const parent = GetParent();
1819
1820 wxPoint pos;
9741fd45 1821#if wxUSE_DEFERRED_SIZING
11cfa8ef
VZ
1822 if ( m_pendingPosition != wxDefaultPosition )
1823 {
a7e0e432 1824 pos = m_pendingPosition;
11cfa8ef
VZ
1825 }
1826 else // use current position
9741fd45 1827#endif // wxUSE_DEFERRED_SIZING
11cfa8ef
VZ
1828 {
1829 RECT rect = wxGetWindowRect(GetHwnd());
42e69d6b 1830
11cfa8ef
VZ
1831 POINT point;
1832 point.x = rect.left;
1833 point.y = rect.top;
42e69d6b 1834
11cfa8ef
VZ
1835 // we do the adjustments with respect to the parent only for the "real"
1836 // children, not for the dialogs/frames
1837 if ( !IsTopLevel() )
92049cd4 1838 {
e5b5af91
VZ
1839 if ( wxTheApp->GetLayoutDirection() == wxLayout_RightToLeft )
1840 {
967acfb5 1841 // In RTL mode, we want the logical left x-coordinate,
e5b5af91
VZ
1842 // which would be the physical right x-coordinate.
1843 point.x = rect.right;
1844 }
1845
11cfa8ef
VZ
1846 // Since we now have the absolute screen coords, if there's a
1847 // parent we must subtract its top left corner
11cfa8ef
VZ
1848 if ( parent )
1849 {
a7e0e432 1850 ::ScreenToClient(GetHwndOf(parent), &point);
11cfa8ef 1851 }
89e3037c 1852 }
42e69d6b 1853
a7e0e432
VZ
1854 pos.x = point.x;
1855 pos.y = point.y;
1856 }
1857
1858 // we also must adjust by the client area offset: a control which is just
1859 // under a toolbar could be at (0, 30) in Windows but at (0, 0) in wx
1860 if ( parent && !IsTopLevel() )
1861 {
1862 const wxPoint pt(parent->GetClientAreaOrigin());
1863 pos.x -= pt.x;
1864 pos.y -= pt.y;
11cfa8ef 1865 }
a7e0e432
VZ
1866
1867 if ( x )
1868 *x = pos.x;
1869 if ( y )
1870 *y = pos.y;
42e69d6b 1871}
54bdd8b0 1872
1e6feb95 1873void wxWindowMSW::DoScreenToClient(int *x, int *y) const
42e69d6b
VZ
1874{
1875 POINT pt;
1876 if ( x )
1877 pt.x = *x;
1878 if ( y )
1879 pt.y = *y;
54bdd8b0 1880
82c9f85c 1881 ::ScreenToClient(GetHwnd(), &pt);
a23fd0e1 1882
42e69d6b
VZ
1883 if ( x )
1884 *x = pt.x;
1885 if ( y )
1886 *y = pt.y;
1887}
a23fd0e1 1888
1e6feb95 1889void wxWindowMSW::DoClientToScreen(int *x, int *y) const
42e69d6b
VZ
1890{
1891 POINT pt;
1892 if ( x )
1893 pt.x = *x;
1894 if ( y )
1895 pt.y = *y;
54bdd8b0 1896
82c9f85c 1897 ::ClientToScreen(GetHwnd(), &pt);
a23fd0e1 1898
42e69d6b
VZ
1899 if ( x )
1900 *x = pt.x;
1901 if ( y )
1902 *y = pt.y;
1903}
a23fd0e1 1904
86e30911 1905bool
7d86a2d4
VZ
1906wxWindowMSW::DoMoveSibling(WXHWND hwnd, int x, int y, int width, int height)
1907{
6bd9b9f2 1908#if wxUSE_DEFERRED_SIZING
7d86a2d4
VZ
1909 // if our parent had prepared a defer window handle for us, use it (unless
1910 // we are a top level window)
1911 wxWindowMSW * const parent = IsTopLevel() ? NULL : GetParent();
1912
1913 HDWP hdwp = parent ? (HDWP)parent->m_hDWP : NULL;
1914 if ( hdwp )
1915 {
1916 hdwp = ::DeferWindowPos(hdwp, (HWND)hwnd, NULL, x, y, width, height,
dd28827a 1917 SWP_NOZORDER | SWP_NOOWNERZORDER | SWP_NOACTIVATE);
7d86a2d4
VZ
1918 if ( !hdwp )
1919 {
9a83f860 1920 wxLogLastError(wxT("DeferWindowPos"));
7d86a2d4
VZ
1921 }
1922 }
1923
1924 if ( parent )
1925 {
1926 // hdwp must be updated as it may have been changed
1927 parent->m_hDWP = (WXHANDLE)hdwp;
1928 }
1929
86e30911
VZ
1930 if ( hdwp )
1931 {
1932 // did deferred move, remember new coordinates of the window as they're
1933 // different from what Windows would return for it
1934 return true;
1935 }
1936
7d86a2d4 1937 // otherwise (or if deferring failed) move the window in place immediately
6bd9b9f2 1938#endif // wxUSE_DEFERRED_SIZING
86e30911 1939 if ( !::MoveWindow((HWND)hwnd, x, y, width, height, IsShown()) )
7d86a2d4 1940 {
86e30911 1941 wxLogLastError(wxT("MoveWindow"));
7d86a2d4 1942 }
86e30911 1943
6bd9b9f2 1944 // if wxUSE_DEFERRED_SIZING, indicates that we didn't use deferred move,
86e30911
VZ
1945 // ignored otherwise
1946 return false;
7d86a2d4
VZ
1947}
1948
1e6feb95 1949void wxWindowMSW::DoMoveWindow(int x, int y, int width, int height)
b782f2e0 1950{
62e1ba75
JS
1951 // TODO: is this consistent with other platforms?
1952 // Still, negative width or height shouldn't be allowed
1953 if (width < 0)
1954 width = 0;
1955 if (height < 0)
1956 height = 0;
9b6ae450 1957
86e30911
VZ
1958 if ( DoMoveSibling(m_hWnd, x, y, width, height) )
1959 {
6bd9b9f2 1960#if wxUSE_DEFERRED_SIZING
86e30911
VZ
1961 m_pendingPosition = wxPoint(x, y);
1962 m_pendingSize = wxSize(width, height);
f8cba58b
VZ
1963 }
1964 else // window was moved immediately, without deferring it
1965 {
1966 m_pendingPosition = wxDefaultPosition;
1967 m_pendingSize = wxDefaultSize;
6bd9b9f2 1968#endif // wxUSE_DEFERRED_SIZING
86e30911 1969 }
b782f2e0
VZ
1970}
1971
4438caf4
VZ
1972// set the size of the window: if the dimensions are positive, just use them,
1973// but if any of them is equal to -1, it means that we must find the value for
1974// it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
1975// which case -1 is a valid value for x and y)
1976//
1977// If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
1978// the width/height to best suit our contents, otherwise we reuse the current
1979// width/height
1e6feb95 1980void wxWindowMSW::DoSetSize(int x, int y, int width, int height, int sizeFlags)
42e69d6b 1981{
4438caf4 1982 // get the current size and position...
42e69d6b 1983 int currentX, currentY;
da78f3b1
RD
1984 int currentW, currentH;
1985
42e69d6b 1986 GetPosition(&currentX, &currentY);
42e69d6b 1987 GetSize(&currentW, &currentH);
a23fd0e1 1988
952f2aaa
VZ
1989 // ... and don't do anything (avoiding flicker) if it's already ok unless
1990 // we're forced to resize the window
4438caf4 1991 if ( x == currentX && y == currentY &&
952f2aaa
VZ
1992 width == currentW && height == currentH &&
1993 !(sizeFlags & wxSIZE_FORCE) )
4438caf4 1994 {
e47e063a
RR
1995 if (sizeFlags & wxSIZE_FORCE_EVENT)
1996 {
1997 wxSizeEvent event( wxSize(width,height), GetId() );
1998 event.SetEventObject( this );
1999 HandleWindowEvent( event );
2000 }
42e69d6b 2001 return;
4438caf4 2002 }
a23fd0e1 2003
422d0ff0 2004 if ( x == wxDefaultCoord && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE) )
4438caf4 2005 x = currentX;
422d0ff0 2006 if ( y == wxDefaultCoord && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE) )
4438caf4 2007 y = currentY;
a23fd0e1 2008
4438caf4 2009 AdjustForParentClientOrigin(x, y, sizeFlags);
a23fd0e1 2010
abb74e0f 2011 wxSize size = wxDefaultSize;
422d0ff0 2012 if ( width == wxDefaultCoord )
4438caf4 2013 {
9e2896e5 2014 if ( sizeFlags & wxSIZE_AUTO_WIDTH )
4438caf4 2015 {
4329eae9 2016 size = GetBestSize();
4438caf4
VZ
2017 width = size.x;
2018 }
2019 else
2020 {
2021 // just take the current one
2022 width = currentW;
2023 }
2024 }
2025
422d0ff0 2026 if ( height == wxDefaultCoord )
4438caf4 2027 {
9e2896e5 2028 if ( sizeFlags & wxSIZE_AUTO_HEIGHT )
4438caf4 2029 {
422d0ff0 2030 if ( size.x == wxDefaultCoord )
4438caf4 2031 {
4329eae9 2032 size = GetBestSize();
4438caf4 2033 }
4329eae9 2034 //else: already called GetBestSize() above
a23fd0e1 2035
4438caf4
VZ
2036 height = size.y;
2037 }
2038 else
2039 {
2040 // just take the current one
2041 height = currentH;
2042 }
2043 }
2044
b782f2e0 2045 DoMoveWindow(x, y, width, height);
4438caf4
VZ
2046}
2047
1e6feb95 2048void wxWindowMSW::DoSetClientSize(int width, int height)
42e69d6b 2049{
90e572f1 2050 // setting the client size is less obvious than it could have been
d4597e13 2051 // because in the result of changing the total size the window scrollbar
c72b1ad7
VZ
2052 // may [dis]appear and/or its menubar may [un]wrap (and AdjustWindowRect()
2053 // doesn't take neither into account) and so the client size will not be
2054 // correct as the difference between the total and client size changes --
2055 // so we keep changing it until we get it right
d4597e13 2056 //
d6a97306
VZ
2057 // normally this loop shouldn't take more than 3 iterations (usually 1 but
2058 // if scrollbars [dis]appear as the result of the first call, then 2 and it
2059 // may become 3 if the window had 0 size originally and so we didn't
2060 // calculate the scrollbar correction correctly during the first iteration)
2061 // but just to be on the safe side we check for it instead of making it an
d4597e13 2062 // "infinite" loop (i.e. leaving break inside as the only way to get out)
d6a97306 2063 for ( int i = 0; i < 4; i++ )
d4597e13
VZ
2064 {
2065 RECT rectClient;
2066 ::GetClientRect(GetHwnd(), &rectClient);
2bda0e17 2067
b0268daf 2068 // if the size is already ok, stop here (NB: rectClient.left = top = 0)
422d0ff0
WS
2069 if ( (rectClient.right == width || width == wxDefaultCoord) &&
2070 (rectClient.bottom == height || height == wxDefaultCoord) )
d4597e13
VZ
2071 {
2072 break;
2073 }
a23fd0e1 2074
d4597e13
VZ
2075 // Find the difference between the entire window (title bar and all)
2076 // and the client area; add this to the new client size to move the
2077 // window
2078 RECT rectWin;
2079 ::GetWindowRect(GetHwnd(), &rectWin);
2080
b0268daf
VZ
2081 const int widthWin = rectWin.right - rectWin.left,
2082 heightWin = rectWin.bottom - rectWin.top;
387a3b02 2083
d4597e13
VZ
2084 // MoveWindow positions the child windows relative to the parent, so
2085 // adjust if necessary
2086 if ( !IsTopLevel() )
2087 {
2088 wxWindow *parent = GetParent();
2089 if ( parent )
2090 {
b0268daf 2091 ::ScreenToClient(GetHwndOf(parent), (POINT *)&rectWin);
d4597e13
VZ
2092 }
2093 }
a23fd0e1 2094
b0268daf 2095 // don't call DoMoveWindow() because we want to move window immediately
c72b1ad7
VZ
2096 // and not defer it here as otherwise the value returned by
2097 // GetClient/WindowRect() wouldn't change as the window wouldn't be
2098 // really resized
b0268daf
VZ
2099 if ( !::MoveWindow(GetHwnd(),
2100 rectWin.left,
2101 rectWin.top,
2102 width + widthWin - rectClient.right,
2103 height + heightWin - rectClient.bottom,
2104 TRUE) )
2105 {
9a83f860 2106 wxLogLastError(wxT("MoveWindow"));
b0268daf 2107 }
d4597e13 2108 }
42e69d6b 2109}
a23fd0e1 2110
743b4266
VZ
2111wxSize wxWindowMSW::DoGetBorderSize() const
2112{
2113 wxCoord border;
2114 switch ( GetBorder() )
2115 {
2116 case wxBORDER_STATIC:
2117 case wxBORDER_SIMPLE:
2118 border = 1;
2119 break;
2120
2121 case wxBORDER_SUNKEN:
2122 border = 2;
2123 break;
2124
2125 case wxBORDER_RAISED:
2126 case wxBORDER_DOUBLE:
2127 border = 3;
2128 break;
2129
2130 default:
9a83f860 2131 wxFAIL_MSG( wxT("unknown border style") );
743b4266
VZ
2132 // fall through
2133
2134 case wxBORDER_NONE:
2135 border = 0;
2136 }
2137
2138 return 2*wxSize(border, border);
2139}
2140
42e69d6b
VZ
2141// ---------------------------------------------------------------------------
2142// text metrics
2143// ---------------------------------------------------------------------------
a23fd0e1 2144
1e6feb95 2145int wxWindowMSW::GetCharHeight() const
42e69d6b 2146{
f6bcfd97 2147 return wxGetTextMetrics(this).tmHeight;
42e69d6b 2148}
3eddf563 2149
1e6feb95 2150int wxWindowMSW::GetCharWidth() const
42e69d6b 2151{
f6bcfd97
BP
2152 // +1 is needed because Windows apparently adds it when calculating the
2153 // dialog units size in pixels
2154#if wxDIALOG_UNIT_COMPATIBILITY
1e6feb95 2155 return wxGetTextMetrics(this).tmAveCharWidth;
f6bcfd97
BP
2156#else
2157 return wxGetTextMetrics(this).tmAveCharWidth + 1;
2158#endif
42e69d6b 2159}
f4621a09 2160
6de70470
VZ
2161void wxWindowMSW::DoGetTextExtent(const wxString& string,
2162 int *x, int *y,
2163 int *descent,
2164 int *externalLeading,
2165 const wxFont *fontToUse) const
42e69d6b 2166{
a1b806b9 2167 wxASSERT_MSG( !fontToUse || fontToUse->IsOk(),
9a83f860 2168 wxT("invalid font in GetTextExtent()") );
634903fd 2169
e0448413
VZ
2170 HFONT hfontToUse;
2171 if ( fontToUse )
2172 hfontToUse = GetHfontOf(*fontToUse);
2d17baae 2173 else
e0448413 2174 hfontToUse = GetHfontOf(GetFont());
634903fd 2175
64869ab7 2176 WindowHDC hdc(GetHwnd());
e0448413 2177 SelectInHDC selectFont(hdc, hfontToUse);
341c92a8 2178
42e69d6b
VZ
2179 SIZE sizeRect;
2180 TEXTMETRIC tm;
e0a050e3 2181 ::GetTextExtentPoint32(hdc, string.wx_str(), string.length(), &sizeRect);
64869ab7 2182 GetTextMetrics(hdc, &tm);
42e69d6b 2183
0655ad29
VZ
2184 if ( x )
2185 *x = sizeRect.cx;
2186 if ( y )
2187 *y = sizeRect.cy;
2188 if ( descent )
2189 *descent = tm.tmDescent;
2190 if ( externalLeading )
2191 *externalLeading = tm.tmExternalLeading;
2bda0e17
KB
2192}
2193
c50f1fb9
VZ
2194// ---------------------------------------------------------------------------
2195// popup menu
2196// ---------------------------------------------------------------------------
2197
2e9f62da
VZ
2198#if wxUSE_MENUS_NATIVE
2199
ed45e263
VZ
2200// yield for WM_COMMAND events only, i.e. process all WM_COMMANDs in the queue
2201// immediately, without waiting for the next event loop iteration
2202//
2203// NB: this function should probably be made public later as it can almost
2204// surely replace wxYield() elsewhere as well
2205static void wxYieldForCommandsOnly()
2206{
2207 // peek all WM_COMMANDs (it will always return WM_QUIT too but we don't
2208 // want to process it here)
2209 MSG msg;
1bf77ee5 2210 while ( ::PeekMessage(&msg, (HWND)0, WM_COMMAND, WM_COMMAND, PM_REMOVE) )
ed45e263 2211 {
dd7ebf8b 2212 if ( msg.message == WM_QUIT )
1bf77ee5
VZ
2213 {
2214 // if we retrieved a WM_QUIT, insert back into the message queue.
2215 ::PostQuitMessage(0);
2216 break;
2217 }
7de59551 2218
1bf77ee5
VZ
2219 // luckily (as we don't have access to wxEventLoopImpl method from here
2220 // anyhow...) we don't need to pre process WM_COMMANDs so dispatch it
2221 // immediately
2222 ::TranslateMessage(&msg);
2223 ::DispatchMessage(&msg);
2224 }
ed45e263
VZ
2225}
2226
1e6feb95 2227bool wxWindowMSW::DoPopupMenu(wxMenu *menu, int x, int y)
c50f1fb9 2228{
c50f1fb9
VZ
2229 menu->UpdateUI();
2230
473d0f93 2231 wxPoint pt;
27d2dbbc 2232 if ( x == wxDefaultCoord && y == wxDefaultCoord )
971562cb 2233 {
473d0f93
VZ
2234 pt = wxGetMousePosition();
2235 }
2236 else
2237 {
2238 pt = ClientToScreen(wxPoint(x, y));
971562cb
VS
2239 }
2240
5cb598ae 2241#if defined(__WXWINCE__)
b40bf35c
VZ
2242 static const UINT flags = 0;
2243#else // !__WXWINCE__
2244 UINT flags = TPM_RIGHTBUTTON;
2245 // NT4 doesn't support TPM_RECURSE and simply doesn't show the menu at all
2246 // when it's use, I'm not sure about Win95/98 but prefer to err on the safe
2247 // side and not to use it there neither -- modify the test if it does work
2248 // on these systems
2249 if ( wxGetWinVersion() >= wxWinVersion_5 )
2250 {
2251 // using TPM_RECURSE allows us to show a popup menu while another menu
2252 // is opened which can be useful and is supported by the other
2253 // platforms, so allow it under Windows too
2254 flags |= TPM_RECURSE;
2255 }
2256#endif // __WXWINCE__/!__WXWINCE__
2257
473d0f93 2258 ::TrackPopupMenu(GetHmenuOf(menu), flags, pt.x, pt.y, 0, GetHwnd(), NULL);
ed45e263 2259
90e572f1 2260 // we need to do it right now as otherwise the events are never going to be
ed45e263
VZ
2261 // sent to wxCurrentPopupMenu from HandleCommand()
2262 //
2263 // note that even eliminating (ugly) wxCurrentPopupMenu global wouldn't
2264 // help and we'd still need wxYieldForCommandsOnly() as the menu may be
2265 // destroyed as soon as we return (it can be a local variable in the caller
2266 // for example) and so we do need to process the event immediately
2267 wxYieldForCommandsOnly();
2268
08158721 2269 return true;
c50f1fb9
VZ
2270}
2271
1e6feb95
VZ
2272#endif // wxUSE_MENUS_NATIVE
2273
42e69d6b
VZ
2274// ===========================================================================
2275// pre/post message processing
2276// ===========================================================================
2bda0e17 2277
c140b7e7 2278WXLRESULT wxWindowMSW::MSWDefWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam)
42e69d6b 2279{
1afe4f9b 2280 WXLRESULT rc;
42e69d6b 2281 if ( m_oldWndProc )
1afe4f9b 2282 rc = ::CallWindowProc(CASTWNDPROC m_oldWndProc, GetHwnd(), (UINT) nMsg, (WPARAM) wParam, (LPARAM) lParam);
42e69d6b 2283 else
1afe4f9b
VZ
2284 rc = ::DefWindowProc(GetHwnd(), nMsg, wParam, lParam);
2285
2286 // Special hack used by wxTextEntry auto-completion only: this event is
2287 // sent after the normal keyboard processing so that its handler could use
2288 // the updated contents of the text control, after taking the key that was
2289 // pressed into account.
2290 if ( nMsg == WM_CHAR )
2291 {
2292 wxKeyEvent event(CreateCharEvent(wxEVT_AFTER_CHAR, wParam, lParam));
2293 HandleWindowEvent(event);
2294 }
2295
2296 return rc;
42e69d6b 2297}
2bda0e17 2298
1e6feb95 2299bool wxWindowMSW::MSWProcessMessage(WXMSG* pMsg)
42e69d6b 2300{
1e6feb95
VZ
2301 // wxUniversal implements tab traversal itself
2302#ifndef __WXUNIVERSAL__
42e69d6b 2303 if ( m_hWnd != 0 && (GetWindowStyleFlag() & wxTAB_TRAVERSAL) )
2d0a075d 2304 {
42e69d6b
VZ
2305 // intercept dialog navigation keys
2306 MSG *msg = (MSG *)pMsg;
d9317fd4
VZ
2307
2308 // here we try to do all the job which ::IsDialogMessage() usually does
2309 // internally
573a1586 2310 if ( msg->message == WM_KEYDOWN )
42e69d6b 2311 {
3f7bc32b
VZ
2312 bool bCtrlDown = wxIsCtrlDown();
2313 bool bShiftDown = wxIsShiftDown();
a23fd0e1 2314
42e69d6b
VZ
2315 // WM_GETDLGCODE: ask the control if it wants the key for itself,
2316 // don't process it if it's the case (except for Ctrl-Tab/Enter
2317 // combinations which are always processed)
977f50f3
VZ
2318 LONG lDlgCode = ::SendMessage(msg->hwnd, WM_GETDLGCODE, 0, 0);
2319
cbab1556 2320 // surprisingly, DLGC_WANTALLKEYS bit mask doesn't contain the
977f50f3
VZ
2321 // DLGC_WANTTAB nor DLGC_WANTARROWS bits although, logically,
2322 // it, of course, implies them
2323 if ( lDlgCode & DLGC_WANTALLKEYS )
42e69d6b 2324 {
977f50f3 2325 lDlgCode |= DLGC_WANTTAB | DLGC_WANTARROWS;
42e69d6b 2326 }
a23fd0e1 2327
08158721 2328 bool bForward = true,
298ca00c
VZ
2329 bWindowChange = false,
2330 bFromTab = false;
a23fd0e1 2331
573a1586 2332 // should we process this message specially?
08158721 2333 bool bProcess = true;
9145664b 2334 switch ( msg->wParam )
42e69d6b
VZ
2335 {
2336 case VK_TAB:
7cc44669
VZ
2337 if ( (lDlgCode & DLGC_WANTTAB) && !bCtrlDown )
2338 {
2339 // let the control have the TAB
08158721 2340 bProcess = false;
42e69d6b 2341 }
7cc44669
VZ
2342 else // use it for navigation
2343 {
42e69d6b
VZ
2344 // Ctrl-Tab cycles thru notebook pages
2345 bWindowChange = bCtrlDown;
319fefa9 2346 bForward = !bShiftDown;
298ca00c 2347 bFromTab = true;
42e69d6b
VZ
2348 }
2349 break;
a23fd0e1 2350
42e69d6b
VZ
2351 case VK_UP:
2352 case VK_LEFT:
2353 if ( (lDlgCode & DLGC_WANTARROWS) || bCtrlDown )
08158721 2354 bProcess = false;
42e69d6b 2355 else
08158721 2356 bForward = false;
42e69d6b 2357 break;
a02eb1d2 2358
42e69d6b
VZ
2359 case VK_DOWN:
2360 case VK_RIGHT:
2361 if ( (lDlgCode & DLGC_WANTARROWS) || bCtrlDown )
08158721 2362 bProcess = false;
42e69d6b 2363 break;
2bda0e17 2364
efe5e221
VZ
2365 case VK_PRIOR:
2366 bForward = false;
2367 // fall through
2368
2369 case VK_NEXT:
2370 // we treat PageUp/Dn as arrows because chances are that
2371 // a control which needs arrows also needs them for
2372 // navigation (e.g. wxTextCtrl, wxListCtrl, ...)
ada5f90d 2373 if ( (lDlgCode & DLGC_WANTARROWS) && !bCtrlDown )
efe5e221 2374 bProcess = false;
ada5f90d 2375 else // OTOH Ctrl-PageUp/Dn works as [Shift-]Ctrl-Tab
efe5e221
VZ
2376 bWindowChange = true;
2377 break;
2378
42e69d6b
VZ
2379 case VK_RETURN:
2380 {
90c6edd7 2381#if wxUSE_BUTTON
3147bb58 2382 // currently active button should get enter press even
90c6edd7
VZ
2383 // if there is a default button elsewhere so check if
2384 // this window is a button first
2385 wxWindow *btn = NULL;
3147bb58 2386 if ( lDlgCode & DLGC_DEFPUSHBUTTON )
319fefa9 2387 {
3e79ed96
VZ
2388 // let IsDialogMessage() handle this for all
2389 // buttons except the owner-drawn ones which it
2390 // just seems to ignore
2391 long style = ::GetWindowLong(msg->hwnd, GWL_STYLE);
2392 if ( (style & BS_OWNERDRAW) == BS_OWNERDRAW )
2393 {
2394 // emulate the button click
dca0f651 2395 btn = wxFindWinFromHandle(msg->hwnd);
3e79ed96 2396 }
319fefa9 2397 }
90c6edd7 2398 else // not a button itself, do we have default button?
c50f1fb9 2399 {
8e86978a
VZ
2400 // check if this window or any of its ancestors
2401 // wants the message for itself (we always reserve
2402 // Ctrl-Enter for dialog navigation though)
2403 wxWindow *win = this;
2404 if ( !bCtrlDown )
2405 {
53b0c2bc 2406 // this will contain the dialog code of this
0075ea22 2407 // window and all of its parent windows in turn
53b0c2bc
VZ
2408 LONG lDlgCode2 = lDlgCode;
2409
0075ea22 2410 while ( win )
8e86978a 2411 {
53b0c2bc 2412 if ( lDlgCode2 & DLGC_WANTMESSAGE )
8e86978a
VZ
2413 {
2414 // as it wants to process Enter itself,
2415 // don't call IsDialogMessage() which
2416 // would consume it
2417 return false;
2418 }
2419
0075ea22
VZ
2420 // don't propagate keyboard messages beyond
2421 // the first top level window parent
2422 if ( win->IsTopLevel() )
2423 break;
2424
2425 win = win->GetParent();
2426
53b0c2bc
VZ
2427 lDlgCode2 = ::SendMessage
2428 (
2429 GetHwndOf(win),
2430 WM_GETDLGCODE,
2431 0,
2432 0
2433 );
8e86978a
VZ
2434 }
2435 }
2436 else // bCtrlDown
2437 {
2438 win = wxGetTopLevelParent(win);
2439 }
2440
2441 wxTopLevelWindow * const
2442 tlw = wxDynamicCast(win, wxTopLevelWindow);
6c20e8f8 2443 if ( tlw )
c50f1fb9 2444 {
90c6edd7
VZ
2445 btn = wxDynamicCast(tlw->GetDefaultItem(),
2446 wxButton);
c50f1fb9 2447 }
90c6edd7
VZ
2448 }
2449
2450 if ( btn && btn->IsEnabled() )
2451 {
2452 btn->MSWCommand(BN_CLICKED, 0 /* unused */);
2453 return true;
2454 }
2455
efaf7865
VZ
2456 // This "Return" key press won't be actually used for
2457 // navigation so don't generate wxNavigationKeyEvent
2458 // for it but still pass it to IsDialogMessage() as it
2459 // may handle it in some other way (e.g. by playing the
2460 // default error sound).
2461 bProcess = false;
2462
1e6feb95 2463#endif // wxUSE_BUTTON
90c6edd7 2464
7b504551 2465#ifdef __WXWINCE__
90c6edd7
VZ
2466 // map Enter presses into button presses on PDAs
2467 wxJoystickEvent event(wxEVT_JOY_BUTTON_DOWN);
2468 event.SetEventObject(this);
937013e0 2469 if ( HandleWindowEvent(event) )
90c6edd7
VZ
2470 return true;
2471#endif // __WXWINCE__
42e69d6b
VZ
2472 }
2473 break;
2bda0e17 2474
42e69d6b 2475 default:
08158721 2476 bProcess = false;
42e69d6b 2477 }
2bda0e17 2478
42e69d6b
VZ
2479 if ( bProcess )
2480 {
2481 wxNavigationKeyEvent event;
2482 event.SetDirection(bForward);
2483 event.SetWindowChange(bWindowChange);
298ca00c 2484 event.SetFromTab(bFromTab);
42e69d6b 2485 event.SetEventObject(this);
3572173c 2486
937013e0 2487 if ( HandleWindowEvent(event) )
57c0af52 2488 {
d7e0024b
VZ
2489 // as we don't call IsDialogMessage(), which would take of
2490 // this by default, we need to manually send this message
1ca78aa1
JS
2491 // so that controls can change their UI state if needed
2492 MSWUpdateUIState(UIS_CLEAR, UISF_HIDEFOCUS);
d7e0024b 2493
08158721 2494 return true;
57c0af52 2495 }
42e69d6b
VZ
2496 }
2497 }
a23fd0e1 2498
98ebf919 2499 if ( ::IsDialogMessage(GetHwnd(), msg) )
f6bcfd97 2500 {
98ebf919
VZ
2501 // IsDialogMessage() did something...
2502 return true;
f6bcfd97 2503 }
42e69d6b 2504 }
1e6feb95 2505#endif // __WXUNIVERSAL__
a23fd0e1 2506
42e69d6b
VZ
2507#if wxUSE_TOOLTIPS
2508 if ( m_tooltip )
387a3b02 2509 {
42e69d6b
VZ
2510 // relay mouse move events to the tooltip control
2511 MSG *msg = (MSG *)pMsg;
2512 if ( msg->message == WM_MOUSEMOVE )
259a4264 2513 wxToolTip::RelayEvent(pMsg);
387a3b02 2514 }
42e69d6b 2515#endif // wxUSE_TOOLTIPS
a23fd0e1 2516
08158721 2517 return false;
387a3b02
JS
2518}
2519
1e6feb95 2520bool wxWindowMSW::MSWTranslateMessage(WXMSG* pMsg)
387a3b02 2521{
1e6feb95 2522#if wxUSE_ACCEL && !defined(__WXUNIVERSAL__)
c50f1fb9 2523 return m_acceleratorTable.Translate(this, pMsg);
1e6feb95 2524#else
574c939e 2525 (void) pMsg;
08158721 2526 return false;
1e6feb95 2527#endif // wxUSE_ACCEL
387a3b02
JS
2528}
2529
98ebf919 2530bool wxWindowMSW::MSWShouldPreProcessMessage(WXMSG* msg)
a37d422a 2531{
98ebf919
VZ
2532 // all tests below have to deal with various bugs/misfeatures of
2533 // IsDialogMessage(): we have to prevent it from being called from our
2534 // MSWProcessMessage() in some situations
2535
2536 // don't let IsDialogMessage() get VK_ESCAPE as it _always_ eats the
2537 // message even when there is no cancel button and when the message is
2538 // needed by the control itself: in particular, it prevents the tree in
2539 // place edit control from being closed with Escape in a dialog
2540 if ( msg->message == WM_KEYDOWN && msg->wParam == VK_ESCAPE )
2541 {
2542 return false;
2543 }
2544
2545 // ::IsDialogMessage() is broken and may sometimes hang the application by
2546 // going into an infinite loop when it tries to find the control to give
2547 // focus to when Alt-<key> is pressed, so we try to detect [some of] the
2548 // situations when this may happen and not call it then
2549 if ( msg->message != WM_SYSCHAR )
2550 return true;
2551
2552 // assume we can call it by default
2553 bool canSafelyCallIsDlgMsg = true;
2554
2555 HWND hwndFocus = ::GetFocus();
2556
2557 // if the currently focused window itself has WS_EX_CONTROLPARENT style,
2558 // ::IsDialogMessage() will also enter an infinite loop, because it will
2559 // recursively check the child windows but not the window itself and so if
2560 // none of the children accepts focus it loops forever (as it only stops
2561 // when it gets back to the window it started from)
2562 //
2563 // while it is very unusual that a window with WS_EX_CONTROLPARENT
2564 // style has the focus, it can happen. One such possibility is if
2565 // all windows are either toplevel, wxDialog, wxPanel or static
2566 // controls and no window can actually accept keyboard input.
2567#if !defined(__WXWINCE__)
2568 if ( ::GetWindowLong(hwndFocus, GWL_EXSTYLE) & WS_EX_CONTROLPARENT )
2569 {
2570 // pessimistic by default
2571 canSafelyCallIsDlgMsg = false;
2572 for ( wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
2573 node;
2574 node = node->GetNext() )
2575 {
2576 wxWindow * const win = node->GetData();
ad02525d 2577 if ( win->CanAcceptFocus() &&
d66d0500 2578 !wxHasWindowExStyle(win, WS_EX_CONTROLPARENT) )
98ebf919
VZ
2579 {
2580 // it shouldn't hang...
2581 canSafelyCallIsDlgMsg = true;
2582
2583 break;
2584 }
2585 }
2586 }
2587#endif // !__WXWINCE__
2588
2589 if ( canSafelyCallIsDlgMsg )
2590 {
2591 // ::IsDialogMessage() can enter in an infinite loop when the
2592 // currently focused window is disabled or hidden and its
2593 // parent has WS_EX_CONTROLPARENT style, so don't call it in
2594 // this case
2595 while ( hwndFocus )
2596 {
2597 if ( !::IsWindowEnabled(hwndFocus) ||
2598 !::IsWindowVisible(hwndFocus) )
2599 {
2600 // it would enter an infinite loop if we do this!
2601 canSafelyCallIsDlgMsg = false;
2602
2603 break;
2604 }
2605
2606 if ( !(::GetWindowLong(hwndFocus, GWL_STYLE) & WS_CHILD) )
2607 {
2608 // it's a top level window, don't go further -- e.g. even
2609 // if the parent of a dialog is disabled, this doesn't
2610 // break navigation inside the dialog
2611 break;
2612 }
2613
2614 hwndFocus = ::GetParent(hwndFocus);
2615 }
2616 }
2617
2618 return canSafelyCallIsDlgMsg;
a37d422a
VZ
2619}
2620
42e69d6b 2621// ---------------------------------------------------------------------------
e39af974 2622// message params unpackers
42e69d6b 2623// ---------------------------------------------------------------------------
2bda0e17 2624
1e6feb95 2625void wxWindowMSW::UnpackCommand(WXWPARAM wParam, WXLPARAM lParam,
42e69d6b
VZ
2626 WORD *id, WXHWND *hwnd, WORD *cmd)
2627{
2628 *id = LOWORD(wParam);
2629 *hwnd = (WXHWND)lParam;
2630 *cmd = HIWORD(wParam);
2bda0e17
KB
2631}
2632
1e6feb95 2633void wxWindowMSW::UnpackActivate(WXWPARAM wParam, WXLPARAM lParam,
42e69d6b 2634 WXWORD *state, WXWORD *minimized, WXHWND *hwnd)
2bda0e17 2635{
42e69d6b
VZ
2636 *state = LOWORD(wParam);
2637 *minimized = HIWORD(wParam);
2638 *hwnd = (WXHWND)lParam;
2bda0e17
KB
2639}
2640
1e6feb95 2641void wxWindowMSW::UnpackScroll(WXWPARAM wParam, WXLPARAM lParam,
42e69d6b 2642 WXWORD *code, WXWORD *pos, WXHWND *hwnd)
2bda0e17 2643{
42e69d6b
VZ
2644 *code = LOWORD(wParam);
2645 *pos = HIWORD(wParam);
2646 *hwnd = (WXHWND)lParam;
2647}
a23fd0e1 2648
1e6feb95 2649void wxWindowMSW::UnpackCtlColor(WXWPARAM wParam, WXLPARAM lParam,
01c500af 2650 WXHDC *hdc, WXHWND *hwnd)
42e69d6b 2651{
42e69d6b
VZ
2652 *hwnd = (WXHWND)lParam;
2653 *hdc = (WXHDC)wParam;
2bda0e17
KB
2654}
2655
1e6feb95 2656void wxWindowMSW::UnpackMenuSelect(WXWPARAM wParam, WXLPARAM lParam,
42e69d6b 2657 WXWORD *item, WXWORD *flags, WXHMENU *hmenu)
2bda0e17 2658{
42e69d6b
VZ
2659 *item = (WXWORD)wParam;
2660 *flags = HIWORD(wParam);
2661 *hmenu = (WXHMENU)lParam;
2662}
c085e333 2663
42e69d6b 2664// ---------------------------------------------------------------------------
77ffb593 2665// Main wxWidgets window proc and the window proc for wxWindow
42e69d6b 2666// ---------------------------------------------------------------------------
2bda0e17 2667
42e69d6b
VZ
2668// Hook for new window just as it's being created, when the window isn't yet
2669// associated with the handle
b225f659
VZ
2670static wxWindowMSW *gs_winBeingCreated = NULL;
2671
2672// implementation of wxWindowCreationHook class: it just sets gs_winBeingCreated to the
2673// window being created and insures that it's always unset back later
2674wxWindowCreationHook::wxWindowCreationHook(wxWindowMSW *winBeingCreated)
2675{
2676 gs_winBeingCreated = winBeingCreated;
2677}
2678
2679wxWindowCreationHook::~wxWindowCreationHook()
2680{
2681 gs_winBeingCreated = NULL;
2682}
42e69d6b
VZ
2683
2684// Main window proc
3135f4a7 2685LRESULT WXDLLEXPORT APIENTRY _EXPORT wxWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
2bda0e17 2686{
4b6a582b
VZ
2687 // trace all messages: useful for the debugging but noticeably slows down
2688 // the code so don't do it by default
2689#if wxDEBUG_LEVEL >= 2
ef787038
VZ
2690 // notice that we cast wParam and lParam to long to avoid mismatch with
2691 // format specifiers in 64 bit builds where they are both int64 quantities
2692 //
2693 // casting like this loses information, of course, but it shouldn't matter
2694 // much for this diagnostic code and it keeps the code simple
5ec3853f 2695 wxLogTrace("winmsg",
dca0f651 2696 wxT("Processing %s(hWnd=%p, wParam=%08lx, lParam=%08lx)"),
ef787038 2697 wxGetMessageName(message), hWnd, (long)wParam, (long)lParam);
4b6a582b 2698#endif // wxDEBUG_LEVEL >= 2
2bda0e17 2699
dca0f651 2700 wxWindowMSW *wnd = wxFindWinFromHandle(hWnd);
c085e333 2701
42e69d6b 2702 // when we get the first message for the HWND we just created, we associate
b225f659
VZ
2703 // it with wxWindow stored in gs_winBeingCreated
2704 if ( !wnd && gs_winBeingCreated )
2d0a075d 2705 {
b225f659
VZ
2706 wxAssociateWinWithHandle(hWnd, gs_winBeingCreated);
2707 wnd = gs_winBeingCreated;
2708 gs_winBeingCreated = NULL;
42e69d6b 2709 wnd->SetHWND((WXHWND)hWnd);
2d0a075d 2710 }
2bda0e17 2711
42e69d6b 2712 LRESULT rc;
a23fd0e1 2713
b46b1d59 2714 if ( wnd && wxGUIEventLoop::AllowProcessing(wnd) )
b225f659 2715 rc = wnd->MSWWindowProc(message, wParam, lParam);
a23fd0e1 2716 else
b225f659 2717 rc = ::DefWindowProc(hWnd, message, wParam, lParam);
2bda0e17 2718
42e69d6b 2719 return rc;
f7bd2698
JS
2720}
2721
2e1cee23
VZ
2722bool
2723wxWindowMSW::MSWHandleMessage(WXLRESULT *result,
2724 WXUINT message,
2725 WXWPARAM wParam,
2726 WXLPARAM lParam)
f7bd2698 2727{
42e69d6b 2728 // did we process the message?
08158721 2729 bool processed = false;
f7bd2698 2730
42e69d6b
VZ
2731 // the return value
2732 union
2bda0e17 2733 {
42e69d6b 2734 bool allow;
c140b7e7 2735 WXLRESULT result;
42e69d6b
VZ
2736 WXHBRUSH hBrush;
2737 } rc;
2bda0e17 2738
42e69d6b
VZ
2739 // for most messages we should return 0 when we do process the message
2740 rc.result = 0;
2bda0e17 2741
42e69d6b 2742 switch ( message )
39136494 2743 {
42e69d6b
VZ
2744 case WM_CREATE:
2745 {
2746 bool mayCreate;
2747 processed = HandleCreate((WXLPCREATESTRUCT)lParam, &mayCreate);
2748 if ( processed )
2749 {
2750 // return 0 to allow window creation
2751 rc.result = mayCreate ? 0 : -1;
2752 }
2753 }
2754 break;
47cbd6da 2755
42e69d6b 2756 case WM_DESTROY:
08158721 2757 // never set processed to true and *always* pass WM_DESTROY to
ad4297f3
VZ
2758 // DefWindowProc() as Windows may do some internal cleanup when
2759 // processing it and failing to pass the message along may cause
2760 // memory and resource leaks!
2761 (void)HandleDestroy();
42e69d6b
VZ
2762 break;
2763
9b6ae450
VZ
2764 case WM_SIZE:
2765 processed = HandleSize(LOWORD(lParam), HIWORD(lParam), wParam);
9b6ae450
VZ
2766 break;
2767
42e69d6b 2768 case WM_MOVE:
132cb640 2769 processed = HandleMove(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam));
42e69d6b 2770 break;
47cbd6da 2771
7f0586ef 2772#if !defined(__WXWINCE__)
5706de1c 2773 case WM_MOVING:
540b6b09
VZ
2774 {
2775 LPRECT pRect = (LPRECT)lParam;
2776 wxRect rc;
2777 rc.SetLeft(pRect->left);
2778 rc.SetTop(pRect->top);
2779 rc.SetRight(pRect->right);
2780 rc.SetBottom(pRect->bottom);
2781 processed = HandleMoving(rc);
2782 if (processed) {
2783 pRect->left = rc.GetLeft();
2784 pRect->top = rc.GetTop();
2785 pRect->right = rc.GetRight();
2786 pRect->bottom = rc.GetBottom();
2787 }
2788 }
5706de1c 2789 break;
77211166 2790
aa767a45
JS
2791 case WM_ENTERSIZEMOVE:
2792 {
2793 processed = HandleEnterSizeMove();
2794 }
2795 break;
2796
2797 case WM_EXITSIZEMOVE:
2798 {
2799 processed = HandleExitSizeMove();
2800 }
2801 break;
77211166 2802
5706de1c
JS
2803 case WM_SIZING:
2804 {
2805 LPRECT pRect = (LPRECT)lParam;
2806 wxRect rc;
2807 rc.SetLeft(pRect->left);
2808 rc.SetTop(pRect->top);
2809 rc.SetRight(pRect->right);
2810 rc.SetBottom(pRect->bottom);
2811 processed = HandleSizing(rc);
2812 if (processed) {
2813 pRect->left = rc.GetLeft();
2814 pRect->top = rc.GetTop();
2815 pRect->right = rc.GetRight();
2816 pRect->bottom = rc.GetBottom();
2817 }
2818 }
2819 break;
9b6ae450 2820#endif // !__WXWINCE__
5706de1c 2821
7f0586ef 2822#if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
1e6feb95 2823 case WM_ACTIVATEAPP:
afafd942 2824 // This implicitly sends a wxEVT_ACTIVATE_APP event
1e6feb95 2825 wxTheApp->SetActive(wParam != 0, FindFocus());
42e69d6b 2826 break;
8a46f9b1 2827#endif
47cbd6da 2828
42e69d6b 2829 case WM_ACTIVATE:
341c92a8 2830 {
42e69d6b
VZ
2831 WXWORD state, minimized;
2832 WXHWND hwnd;
2833 UnpackActivate(wParam, lParam, &state, &minimized, &hwnd);
2834
2835 processed = HandleActivate(state, minimized != 0, (WXHWND)hwnd);
341c92a8 2836 }
42e69d6b 2837 break;
341c92a8 2838
42e69d6b 2839 case WM_SETFOCUS:
dca0f651 2840 processed = HandleSetFocus((WXHWND)wParam);
42e69d6b 2841 break;
47cbd6da 2842
42e69d6b 2843 case WM_KILLFOCUS:
dca0f651 2844 processed = HandleKillFocus((WXHWND)wParam);
42e69d6b 2845 break;
47cbd6da 2846
c3732409 2847 case WM_PRINTCLIENT:
1a784dfc 2848 processed = HandlePrintClient((WXHDC)wParam);
07c19327
VZ
2849 break;
2850
c3732409
VZ
2851 case WM_PAINT:
2852 if ( wParam )
5c6c3176 2853 {
5c6c3176 2854 wxPaintDCEx dc((wxWindow *)this, (WXHDC)wParam);
07c19327 2855
5c6c3176
RD
2856 processed = HandlePaint();
2857 }
c3732409
VZ
2858 else // no DC given
2859 {
2860 processed = HandlePaint();
2861 }
5c6c3176
RD
2862 break;
2863
42e69d6b 2864 case WM_CLOSE:
9fd9e47a
JS
2865#ifdef __WXUNIVERSAL__
2866 // Universal uses its own wxFrame/wxDialog, so we don't receive
2867 // close events unless we have this.
2868 Close();
c3732409
VZ
2869#endif // __WXUNIVERSAL__
2870
42e69d6b
VZ
2871 // don't let the DefWindowProc() destroy our window - we'll do it
2872 // ourselves in ~wxWindow
08158721 2873 processed = true;
42e69d6b
VZ
2874 rc.result = TRUE;
2875 break;
47cbd6da 2876
42e69d6b
VZ
2877 case WM_SHOWWINDOW:
2878 processed = HandleShow(wParam != 0, (int)lParam);
2879 break;
3a19e16d 2880
42e69d6b 2881 case WM_MOUSEMOVE:
132cb640
VZ
2882 processed = HandleMouseMove(GET_X_LPARAM(lParam),
2883 GET_Y_LPARAM(lParam),
2884 wParam);
2885 break;
0d0512bd 2886
4e5c6c33 2887#ifdef HAVE_TRACKMOUSEEVENT
e5297b7f 2888 case WM_MOUSELEAVE:
aafb9978
VZ
2889 // filter out excess WM_MOUSELEAVE events sent after PopupMenu()
2890 // (on XP at least)
4e5c6c33 2891 if ( m_mouseInWindow )
e5297b7f 2892 {
4e5c6c33 2893 GenerateMouseLeave();
e5297b7f 2894 }
4e5c6c33
VZ
2895
2896 // always pass processed back as false, this allows the window
2897 // manager to process the message too. This is needed to
2898 // ensure windows XP themes work properly as the mouse moves
2899 // over widgets like buttons. So don't set processed to true here.
51e4e266 2900 break;
4e5c6c33 2901#endif // HAVE_TRACKMOUSEEVENT
35bbb0c6 2902
d2c52078
RD
2903#if wxUSE_MOUSEWHEEL
2904 case WM_MOUSEWHEEL:
2905 processed = HandleMouseWheel(wParam, lParam);
2906 break;
2907#endif
2908
42e69d6b
VZ
2909 case WM_LBUTTONDOWN:
2910 case WM_LBUTTONUP:
2911 case WM_LBUTTONDBLCLK:
2912 case WM_RBUTTONDOWN:
2913 case WM_RBUTTONUP:
2914 case WM_RBUTTONDBLCLK:
2915 case WM_MBUTTONDOWN:
2916 case WM_MBUTTONUP:
2917 case WM_MBUTTONDBLCLK:
2f68482e 2918#ifdef wxHAS_XBUTTON
01101e2d
VZ
2919 case WM_XBUTTONDOWN:
2920 case WM_XBUTTONUP:
2921 case WM_XBUTTONDBLCLK:
2f68482e 2922#endif // wxHAS_XBUTTON
dfafa702 2923 {
98363307 2924#ifdef __WXMICROWIN__
cd4453e5
VZ
2925 // MicroWindows seems to ignore the fact that a window is
2926 // disabled. So catch mouse events and throw them away if
2927 // necessary.
d0a3d109 2928 wxWindowMSW* win = this;
dfafa702 2929 for ( ;; )
d0a3d109
VZ
2930 {
2931 if (!win->IsEnabled())
2932 {
08158721 2933 processed = true;
d0a3d109
VZ
2934 break;
2935 }
dfafa702 2936
d0a3d109 2937 win = win->GetParent();
dfafa702 2938 if ( !win || win->IsTopLevel() )
d0a3d109
VZ
2939 break;
2940 }
dfafa702 2941
03e0b2b1
VZ
2942 if ( processed )
2943 break;
2944
dfafa702 2945#endif // __WXMICROWIN__
03e0b2b1
VZ
2946 int x = GET_X_LPARAM(lParam),
2947 y = GET_Y_LPARAM(lParam);
dfafa702 2948
42b1fb63 2949#ifdef __WXWINCE__
03e0b2b1 2950 // redirect the event to a static control if necessary by
42b1fb63
VZ
2951 // finding one under mouse because under CE the static controls
2952 // don't generate mouse events (even with SS_NOTIFY)
03e0b2b1
VZ
2953 wxWindowMSW *win;
2954 if ( GetCapture() == this )
2955 {
2956 // but don't do it if the mouse is captured by this window
2957 // because then it should really get this event itself
2958 win = this;
d0a3d109 2959 }
03e0b2b1
VZ
2960 else
2961 {
2962 win = FindWindowForMouseEvent(this, &x, &y);
2b5f62a0
VZ
2963
2964 // this should never happen
2965 wxCHECK_MSG( win, 0,
9a83f860 2966 wxT("FindWindowForMouseEvent() returned NULL") );
9f011847 2967 }
7d4f65e3
JS
2968#ifdef __POCKETPC__
2969 if (IsContextMenuEnabled() && message == WM_LBUTTONDOWN)
2970 {
2971 SHRGINFO shrgi = {0};
faa94f3e 2972
7d4f65e3
JS
2973 shrgi.cbSize = sizeof(SHRGINFO);
2974 shrgi.hwndClient = (HWND) GetHWND();
2975 shrgi.ptDown.x = x;
2976 shrgi.ptDown.y = y;
faa94f3e 2977
7d4f65e3
JS
2978 shrgi.dwFlags = SHRG_RETURNCMD;
2979 // shrgi.dwFlags = SHRG_NOTIFYPARENT;
faa94f3e 2980
7d4f65e3
JS
2981 if (GN_CONTEXTMENU == ::SHRecognizeGesture(&shrgi))
2982 {
2983 wxPoint pt(x, y);
2984 pt = ClientToScreen(pt);
faa94f3e 2985
7d4f65e3 2986 wxContextMenuEvent evtCtx(wxEVT_CONTEXT_MENU, GetId(), pt);
faa94f3e 2987
7d4f65e3 2988 evtCtx.SetEventObject(this);
937013e0 2989 if (HandleWindowEvent(evtCtx))
f350d4b2 2990 {
7d4f65e3 2991 processed = true;
f350d4b2
JS
2992 return true;
2993 }
7d4f65e3
JS
2994 }
2995 }
2996#endif
2997
42b1fb63
VZ
2998#else // !__WXWINCE__
2999 wxWindowMSW *win = this;
3000#endif // __WXWINCE__/!__WXWINCE__
9f011847
VZ
3001
3002 processed = win->HandleMouseEvent(message, x, y, wParam);
2b5f62a0 3003
9f011847
VZ
3004 // if the app didn't eat the event, handle it in the default
3005 // way, that is by giving this window the focus
3006 if ( !processed )
3007 {
2b5f62a0
VZ
3008 // for the standard classes their WndProc sets the focus to
3009 // them anyhow and doing it from here results in some weird
9f011847 3010 // problems, so don't do it for them (unnecessary anyhow)
2b5f62a0
VZ
3011 if ( !win->IsOfStandardClass() )
3012 {
edc09871 3013 if ( message == WM_LBUTTONDOWN && win->IsFocusable() )
2b5f62a0
VZ
3014 win->SetFocus();
3015 }
03e0b2b1 3016 }
98363307 3017 }
dfafa702 3018 break;
d0a3d109 3019
cd4453e5 3020#ifdef MM_JOY1MOVE
42e69d6b
VZ
3021 case MM_JOY1MOVE:
3022 case MM_JOY2MOVE:
3023 case MM_JOY1ZMOVE:
3024 case MM_JOY2ZMOVE:
3025 case MM_JOY1BUTTONDOWN:
3026 case MM_JOY2BUTTONDOWN:
3027 case MM_JOY1BUTTONUP:
3028 case MM_JOY2BUTTONUP:
132cb640
VZ
3029 processed = HandleJoystickEvent(message,
3030 GET_X_LPARAM(lParam),
3031 GET_Y_LPARAM(lParam),
3032 wParam);
42e69d6b 3033 break;
cd4453e5 3034#endif // __WXMICROWIN__
47cbd6da 3035
42e69d6b
VZ
3036 case WM_COMMAND:
3037 {
3038 WORD id, cmd;
3039 WXHWND hwnd;
3040 UnpackCommand(wParam, lParam, &id, &hwnd, &cmd);
47cbd6da 3041
42e69d6b
VZ
3042 processed = HandleCommand(id, cmd, hwnd);
3043 }
3044 break;
7d532b0c 3045
42e69d6b
VZ
3046 case WM_NOTIFY:
3047 processed = HandleNotify((int)wParam, lParam, &rc.result);
3048 break;
2bda0e17 3049
27005f3a
VZ
3050 // we only need to reply to WM_NOTIFYFORMAT manually when using MSLU,
3051 // otherwise DefWindowProc() does it perfectly fine for us, but MSLU
3052 // apparently doesn't always behave properly and needs some help
3053#if wxUSE_UNICODE_MSLU && defined(NF_QUERY)
3054 case WM_NOTIFYFORMAT:
3055 if ( lParam == NF_QUERY )
3056 {
3057 processed = true;
3058 rc.result = NFR_UNICODE;
3059 }
3060 break;
3061#endif // wxUSE_UNICODE_MSLU
3062
08158721 3063 // for these messages we must return true if process the message
cd4453e5 3064#ifdef WM_DRAWITEM
42e69d6b 3065 case WM_DRAWITEM:
dca0f651
VZ
3066 processed = MSWOnDrawItem(wParam, (WXDRAWITEMSTRUCT *)lParam);
3067 if ( processed )
3068 rc.result = TRUE;
3069 break;
57a7b7c1 3070
dca0f651
VZ
3071 case WM_MEASUREITEM:
3072 processed = MSWOnMeasureItem(wParam, (WXMEASUREITEMSTRUCT *)lParam);
3073 if ( processed )
3074 rc.result = TRUE;
42e69d6b 3075 break;
cd4453e5
VZ
3076#endif // defined(WM_DRAWITEM)
3077
9bf84618 3078 case WM_GETDLGCODE:
ff7282e1 3079 if ( !IsOfStandardClass() || HasFlag(wxWANTS_CHARS) )
9bf84618 3080 {
5a403e3f
VZ
3081 // we always want to get the char events
3082 rc.result = DLGC_WANTCHARS;
3083
ff7282e1 3084 if ( HasFlag(wxWANTS_CHARS) )
5a403e3f
VZ
3085 {
3086 // in fact, we want everything
3087 rc.result |= DLGC_WANTARROWS |
3088 DLGC_WANTTAB |
3089 DLGC_WANTALLKEYS;
3090 }
3091
08158721 3092 processed = true;
9bf84618 3093 }
101f488c 3094 //else: get the dlg code from the DefWindowProc()
9bf84618
VZ
3095 break;
3096
4004f41e 3097 case WM_SYSKEYDOWN:
42e69d6b 3098 case WM_KEYDOWN:
b6885972 3099 // Generate the key down event in any case.
9c7df356
VZ
3100 m_lastKeydownProcessed = HandleKeyDown((WORD) wParam, lParam);
3101 if ( m_lastKeydownProcessed )
2d0a075d 3102 {
b6885972
VZ
3103 // If it was processed by an event handler, we stop here,
3104 // notably we intentionally don't generate char event then.
08158721 3105 processed = true;
2d0a075d 3106 }
b6885972 3107 else // key down event not handled
42e69d6b 3108 {
b6885972
VZ
3109 // Examine the event to decide whether we need to generate a
3110 // char event for it ourselves or let Windows do it. Window
3111 // mostly only does it for the keys which produce printable
3112 // characters (although there are exceptions, e.g. VK_ESCAPE or
3113 // VK_BACK (but not VK_DELETE)) while we do it for all keys
3114 // except the modifier ones (the wisdom of this is debatable
3115 // but by now this decision is enshrined forever due to
3116 // backwards compatibility).
2b5f62a0
VZ
3117 switch ( wParam )
3118 {
b6885972 3119 // No wxEVT_CHAR events are generated for these keys at all.
2b5f62a0
VZ
3120 case VK_SHIFT:
3121 case VK_CONTROL:
3122 case VK_MENU:
3123 case VK_CAPITAL:
3124 case VK_NUMLOCK:
3125 case VK_SCROLL:
2bda0e17 3126
b6885972
VZ
3127 // Windows will send us WM_CHAR for these ones so we'll
3128 // generate wxEVT_CHAR for them later when we get it.
2b5f62a0
VZ
3129 case VK_ESCAPE:
3130 case VK_SPACE:
3131 case VK_RETURN:
3132 case VK_BACK:
3133 case VK_TAB:
3134 case VK_ADD:
3135 case VK_SUBTRACT:
3136 case VK_MULTIPLY:
3137 case VK_DIVIDE:
7fd86b21 3138 case VK_DECIMAL:
3f2174bb
VZ
3139 case VK_NUMPAD0:
3140 case VK_NUMPAD1:
3141 case VK_NUMPAD2:
3142 case VK_NUMPAD3:
3143 case VK_NUMPAD4:
3144 case VK_NUMPAD5:
3145 case VK_NUMPAD6:
3146 case VK_NUMPAD7:
3147 case VK_NUMPAD8:
3148 case VK_NUMPAD9:
2b5f62a0
VZ
3149 case VK_OEM_1:
3150 case VK_OEM_2:
3151 case VK_OEM_3:
3152 case VK_OEM_4:
3153 case VK_OEM_5:
3154 case VK_OEM_6:
3155 case VK_OEM_7:
3156 case VK_OEM_PLUS:
3157 case VK_OEM_COMMA:
3158 case VK_OEM_MINUS:
3159 case VK_OEM_PERIOD:
2b5f62a0 3160 break;
2bda0e17 3161
42e69d6b 3162#ifdef VK_APPS
2b5f62a0
VZ
3163 // special case of VK_APPS: treat it the same as right mouse
3164 // click because both usually pop up a context menu
3165 case VK_APPS:
ae177b45 3166 processed = HandleMouseEvent(WM_RBUTTONDOWN, -1, -1, 0);
2b5f62a0 3167 break;
42e69d6b 3168#endif // VK_APPS
2bda0e17 3169
2b5f62a0 3170 default:
b6885972
VZ
3171 if ( (wParam >= '0' && wParam <= '9') ||
3172 (wParam >= 'A' && wParam <= 'Z') )
3173 {
3174 // We'll get WM_CHAR for those later too.
3175 break;
3176 }
3177
3178 // But for the rest we won't get WM_CHAR later so we do
3179 // need to generate the event right now.
3180 wxKeyEvent event(wxEVT_CHAR);
3181 InitAnyKeyEvent(event, wParam, lParam);
3182
3183 // Set the "extended" bit in lParam because we want to
3184 // generate CHAR events with WXK_HOME and not
3185 // WXK_NUMPAD_HOME even if the "Home" key on numpad was
3186 // pressed.
0c03f52d 3187 event.m_keyCode = wxMSWKeyboard::VKToWX
b6885972
VZ
3188 (
3189 wParam,
3190 lParam | (KF_EXTENDED << 16)
3191 );
033428a3
VZ
3192
3193 // Don't produce events without any valid character
3194 // code (even if this shouldn't normally happen...).
3195 if ( event.m_keyCode != WXK_NONE )
3196 processed = HandleWindowEvent(event);
2b5f62a0 3197 }
42e69d6b 3198 }
2b5f62a0 3199 if (message == WM_SYSKEYDOWN) // Let Windows still handle the SYSKEYs
08158721 3200 processed = false;
42e69d6b 3201 break;
2bda0e17 3202
4004f41e 3203 case WM_SYSKEYUP:
42e69d6b 3204 case WM_KEYUP:
4aff28fc
VZ
3205#ifdef VK_APPS
3206 // special case of VK_APPS: treat it the same as right mouse button
3207 if ( wParam == VK_APPS )
3208 {
ae177b45 3209 processed = HandleMouseEvent(WM_RBUTTONUP, -1, -1, 0);
4aff28fc
VZ
3210 }
3211 else
3212#endif // VK_APPS
3213 {
3214 processed = HandleKeyUp((WORD) wParam, lParam);
3215 }
42e69d6b 3216 break;
debe6624 3217
170cbe33 3218 case WM_SYSCHAR:
42e69d6b 3219 case WM_CHAR: // Always an ASCII character
d9f14e16
RD
3220 if ( m_lastKeydownProcessed )
3221 {
3222 // The key was handled in the EVT_KEY_DOWN and handling
3223 // a key in an EVT_KEY_DOWN handler is meant, by
3224 // design, to prevent EVT_CHARs from happening
08158721
DS
3225 m_lastKeydownProcessed = false;
3226 processed = true;
d9f14e16
RD
3227 }
3228 else
7de5bdf4 3229 {
b6885972 3230 processed = HandleChar((WORD)wParam, lParam);
7de5bdf4 3231 }
42e69d6b 3232 break;
2bda0e17 3233
982bc2e4
VZ
3234 case WM_IME_STARTCOMPOSITION:
3235 // IME popup needs Escape as it should undo the changes in its
3236 // entry window instead of e.g. closing the dialog for which the
3237 // IME is used (and losing all the changes in the IME window).
3238 gs_modalEntryWindowCount++;
3239 break;
3240
3241 case WM_IME_ENDCOMPOSITION:
3242 gs_modalEntryWindowCount--;
3243 break;
3244
5048c832
JS
3245#if wxUSE_HOTKEY
3246 case WM_HOTKEY:
3247 processed = HandleHotKey((WORD)wParam, lParam);
3248 break;
540b6b09 3249#endif // wxUSE_HOTKEY
5048c832 3250
b65f16da
VS
3251 case WM_CUT:
3252 case WM_COPY:
3253 case WM_PASTE:
3254 processed = HandleClipboardEvent(message);
3255 break;
3256
42e69d6b
VZ
3257 case WM_HSCROLL:
3258 case WM_VSCROLL:
a23fd0e1 3259 {
42e69d6b
VZ
3260 WXWORD code, pos;
3261 WXHWND hwnd;
3262 UnpackScroll(wParam, lParam, &code, &pos, &hwnd);
2bda0e17 3263
42e69d6b
VZ
3264 processed = MSWOnScroll(message == WM_HSCROLL ? wxHORIZONTAL
3265 : wxVERTICAL,
3266 code, pos, hwnd);
a23fd0e1 3267 }
42e69d6b 3268 break;
a23fd0e1 3269
42e69d6b 3270 // CTLCOLOR messages are sent by children to query the parent for their
01c500af 3271 // colors
04ef50df 3272#ifndef __WXMICROWIN__
42e69d6b
VZ
3273 case WM_CTLCOLORMSGBOX:
3274 case WM_CTLCOLOREDIT:
3275 case WM_CTLCOLORLISTBOX:
3276 case WM_CTLCOLORBTN:
3277 case WM_CTLCOLORDLG:
3278 case WM_CTLCOLORSCROLLBAR:
3279 case WM_CTLCOLORSTATIC:
a23fd0e1 3280 {
42e69d6b
VZ
3281 WXHDC hdc;
3282 WXHWND hwnd;
01c500af 3283 UnpackCtlColor(wParam, lParam, &hdc, &hwnd);
42e69d6b 3284
48fa6bd3 3285 processed = HandleCtlColor(&rc.hBrush, (WXHDC)hdc, (WXHWND)hwnd);
a23fd0e1 3286 }
42e69d6b 3287 break;
cd4453e5 3288#endif // !__WXMICROWIN__
debe6624 3289
42e69d6b 3290 case WM_SYSCOLORCHANGE:
90c1530a 3291 // the return value for this message is ignored
42e69d6b
VZ
3292 processed = HandleSysColorChange();
3293 break;
2bda0e17 3294
7f0586ef 3295#if !defined(__WXWINCE__)
574c939e
KB
3296 case WM_DISPLAYCHANGE:
3297 processed = HandleDisplayChange();
3298 break;
7f0586ef 3299#endif
574c939e 3300
42e69d6b 3301 case WM_PALETTECHANGED:
dca0f651 3302 processed = HandlePaletteChanged((WXHWND)wParam);
42e69d6b 3303 break;
2bda0e17 3304
a5e84126 3305 case WM_CAPTURECHANGED:
dca0f651 3306 processed = HandleCaptureChanged((WXHWND)lParam);
a5e84126
JS
3307 break;
3308
3c96418b
JG
3309 case WM_SETTINGCHANGE:
3310 processed = HandleSettingChange(wParam, lParam);
3311 break;
3312
42e69d6b
VZ
3313 case WM_QUERYNEWPALETTE:
3314 processed = HandleQueryNewPalette();
3315 break;
2bda0e17 3316
42e69d6b 3317 case WM_ERASEBKGND:
bec9bf3e
VZ
3318 {
3319#ifdef wxHAS_MSW_BACKGROUND_ERASE_HOOK
3320 // check if an override was configured for this window
3321 EraseBgHooks::const_iterator it = gs_eraseBgHooks.find(this);
3322 if ( it != gs_eraseBgHooks.end() )
3323 processed = it->second->MSWEraseBgHook((WXHDC)wParam);
3324 else
3325#endif // wxHAS_MSW_BACKGROUND_ERASE_HOOK
3326 processed = HandleEraseBkgnd((WXHDC)wParam);
3327 }
3328
42e69d6b
VZ
3329 if ( processed )
3330 {
3331 // we processed the message, i.e. erased the background
3332 rc.result = TRUE;
3333 }
3334 break;
debe6624 3335
7f0586ef 3336#if !defined(__WXWINCE__)
42e69d6b
VZ
3337 case WM_DROPFILES:
3338 processed = HandleDropFiles(wParam);
3339 break;
7f0586ef 3340#endif
2bda0e17 3341
42e69d6b 3342 case WM_INITDIALOG:
dca0f651 3343 processed = HandleInitDialog((WXHWND)wParam);
a23fd0e1 3344
42e69d6b
VZ
3345 if ( processed )
3346 {
3347 // we never set focus from here
3348 rc.result = FALSE;
3349 }
3350 break;
a23fd0e1 3351
7f0586ef 3352#if !defined(__WXWINCE__)
42e69d6b
VZ
3353 case WM_QUERYENDSESSION:
3354 processed = HandleQueryEndSession(lParam, &rc.allow);
3355 break;
2bda0e17 3356
42e69d6b
VZ
3357 case WM_ENDSESSION:
3358 processed = HandleEndSession(wParam != 0, lParam);
3359 break;
2bda0e17 3360
42e69d6b 3361 case WM_GETMINMAXINFO:
25889d3c 3362 processed = HandleGetMinMaxInfo((MINMAXINFO*)lParam);
42e69d6b 3363 break;
7f0586ef 3364#endif
debe6624 3365
42e69d6b 3366 case WM_SETCURSOR:
dca0f651 3367 processed = HandleSetCursor((WXHWND)wParam,
42e69d6b
VZ
3368 LOWORD(lParam), // hit test
3369 HIWORD(lParam)); // mouse msg
3370
3371 if ( processed )
3372 {
3373 // returning TRUE stops the DefWindowProc() from further
3374 // processing this message - exactly what we need because we've
3375 // just set the cursor.
3376 rc.result = TRUE;
3377 }
3378 break;
4cdc2c13 3379
ed5317e5
JS
3380#if wxUSE_ACCESSIBILITY
3381 case WM_GETOBJECT:
3382 {
3383 //WPARAM dwFlags = (WPARAM) (DWORD) wParam;
3384 LPARAM dwObjId = (LPARAM) (DWORD) lParam;
3385
66b9ec3d 3386 if (dwObjId == (LPARAM)OBJID_CLIENT && GetOrCreateAccessible())
ed5317e5
JS
3387 {
3388 return LresultFromObject(IID_IAccessible, wParam, (IUnknown*) GetAccessible()->GetIAccessible());
3389 }
3390 break;
3391 }
3392#endif
3393
e39af974 3394#if defined(WM_HELP)
b96340e6 3395 case WM_HELP:
b96340e6 3396 {
a9c11b71
VZ
3397 // by default, WM_HELP is propagated by DefWindowProc() upwards
3398 // to the window parent but as we do it ourselves already
3399 // (wxHelpEvent is derived from wxCommandEvent), we don't want
3400 // to get the other events if we process this message at all
3401 processed = true;
3402
3403 // WM_HELP doesn't use lParam under CE
7f0586ef 3404#ifndef __WXWINCE__
4cdc2c13 3405 HELPINFO* info = (HELPINFO*) lParam;
a9c11b71 3406 if ( info->iContextType == HELPINFO_WINDOW )
b96340e6 3407 {
a9c11b71
VZ
3408#endif // !__WXWINCE__
3409 wxHelpEvent helpEvent
3410 (
3411 wxEVT_HELP,
3412 GetId(),
7f0586ef 3413#ifdef __WXWINCE__
2d4ec362 3414 wxGetMousePosition() // what else?
7f0586ef 3415#else
a9c11b71 3416 wxPoint(info->MousePos.x, info->MousePos.y)
7f0586ef 3417#endif
a9c11b71 3418 );
b96340e6 3419
a9c11b71 3420 helpEvent.SetEventObject(this);
937013e0 3421 HandleWindowEvent(helpEvent);
7f0586ef 3422#ifndef __WXWINCE__
b96340e6 3423 }
a9c11b71 3424 else if ( info->iContextType == HELPINFO_MENUITEM )
4cdc2c13
VZ
3425 {
3426 wxHelpEvent helpEvent(wxEVT_HELP, info->iCtrlId);
3427 helpEvent.SetEventObject(this);
937013e0 3428 HandleWindowEvent(helpEvent);
69231000 3429
4cdc2c13 3430 }
a9c11b71
VZ
3431 else // unknown help event?
3432 {
3433 processed = false;
3434 }
3435#endif // !__WXWINCE__
b96340e6 3436 }
b96340e6 3437 break;
a9c11b71 3438#endif // WM_HELP
4cdc2c13 3439
7f0586ef 3440#if !defined(__WXWINCE__)
69231000 3441 case WM_CONTEXTMENU:
4cdc2c13
VZ
3442 {
3443 // we don't convert from screen to client coordinates as
3444 // the event may be handled by a parent window
3445 wxPoint pt(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam));
3446
3447 wxContextMenuEvent evtCtx(wxEVT_CONTEXT_MENU, GetId(), pt);
2d1715aa
VZ
3448
3449 // we could have got an event from our child, reflect it back
3450 // to it if this is the case
d85c53a5 3451 wxWindowMSW *win = NULL;
dca0f651
VZ
3452 WXHWND hWnd = (WXHWND)wParam;
3453 if ( hWnd != m_hWnd )
2d1715aa 3454 {
dca0f651 3455 win = FindItemByHWND(hWnd);
2d1715aa
VZ
3456 }
3457
3458 if ( !win )
3459 win = this;
3460
3461 evtCtx.SetEventObject(win);
937013e0 3462 processed = win->HandleWindowEvent(evtCtx);
4cdc2c13 3463 }
69231000 3464 break;
7f0586ef 3465#endif
b74cce40 3466
53a118d6 3467#if wxUSE_MENUS
b74cce40
VZ
3468 case WM_MENUCHAR:
3469 // we're only interested in our own menus, not MF_SYSMENU
3470 if ( HIWORD(wParam) == MF_POPUP )
3471 {
3472 // handle menu chars for ownerdrawn menu items
3473 int i = HandleMenuChar(toupper(LOWORD(wParam)), lParam);
3474 if ( i != wxNOT_FOUND )
3475 {
3476 rc.result = MAKELRESULT(i, MNC_EXECUTE);
08158721 3477 processed = true;
b74cce40
VZ
3478 }
3479 }
3480 break;
53a118d6 3481#endif // wxUSE_MENUS
355debca 3482
dbc74bcc 3483#ifndef __WXWINCE__
355debca
VZ
3484 case WM_POWERBROADCAST:
3485 {
3486 bool vetoed;
3487 processed = HandlePower(wParam, lParam, &vetoed);
3488 rc.result = processed && vetoed ? BROADCAST_QUERY_DENY : TRUE;
3489 }
3490 break;
dbc74bcc 3491#endif // __WXWINCE__
5acec112 3492
a047aff2
JS
3493#if wxUSE_UXTHEME
3494 // If we want the default themed border then we need to draw it ourselves
3495 case WM_NCCALCSIZE:
3496 {
3497 wxUxThemeEngine* theme = wxUxThemeEngine::GetIfActive();
dc797d8e
JS
3498 const wxBorder border = TranslateBorder(GetBorder());
3499 if (theme && border == wxBORDER_THEME)
a047aff2
JS
3500 {
3501 // first ask the widget to calculate the border size
3502 rc.result = MSWDefWindowProc(message, wParam, lParam);
3503 processed = true;
3504
e822d1bd
VZ
3505 // now alter the client size making room for drawing a
3506 // themed border
dca0f651 3507 RECT *rect;
140d93c0 3508 NCCALCSIZE_PARAMS *csparam = NULL;
dca0f651 3509 if ( wParam )
a047aff2 3510 {
140d93c0 3511 csparam = (NCCALCSIZE_PARAMS *)lParam;
dca0f651 3512 rect = &csparam->rgrc[0];
a047aff2
JS
3513 }
3514 else
3515 {
dca0f651 3516 rect = (RECT *)lParam;
a047aff2 3517 }
dca0f651 3518
fe545198 3519 wxUxThemeHandle hTheme((const wxWindow *)this, L"EDIT");
a047aff2 3520 RECT rcClient = { 0, 0, 0, 0 };
d935b421 3521 wxClientDC dc((wxWindow *)this);
888dde65 3522 wxMSWDCImpl *impl = (wxMSWDCImpl*) dc.GetImpl();
a047aff2 3523
dca0f651
VZ
3524 if ( theme->GetThemeBackgroundContentRect
3525 (
3526 hTheme,
3527 GetHdcOf(*impl),
3528 EP_EDITTEXT,
3529 ETS_NORMAL,
3530 rect,
3531 &rcClient) == S_OK )
a047aff2
JS
3532 {
3533 InflateRect(&rcClient, -1, -1);
140d93c0
JS
3534 if (wParam)
3535 csparam->rgrc[0] = rcClient;
3536 else
3537 *((RECT*)lParam) = rcClient;
3538
3539 // WVR_REDRAW triggers a bug whereby child windows are moved up and left,
3540 // so don't use.
3541 // rc.result = WVR_REDRAW;
a047aff2
JS
3542 }
3543 }
3544 }
3545 break;
3546
3547 case WM_NCPAINT:
3548 {
3549 wxUxThemeEngine* theme = wxUxThemeEngine::GetIfActive();
dc797d8e
JS
3550 const wxBorder border = TranslateBorder(GetBorder());
3551 if (theme && border == wxBORDER_THEME)
a047aff2
JS
3552 {
3553 // first ask the widget to paint its non-client area, such as scrollbars, etc.
3554 rc.result = MSWDefWindowProc(message, wParam, lParam);
3555 processed = true;
3556
fe545198 3557 wxUxThemeHandle hTheme((const wxWindow *)this, L"EDIT");
d935b421 3558 wxWindowDC dc((wxWindow *)this);
888dde65 3559 wxMSWDCImpl *impl = (wxMSWDCImpl*) dc.GetImpl();
a047aff2
JS
3560
3561 // Clip the DC so that you only draw on the non-client area
3562 RECT rcBorder;
3563 wxCopyRectToRECT(GetSize(), rcBorder);
3564
3565 RECT rcClient;
3566 theme->GetThemeBackgroundContentRect(
888dde65 3567 hTheme, GetHdcOf(*impl), EP_EDITTEXT, ETS_NORMAL, &rcBorder, &rcClient);
a047aff2
JS
3568 InflateRect(&rcClient, -1, -1);
3569
888dde65 3570 ::ExcludeClipRect(GetHdcOf(*impl), rcClient.left, rcClient.top,
a047aff2
JS
3571 rcClient.right, rcClient.bottom);
3572
3573 // Make sure the background is in a proper state
3574 if (theme->IsThemeBackgroundPartiallyTransparent(hTheme, EP_EDITTEXT, ETS_NORMAL))
3575 {
888dde65 3576 theme->DrawThemeParentBackground(GetHwnd(), GetHdcOf(*impl), &rcBorder);
a047aff2
JS
3577 }
3578
3579 // Draw the border
3580 int nState;
3581 if ( !IsEnabled() )
3582 nState = ETS_DISABLED;
3583 // should we check this?
3584 //else if ( ::GetWindowLong(GetHwnd(), GWL_STYLE) & ES_READONLY)
3585 // nState = ETS_READONLY;
3586 else
3587 nState = ETS_NORMAL;
888dde65 3588 theme->DrawThemeBackground(hTheme, GetHdcOf(*impl), EP_EDITTEXT, nState, &rcBorder, NULL);
a047aff2
JS
3589 }
3590 }
3591 break;
3592
3593#endif // wxUSE_UXTHEME
3594
5acec112
VZ
3595 default:
3596 // try a custom message handler
3597 const MSWMessageHandlers::const_iterator
3598 i = gs_messageHandlers.find(message);
3599 if ( i != gs_messageHandlers.end() )
3600 {
3601 processed = (*i->second)(this, message, wParam, lParam);
3602 }
a23fd0e1 3603 }
2d0a075d 3604
42e69d6b 3605 if ( !processed )
2e1cee23
VZ
3606 return false;
3607
3608 *result = rc.result;
3609
3610 return true;
3611}
3612
3613WXLRESULT wxWindowMSW::MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam)
3614{
3615 WXLRESULT result;
3616 if ( !MSWHandleMessage(&result, message, wParam, lParam) )
2d0a075d 3617 {
4b6a582b 3618#if wxDEBUG_LEVEL >= 2
5ec3853f 3619 wxLogTrace("winmsg", wxT("Forwarding %s to DefWindowProc."),
42e69d6b 3620 wxGetMessageName(message));
4b6a582b 3621#endif // wxDEBUG_LEVEL >= 2
2e1cee23 3622 result = MSWDefWindowProc(message, wParam, lParam);
a23fd0e1 3623 }
2bda0e17 3624
2e1cee23 3625 return result;
2bda0e17
KB
3626}
3627
b225f659
VZ
3628// ----------------------------------------------------------------------------
3629// wxWindow <-> HWND map
3630// ----------------------------------------------------------------------------
2bda0e17 3631
dca0f651 3632wxWindow *wxFindWinFromHandle(HWND hwnd)
4ce81a75 3633{
dca0f651
VZ
3634 WindowHandles::const_iterator i = gs_windowHandles.find(hwnd);
3635 return i == gs_windowHandles.end() ? NULL : i->second;
42e69d6b 3636}
4ce81a75 3637
dca0f651 3638void wxAssociateWinWithHandle(HWND hwnd, wxWindowMSW *win)
42e69d6b 3639{
dca0f651 3640 // adding NULL hwnd is (first) surely a result of an error and
42e69d6b 3641 // (secondly) breaks menu command processing
dca0f651
VZ
3642 wxCHECK_RET( hwnd != (HWND)NULL,
3643 wxT("attempt to add a NULL hwnd to window list ignored") );
4ce81a75 3644
4b6a582b 3645#if wxDEBUG_LEVEL
dca0f651
VZ
3646 WindowHandles::const_iterator i = gs_windowHandles.find(hwnd);
3647 if ( i != gs_windowHandles.end() )
c7527e3f 3648 {
dca0f651
VZ
3649 if ( i->second != win )
3650 {
4b6a582b
VZ
3651 wxFAIL_MSG(
3652 wxString::Format(
3653 wxT("HWND %p already associated with another window (%s)"),
3654 hwnd, win->GetClassInfo()->GetClassName()
3655 )
3656 );
dca0f651
VZ
3657 }
3658 //else: this actually happens currently because we associate the window
3659 // with its HWND during creation (if we create it) and also when
3660 // SubclassWin() is called later, this is ok
c7527e3f 3661 }
4b6a582b 3662#endif // wxDEBUG_LEVEL
dca0f651 3663
936bb82e 3664 gs_windowHandles[hwnd] = (wxWindow *)win;
42e69d6b 3665}
4ce81a75 3666
1e6feb95 3667void wxRemoveHandleAssociation(wxWindowMSW *win)
42e69d6b 3668{
dca0f651 3669 gs_windowHandles.erase(GetHwndOf(win));
4ce81a75
JS
3670}
3671
b225f659
VZ
3672// ----------------------------------------------------------------------------
3673// various MSW speciic class dependent functions
3674// ----------------------------------------------------------------------------
3675
42e69d6b
VZ
3676// Default destroyer - override if you destroy it in some other way
3677// (e.g. with MDI child windows)
1e6feb95 3678void wxWindowMSW::MSWDestroyWindow()
4ce81a75 3679{
42e69d6b 3680}
4ce81a75 3681
fa5f4858 3682void wxWindowMSW::MSWGetCreateWindowCoords(const wxPoint& pos,
b225f659
VZ
3683 const wxSize& size,
3684 int& x, int& y,
3685 int& w, int& h) const
2bda0e17 3686{
fa5f4858
VZ
3687 // CW_USEDEFAULT can't be used for child windows so just position them at
3688 // the origin by default
3689 x = pos.x == wxDefaultCoord ? 0 : pos.x;
3690 y = pos.y == wxDefaultCoord ? 0 : pos.y;
2a77c8c4 3691
fa5f4858 3692 AdjustForParentClientOrigin(x, y);
c085e333 3693
fa5f4858
VZ
3694 // We don't have any clearly good choice for the size by default neither
3695 // but we must use something non-zero.
3696 w = WidthDefault(size.x);
3697 h = HeightDefault(size.y);
2bda0e17 3698
b889a3a2
VZ
3699 /*
3700 NB: there used to be some code here which set the initial size of the
3701 window to the client size of the parent if no explicit size was
77ffb593 3702 specified. This was wrong because wxWidgets programs often assume
b889a3a2
VZ
3703 that they get a WM_SIZE (EVT_SIZE) upon creation, however this broke
3704 it. To see why, you should understand that Windows sends WM_SIZE from
3705 inside ::CreateWindow() anyhow. However, ::CreateWindow() is called
3706 from some base class ctor and so this WM_SIZE is not processed in the
3707 real class' OnSize() (because it's not fully constructed yet and the
3708 event goes to some base class OnSize() instead). So the WM_SIZE we
3709 rely on is the one sent when the parent frame resizes its children
3710 but here is the problem: if the child already has just the right
77ffb593 3711 size, nothing will happen as both wxWidgets and Windows check for
b889a3a2
VZ
3712 this and ignore any attempts to change the window size to the size it
3713 already has - so no WM_SIZE would be sent.
3714 */
b225f659
VZ
3715}
3716
9dfef5ac
VZ
3717WXHWND wxWindowMSW::MSWGetParent() const
3718{
d285d708 3719 return m_parent ? m_parent->GetHWND() : WXHWND(NULL);
9dfef5ac
VZ
3720}
3721
b225f659
VZ
3722bool wxWindowMSW::MSWCreate(const wxChar *wclass,
3723 const wxChar *title,
3724 const wxPoint& pos,
3725 const wxSize& size,
3726 WXDWORD style,
3727 WXDWORD extendedStyle)
3728{
23035521
VZ
3729 // check a common bug in the user code: if the window is created with a
3730 // non-default ctor and Create() is called too, we'd create 2 HWND for a
3731 // single wxWindow object and this results in all sorts of trouble,
3732 // especially for wxTLWs
3733 wxCHECK_MSG( !m_hWnd, true, "window can't be recreated" );
3734
d9698bd4
VZ
3735 // this can happen if this function is called using the return value of
3736 // wxApp::GetRegisteredClassName() which failed
3737 wxCHECK_MSG( wclass, false, "failed to register window class?" );
3738
3739
b225f659
VZ
3740 // choose the position/size for the new window
3741 int x, y, w, h;
3742 (void)MSWGetCreateWindowCoords(pos, size, x, y, w, h);
3743
b225f659
VZ
3744 // controlId is menu handle for the top level windows, so set it to 0
3745 // unless we're creating a child window
f586fde3 3746 int controlId = style & WS_CHILD ? GetId() : 0;
2bda0e17 3747
b225f659
VZ
3748 // for each class "Foo" we have we also have "FooNR" ("no repaint") class
3749 // which is the same but without CS_[HV]REDRAW class styles so using it
3750 // ensures that the window is not fully repainted on each resize
3751 wxString className(wclass);
e441e1f4 3752 if ( !HasFlag(wxFULL_REPAINT_ON_RESIZE) )
b225f659 3753 {
d9698bd4 3754 className += wxApp::GetNoRedrawClassSuffix();
a23fd0e1 3755 }
c085e333 3756
b225f659
VZ
3757 // do create the window
3758 wxWindowCreationHook hook(this);
b3daa5a3 3759
5e67eb97
VZ
3760 m_hWnd = (WXHWND)::CreateWindowEx
3761 (
3762 extendedStyle,
e0a050e3
VS
3763 className.wx_str(),
3764 title ? title : m_windowName.wx_str(),
5e67eb97
VZ
3765 style,
3766 x, y, w, h,
3767 (HWND)MSWGetParent(),
dca0f651 3768 (HMENU)wxUIntToPtr(controlId),
5e67eb97
VZ
3769 wxGetInstance(),
3770 NULL // no extra data
3771 );
b225f659
VZ
3772
3773 if ( !m_hWnd )
c7527e3f 3774 {
5e67eb97 3775 wxLogSysError(_("Can't create window of class %s"), className.c_str());
b225f659 3776
08158721 3777 return false;
c7527e3f 3778 }
b3daa5a3 3779
b225f659 3780 SubclassWin(m_hWnd);
c085e333 3781
08158721 3782 return true;
2bda0e17
KB
3783}
3784
42e69d6b
VZ
3785// ===========================================================================
3786// MSW message handlers
3787// ===========================================================================
3788
3789// ---------------------------------------------------------------------------
3790// WM_NOTIFY
3791// ---------------------------------------------------------------------------
3792
1e6feb95 3793bool wxWindowMSW::HandleNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
2bda0e17 3794{
04ef50df 3795#ifndef __WXMICROWIN__
42e69d6b
VZ
3796 LPNMHDR hdr = (LPNMHDR)lParam;
3797 HWND hWnd = hdr->hwndFrom;
dca0f651 3798 wxWindow *win = wxFindWinFromHandle(hWnd);
42e69d6b 3799
2b15b970 3800 // if the control is one of our windows, let it handle the message itself
42e69d6b 3801 if ( win )
564b2609 3802 {
42e69d6b 3803 return win->MSWOnNotify(idCtrl, lParam, result);
564b2609 3804 }
2bda0e17 3805
2b15b970
VZ
3806 // VZ: why did we do it? normally this is unnecessary and, besides, it
3807 // breaks the message processing for the toolbars because the tooltip
3808 // notifications were being forwarded to the toolbar child controls
3809 // (if it had any) before being passed to the toolbar itself, so in my
3810 // example the tooltip for the combobox was always shown instead of the
3811 // correct button tooltips
3812#if 0
42e69d6b 3813 // try all our children
222ed1d6 3814 wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
42e69d6b 3815 while ( node )
564b2609 3816 {
42e69d6b
VZ
3817 wxWindow *child = node->GetData();
3818 if ( child->MSWOnNotify(idCtrl, lParam, result) )
3819 {
08158721 3820 return true;
42e69d6b 3821 }
2d0a075d 3822
42e69d6b
VZ
3823 node = node->GetNext();
3824 }
2b15b970 3825#endif // 0
2d0a075d 3826
2b15b970 3827 // by default, handle it ourselves
42e69d6b 3828 return MSWOnNotify(idCtrl, lParam, result);
cd4453e5 3829#else // __WXMICROWIN__
08158721 3830 return false;
04ef50df 3831#endif
42e69d6b 3832}
2d0a075d 3833
bd9cd534
VZ
3834#if wxUSE_TOOLTIPS
3835
3836bool wxWindowMSW::HandleTooltipNotify(WXUINT code,
3837 WXLPARAM lParam,
3838 const wxString& ttip)
3839{
3840 // I don't know why it happens, but the versions of comctl32.dll starting
3841 // from 4.70 sometimes send TTN_NEEDTEXTW even to ANSI programs (normally,
3842 // this message is supposed to be sent to Unicode programs only) -- hence
3843 // we need to handle it as well, otherwise no tooltips will be shown in
3844 // this case
7f0586ef 3845#ifndef __WXWINCE__
118208ac
VZ
3846 if ( !(code == (WXUINT) TTN_NEEDTEXTA || code == (WXUINT) TTN_NEEDTEXTW)
3847 || ttip.empty() )
bd9cd534
VZ
3848 {
3849 // not a tooltip message or no tooltip to show anyhow
08158721 3850 return false;
bd9cd534 3851 }
7f0586ef 3852#endif
bd9cd534
VZ
3853
3854 LPTOOLTIPTEXT ttText = (LPTOOLTIPTEXT)lParam;
3855
118208ac
VZ
3856 // We don't want to use the szText buffer because it has a limit of 80
3857 // bytes and this is not enough, especially for Unicode build where it
3858 // limits the tooltip string length to only 40 characters
3859 //
3860 // The best would be, of course, to not impose any length limitations at
3861 // all but then the buffer would have to be dynamic and someone would have
3862 // to free it and we don't have the tooltip owner object here any more, so
3863 // for now use our own static buffer with a higher fixed max length.
3864 //
3865 // Note that using a static buffer should not be a problem as only a single
3866 // tooltip can be shown at the same time anyhow.
2b5f62a0 3867#if !wxUSE_UNICODE
118208ac 3868 if ( code == (WXUINT) TTN_NEEDTEXTW )
bd9cd534 3869 {
118208ac
VZ
3870 // We need to convert tooltip from multi byte to Unicode on the fly.
3871 static wchar_t buf[513];
25c46fda 3872
118208ac
VZ
3873 // Truncate tooltip length if needed as otherwise we might not have
3874 // enough space for it in the buffer and MultiByteToWideChar() would
3875 // return an error
fec9cc08 3876 size_t tipLength = wxMin(ttip.length(), WXSIZEOF(buf) - 1);
7afebc8c
JS
3877
3878 // Convert to WideChar without adding the NULL character. The NULL
25c46fda 3879 // character is added afterwards (this is more efficient).
118208ac
VZ
3880 int len = ::MultiByteToWideChar
3881 (
3882 CP_ACP,
3883 0, // no flags
b05fde97 3884 ttip.wx_str(),
118208ac
VZ
3885 tipLength,
3886 buf,
3887 WXSIZEOF(buf) - 1
3888 );
3889
3890 if ( !len )
3891 {
9a83f860 3892 wxLogLastError(wxT("MultiByteToWideChar()"));
118208ac 3893 }
7afebc8c 3894
118208ac
VZ
3895 buf[len] = L'\0';
3896 ttText->lpszText = (LPSTR) buf;
3897 }
3898 else // TTN_NEEDTEXTA
3899#endif // !wxUSE_UNICODE
3900 {
3901 // we get here if we got TTN_NEEDTEXTA (only happens in ANSI build) or
3902 // if we got TTN_NEEDTEXTW in Unicode build: in this case we just have
3903 // to copy the string we have into the buffer
3904 static wxChar buf[513];
e408bf52 3905 wxStrlcpy(buf, ttip.c_str(), WXSIZEOF(buf));
118208ac 3906 ttText->lpszText = buf;
bd9cd534
VZ
3907 }
3908
08158721 3909 return true;
bd9cd534
VZ
3910}
3911
3912#endif // wxUSE_TOOLTIPS
3913
1e6feb95 3914bool wxWindowMSW::MSWOnNotify(int WXUNUSED(idCtrl),
bd9cd534
VZ
3915 WXLPARAM lParam,
3916 WXLPARAM* WXUNUSED(result))
42e69d6b
VZ
3917{
3918#if wxUSE_TOOLTIPS
bd9cd534 3919 if ( m_tooltip )
42e69d6b 3920 {
bd9cd534
VZ
3921 NMHDR* hdr = (NMHDR *)lParam;
3922 if ( HandleTooltipNotify(hdr->code, lParam, m_tooltip->GetTip()))
3923 {
3924 // processed
08158721 3925 return true;
bd9cd534 3926 }
42e69d6b 3927 }
f5dd1cf1
WS
3928#else
3929 wxUnusedVar(lParam);
42e69d6b
VZ
3930#endif // wxUSE_TOOLTIPS
3931
08158721 3932 return false;
42e69d6b 3933}
2b15b970 3934
42e69d6b
VZ
3935// ---------------------------------------------------------------------------
3936// end session messages
3937// ---------------------------------------------------------------------------
2d0a075d 3938
1e6feb95 3939bool wxWindowMSW::HandleQueryEndSession(long logOff, bool *mayEnd)
42e69d6b 3940{
040e5f77 3941#ifdef ENDSESSION_LOGOFF
abb74e0f 3942 wxCloseEvent event(wxEVT_QUERY_END_SESSION, wxID_ANY);
42e69d6b 3943 event.SetEventObject(wxTheApp);
08158721 3944 event.SetCanVeto(true);
a17e237f 3945 event.SetLoggingOff(logOff == (long)ENDSESSION_LOGOFF);
2d0a075d 3946
42e69d6b
VZ
3947 bool rc = wxTheApp->ProcessEvent(event);
3948
3949 if ( rc )
3950 {
3951 // we may end only if the app didn't veto session closing (double
3952 // negation...)
3953 *mayEnd = !event.GetVeto();
2d0a075d
JS
3954 }
3955
42e69d6b 3956 return rc;
7f0586ef 3957#else
040e5f77
VZ
3958 wxUnusedVar(logOff);
3959 wxUnusedVar(mayEnd);
08158721 3960 return false;
7f0586ef 3961#endif
2bda0e17
KB
3962}
3963
1e6feb95 3964bool wxWindowMSW::HandleEndSession(bool endSession, long logOff)
2bda0e17 3965{
040e5f77 3966#ifdef ENDSESSION_LOGOFF
42e69d6b
VZ
3967 // do nothing if the session isn't ending
3968 if ( !endSession )
08158721 3969 return false;
a23fd0e1 3970
519dc37f
VZ
3971 // only send once
3972 if ( (this != wxTheApp->GetTopWindow()) )
08158721 3973 return false;
519dc37f 3974
abb74e0f 3975 wxCloseEvent event(wxEVT_END_SESSION, wxID_ANY);
42e69d6b 3976 event.SetEventObject(wxTheApp);
08158721 3977 event.SetCanVeto(false);
f801d19a 3978 event.SetLoggingOff((logOff & ENDSESSION_LOGOFF) != 0);
519dc37f
VZ
3979
3980 return wxTheApp->ProcessEvent(event);
7f0586ef 3981#else
040e5f77
VZ
3982 wxUnusedVar(endSession);
3983 wxUnusedVar(logOff);
08158721 3984 return false;
7f0586ef 3985#endif
2bda0e17
KB
3986}
3987
42e69d6b
VZ
3988// ---------------------------------------------------------------------------
3989// window creation/destruction
3990// ---------------------------------------------------------------------------
3991
0c0d1521
WS
3992bool wxWindowMSW::HandleCreate(WXLPCREATESTRUCT WXUNUSED_IN_WINCE(cs),
3993 bool *mayCreate)
61179e28 3994{
ee471817
VZ
3995 // VZ: why is this commented out for WinCE? If it doesn't support
3996 // WS_EX_CONTROLPARENT at all it should be somehow handled globally,
3997 // not with multiple #ifdef's!
7f0586ef 3998#ifndef __WXWINCE__
61179e28 3999 if ( ((CREATESTRUCT *)cs)->dwExStyle & WS_EX_CONTROLPARENT )
ee471817
VZ
4000 EnsureParentHasControlParentStyle(GetParent());
4001#endif // !__WXWINCE__
61179e28 4002
08158721 4003 *mayCreate = true;
42e69d6b 4004
08158721 4005 return true;
2bda0e17
KB
4006}
4007
1e6feb95 4008bool wxWindowMSW::HandleDestroy()
2bda0e17 4009{
42e69d6b
VZ
4010 // delete our drop target if we've got one
4011#if wxUSE_DRAG_AND_DROP
4012 if ( m_dropTarget != NULL )
2d0a075d 4013 {
42e69d6b
VZ
4014 m_dropTarget->Revoke(m_hWnd);
4015
5276b0a5 4016 wxDELETE(m_dropTarget);
2d0a075d 4017 }
42e69d6b 4018#endif // wxUSE_DRAG_AND_DROP
2bda0e17 4019
42e69d6b 4020 // WM_DESTROY handled
08158721 4021 return true;
2bda0e17
KB
4022}
4023
42e69d6b
VZ
4024// ---------------------------------------------------------------------------
4025// activation/focus
4026// ---------------------------------------------------------------------------
4027
1e6feb95 4028bool wxWindowMSW::HandleActivate(int state,
42e69d6b
VZ
4029 bool WXUNUSED(minimized),
4030 WXHWND WXUNUSED(activate))
2bda0e17 4031{
42e69d6b
VZ
4032 wxActivateEvent event(wxEVT_ACTIVATE,
4033 (state == WA_ACTIVE) || (state == WA_CLICKACTIVE),
4034 m_windowId);
4035 event.SetEventObject(this);
4036
937013e0 4037 return HandleWindowEvent(event);
42e69d6b
VZ
4038}
4039
1e6feb95 4040bool wxWindowMSW::HandleSetFocus(WXHWND hwnd)
42e69d6b 4041{
c7aee865
RD
4042 // Strangly enough, some controls get set focus events when they are being
4043 // deleted, even if they already had focus before.
4044 if ( m_isBeingDeleted )
4045 {
4046 return false;
4047 }
35bbb0c6 4048
456bc6d9
VZ
4049 // notify the parent keeping track of focus for the kbd navigation
4050 // purposes that we got it
e72aa7f5 4051 wxChildFocusEvent eventFocus((wxWindow *)this);
937013e0 4052 (void)HandleWindowEvent(eventFocus);
456bc6d9 4053
789295bf 4054#if wxUSE_CARET
42e69d6b 4055 // Deal with caret
789295bf 4056 if ( m_caret )
2d0a075d 4057 {
789295bf 4058 m_caret->OnSetFocus();
2bda0e17 4059 }
789295bf 4060#endif // wxUSE_CARET
42e69d6b 4061
42e69d6b
VZ
4062 wxFocusEvent event(wxEVT_SET_FOCUS, m_windowId);
4063 event.SetEventObject(this);
4064
1e6feb95
VZ
4065 // wxFindWinFromHandle() may return NULL, it is ok
4066 event.SetWindow(wxFindWinFromHandle(hwnd));
4067
937013e0 4068 return HandleWindowEvent(event);
2bda0e17
KB
4069}
4070
1e6feb95 4071bool wxWindowMSW::HandleKillFocus(WXHWND hwnd)
2bda0e17 4072{
789295bf 4073#if wxUSE_CARET
42e69d6b 4074 // Deal with caret
789295bf 4075 if ( m_caret )
2d0a075d 4076 {
789295bf 4077 m_caret->OnKillFocus();
2bda0e17 4078 }
789295bf 4079#endif // wxUSE_CARET
42e69d6b 4080
2913e597
RD
4081 // Don't send the event when in the process of being deleted. This can
4082 // only cause problems if the event handler tries to access the object.
4083 if ( m_isBeingDeleted )
4084 {
08158721 4085 return false;
2913e597
RD
4086 }
4087
42e69d6b
VZ
4088 wxFocusEvent event(wxEVT_KILL_FOCUS, m_windowId);
4089 event.SetEventObject(this);
4090
1e6feb95
VZ
4091 // wxFindWinFromHandle() may return NULL, it is ok
4092 event.SetWindow(wxFindWinFromHandle(hwnd));
4093
937013e0 4094 return HandleWindowEvent(event);
2bda0e17
KB
4095}
4096
faa49bfd
WS
4097// ---------------------------------------------------------------------------
4098// labels
4099// ---------------------------------------------------------------------------
4100
4101void wxWindowMSW::SetLabel( const wxString& label)
4102{
4103 SetWindowText(GetHwnd(), label.c_str());
4104}
4105
4106wxString wxWindowMSW::GetLabel() const
4107{
4108 return wxGetWindowText(GetHWND());
4109}
4110
42e69d6b
VZ
4111// ---------------------------------------------------------------------------
4112// miscellaneous
4113// ---------------------------------------------------------------------------
4114
1e6feb95 4115bool wxWindowMSW::HandleShow(bool show, int WXUNUSED(status))
2bda0e17 4116{
42e69d6b 4117 wxShowEvent event(GetId(), show);
687706f5 4118 event.SetEventObject(this);
42e69d6b 4119
937013e0 4120 return HandleWindowEvent(event);
2bda0e17
KB
4121}
4122
1e6feb95 4123bool wxWindowMSW::HandleInitDialog(WXHWND WXUNUSED(hWndFocus))
2bda0e17 4124{
42e69d6b 4125 wxInitDialogEvent event(GetId());
687706f5 4126 event.SetEventObject(this);
42e69d6b 4127
937013e0 4128 return HandleWindowEvent(event);
2bda0e17
KB
4129}
4130
1e6feb95 4131bool wxWindowMSW::HandleDropFiles(WXWPARAM wParam)
2bda0e17 4132{
7f0586ef 4133#if defined (__WXMICROWIN__) || defined(__WXWINCE__)
35bbb0c6 4134 wxUnusedVar(wParam);
08158721 4135 return false;
4ce1efe1 4136#else // __WXMICROWIN__
42e69d6b 4137 HDROP hFilesInfo = (HDROP) wParam;
42e69d6b
VZ
4138
4139 // Get the total number of files dropped
c3c39620 4140 UINT gwFilesDropped = ::DragQueryFile
f6bcfd97
BP
4141 (
4142 (HDROP)hFilesInfo,
4143 (UINT)-1,
4144 (LPTSTR)0,
4145 (UINT)0
4146 );
42e69d6b
VZ
4147
4148 wxString *files = new wxString[gwFilesDropped];
c3c39620 4149 for ( UINT wIndex = 0; wIndex < gwFilesDropped; wIndex++ )
2d0a075d 4150 {
c3c39620
VZ
4151 // first get the needed buffer length (+1 for terminating NUL)
4152 size_t len = ::DragQueryFile(hFilesInfo, wIndex, NULL, 0) + 1;
4153
4154 // and now get the file name
4155 ::DragQueryFile(hFilesInfo, wIndex,
de564874 4156 wxStringBuffer(files[wIndex], len), len);
2d0a075d 4157 }
2bda0e17 4158
42e69d6b 4159 wxDropFilesEvent event(wxEVT_DROP_FILES, gwFilesDropped, files);
687706f5 4160 event.SetEventObject(this);
c3c39620
VZ
4161
4162 POINT dropPoint;
4163 DragQueryPoint(hFilesInfo, (LPPOINT) &dropPoint);
b3dc8a3e
VZ
4164 event.m_pos.x = dropPoint.x;
4165 event.m_pos.y = dropPoint.y;
42e69d6b 4166
fe8f9ad7
VZ
4167 DragFinish(hFilesInfo);
4168
937013e0 4169 return HandleWindowEvent(event);
04ef50df 4170#endif
2bda0e17
KB
4171}
4172
cc972ac6 4173
1e6feb95
VZ
4174bool wxWindowMSW::HandleSetCursor(WXHWND WXUNUSED(hWnd),
4175 short nHitTest,
4176 int WXUNUSED(mouseMsg))
2bda0e17 4177{
04ef50df 4178#ifndef __WXMICROWIN__
bfbd6dc1 4179 // the logic is as follows:
46753a7c
VZ
4180 // 0. if we're busy, set the busy cursor (even for non client elements)
4181 // 1. don't set custom cursor for non client area of enabled windows
4182 // 2. ask user EVT_SET_CURSOR handler for the cursor
4183 // 3. if still no cursor but we're in a TLW, set the global cursor
42e69d6b 4184
46753a7c
VZ
4185 HCURSOR hcursor = 0;
4186 if ( wxIsBusy() )
43b5058d 4187 {
46753a7c 4188 hcursor = wxGetCurrentBusyCursor();
43b5058d 4189 }
46753a7c
VZ
4190 else // not busy
4191 {
4192 if ( nHitTest != HTCLIENT )
4193 return false;
43b5058d 4194
46753a7c
VZ
4195 // first ask the user code - it may wish to set the cursor in some very
4196 // specific way (for example, depending on the current position)
4197 POINT pt;
d6c37f5b 4198 wxGetCursorPosMSW(&pt);
43b5058d 4199
46753a7c
VZ
4200 int x = pt.x,
4201 y = pt.y;
4202 ScreenToClient(&x, &y);
4203 wxSetCursorEvent event(x, y);
564af280
RD
4204 event.SetId(GetId());
4205 event.SetEventObject(this);
42e69d6b 4206
937013e0 4207 bool processedEvtSetCursor = HandleWindowEvent(event);
46753a7c 4208 if ( processedEvtSetCursor && event.HasCursor() )
bfbd6dc1 4209 {
46753a7c 4210 hcursor = GetHcursorOf(event.GetCursor());
bfbd6dc1 4211 }
43b5058d 4212
46753a7c 4213 if ( !hcursor )
bfbd6dc1 4214 {
46753a7c
VZ
4215 // the test for processedEvtSetCursor is here to prevent using
4216 // m_cursor if the user code caught EVT_SET_CURSOR() and returned
4217 // nothing from it - this is a way to say that our cursor shouldn't
4218 // be used for this point
a1b806b9 4219 if ( !processedEvtSetCursor && m_cursor.IsOk() )
42e69d6b 4220 {
46753a7c 4221 hcursor = GetHcursorOf(m_cursor);
43b5058d 4222 }
46753a7c
VZ
4223
4224 if ( !hcursor && !GetParent() )
43b5058d
VZ
4225 {
4226 const wxCursor *cursor = wxGetGlobalCursor();
a1b806b9 4227 if ( cursor && cursor->IsOk() )
43b5058d
VZ
4228 {
4229 hcursor = GetHcursorOf(*cursor);
4230 }
42e69d6b
VZ
4231 }
4232 }
4233 }
4234
46753a7c 4235
bfbd6dc1
VZ
4236 if ( hcursor )
4237 {
4238 ::SetCursor(hcursor);
4239
4240 // cursor set, stop here
08158721 4241 return true;
bfbd6dc1 4242 }
cd4453e5
VZ
4243#endif // __WXMICROWIN__
4244
3ca6a5f0 4245 // pass up the window chain
08158721 4246 return false;
2bda0e17
KB
4247}
4248
dbc74bcc 4249bool wxWindowMSW::HandlePower(WXWPARAM WXUNUSED_IN_WINCE(wParam),
355debca 4250 WXLPARAM WXUNUSED(lParam),
dbc74bcc 4251 bool *WXUNUSED_IN_WINCE(vetoed))
355debca 4252{
dbc74bcc
WS
4253#ifdef __WXWINCE__
4254 // FIXME
4255 return false;
4256#else
355debca
VZ
4257 wxEventType evtType;
4258 switch ( wParam )
4259 {
4260 case PBT_APMQUERYSUSPEND:
4261 evtType = wxEVT_POWER_SUSPENDING;
4262 break;
4263
4264 case PBT_APMQUERYSUSPENDFAILED:
4265 evtType = wxEVT_POWER_SUSPEND_CANCEL;
4266 break;
4267
4268 case PBT_APMSUSPEND:
4269 evtType = wxEVT_POWER_SUSPENDED;
4270 break;
4271
4272 case PBT_APMRESUMESUSPEND:
4273 evtType = wxEVT_POWER_RESUME;
4274 break;
4275
4276 default:
9a83f860 4277 wxLogDebug(wxT("Unknown WM_POWERBROADCAST(%d) event"), wParam);
355debca
VZ
4278 // fall through
4279
4280 // these messages are currently not mapped to wx events
4281 case PBT_APMQUERYSTANDBY:
4282 case PBT_APMQUERYSTANDBYFAILED:
4283 case PBT_APMSTANDBY:
4284 case PBT_APMRESUMESTANDBY:
4285 case PBT_APMBATTERYLOW:
4286 case PBT_APMPOWERSTATUSCHANGE:
4287 case PBT_APMOEMEVENT:
355debca 4288 case PBT_APMRESUMECRITICAL:
55cd5d10
VZ
4289#ifdef PBT_APMRESUMEAUTOMATIC
4290 case PBT_APMRESUMEAUTOMATIC:
4291#endif
355debca
VZ
4292 evtType = wxEVT_NULL;
4293 break;
4294 }
4295
4296 // don't handle unknown messages
4297 if ( evtType == wxEVT_NULL )
4298 return false;
4299
4300 // TODO: notify about PBTF_APMRESUMEFROMFAILURE in case of resume events?
4301
4302 wxPowerEvent event(evtType);
937013e0 4303 if ( !HandleWindowEvent(event) )
355debca
VZ
4304 return false;
4305
4306 *vetoed = event.IsVetoed();
4307
4308 return true;
dbc74bcc 4309#endif
355debca
VZ
4310}
4311
2e992e06
VZ
4312bool wxWindowMSW::IsDoubleBuffered() const
4313{
75e8e6dc 4314 for ( const wxWindowMSW *win = this; win; win = win->GetParent() )
d66d0500 4315 {
75e8e6dc 4316 if ( wxHasWindowExStyle(win, WS_EX_COMPOSITED) )
2e992e06 4317 return true;
75e8e6dc
VZ
4318
4319 if ( win->IsTopLevel() )
4320 break;
4321 }
d66d0500 4322
2e992e06
VZ
4323 return false;
4324}
4325
f60ca3e2
RD
4326void wxWindowMSW::SetDoubleBuffered(bool on)
4327{
4328 // Get the current extended style bits
d66d0500 4329 long exstyle = wxGetWindowExStyle(this);
f60ca3e2
RD
4330
4331 // Twiddle the bit as needed
4332 if ( on )
4333 exstyle |= WS_EX_COMPOSITED;
4334 else
4335 exstyle &= ~WS_EX_COMPOSITED;
4336
4337 // put it back
d66d0500 4338 wxSetWindowExStyle(this, exstyle);
f60ca3e2
RD
4339}
4340
42e69d6b
VZ
4341// ---------------------------------------------------------------------------
4342// owner drawn stuff
4343// ---------------------------------------------------------------------------
4344
61fef19b
VZ
4345#if (wxUSE_OWNER_DRAWN && wxUSE_MENUS_NATIVE) || \
4346 (wxUSE_CONTROLS && !defined(__WXUNIVERSAL__))
4347 #define WXUNUSED_UNLESS_ODRAWN(param) param
4348#else
4349 #define WXUNUSED_UNLESS_ODRAWN(param)
4350#endif
4351
4352bool
4353wxWindowMSW::MSWOnDrawItem(int WXUNUSED_UNLESS_ODRAWN(id),
4354 WXDRAWITEMSTRUCT * WXUNUSED_UNLESS_ODRAWN(itemStruct))
2bda0e17 4355{
4286a5b5 4356#if wxUSE_OWNER_DRAWN
1e6feb95
VZ
4357
4358#if wxUSE_MENUS_NATIVE
42e69d6b 4359 // is it a menu item?
6f806543
VZ
4360 DRAWITEMSTRUCT *pDrawStruct = (DRAWITEMSTRUCT *)itemStruct;
4361 if ( id == 0 && pDrawStruct->CtlType == ODT_MENU )
42e69d6b 4362 {
42e69d6b 4363 wxMenuItem *pMenuItem = (wxMenuItem *)(pDrawStruct->itemData);
03cef643 4364
2d29bf54
JS
4365 // see comment before the same test in MSWOnMeasureItem() below
4366 if ( !pMenuItem )
4367 return false;
4368
4369 wxCHECK_MSG( wxDynamicCast(pMenuItem, wxMenuItem),
9a83f860 4370 false, wxT("MSWOnDrawItem: bad wxMenuItem pointer") );
42e69d6b 4371
7561aacd
VZ
4372 // prepare to call OnDrawItem(): notice using of wxDCTemp to prevent
4373 // the DC from being released
4374 wxDCTemp dc((WXHDC)pDrawStruct->hDC);
42e69d6b
VZ
4375 wxRect rect(pDrawStruct->rcItem.left, pDrawStruct->rcItem.top,
4376 pDrawStruct->rcItem.right - pDrawStruct->rcItem.left,
4377 pDrawStruct->rcItem.bottom - pDrawStruct->rcItem.top);
4378
4379 return pMenuItem->OnDrawItem
7561aacd
VZ
4380 (
4381 dc,
4382 rect,
4383 (wxOwnerDrawn::wxODAction)pDrawStruct->itemAction,
4384 (wxOwnerDrawn::wxODStatus)pDrawStruct->itemState
4385 );
42e69d6b 4386 }
1e6feb95 4387#endif // wxUSE_MENUS_NATIVE
42e69d6b 4388
c8e4fa8b
JS
4389#endif // USE_OWNER_DRAWN
4390
6a89f9ee 4391#if wxUSE_CONTROLS && !defined(__WXUNIVERSAL__)
c8e4fa8b 4392
c8e4fa8b 4393#if wxUSE_OWNER_DRAWN
1384636d 4394 wxControl *item = wxDynamicCast(FindItem(id), wxControl);
567be187 4395#else // !wxUSE_OWNER_DRAWN
1384636d
VS
4396 // we may still have owner-drawn buttons internally because we have to make
4397 // them owner-drawn to support colour change
35bbb0c6 4398 wxControl *item =
095b80e2
WS
4399# if wxUSE_BUTTON
4400 wxDynamicCast(FindItem(id), wxButton)
4401# else
4402 NULL
4403# endif
4404 ;
cd0b1709 4405#endif // USE_OWNER_DRAWN
567be187
VZ
4406
4407 if ( item )
4408 {
4409 return item->MSWOnDraw(itemStruct);
4410 }
4286a5b5 4411
c8e4fa8b
JS
4412#endif // wxUSE_CONTROLS
4413
08158721 4414 return false;
2bda0e17
KB
4415}
4416
61fef19b 4417bool
d1d276f2 4418wxWindowMSW::MSWOnMeasureItem(int id, WXMEASUREITEMSTRUCT *itemStruct)
2bda0e17 4419{
61fef19b 4420#if wxUSE_OWNER_DRAWN && wxUSE_MENUS_NATIVE
42e69d6b 4421 // is it a menu item?
6f806543
VZ
4422 MEASUREITEMSTRUCT *pMeasureStruct = (MEASUREITEMSTRUCT *)itemStruct;
4423 if ( id == 0 && pMeasureStruct->CtlType == ODT_MENU )
2d0a075d 4424 {
42e69d6b
VZ
4425 wxMenuItem *pMenuItem = (wxMenuItem *)(pMeasureStruct->itemData);
4426
b6afa1a3
VZ
4427 // according to Carsten Fuchs the pointer may be NULL under XP if an
4428 // MDI child frame is initially maximized, see this for more info:
4429 // http://article.gmane.org/gmane.comp.lib.wxwidgets.general/27745
4430 //
4431 // so silently ignore it instead of asserting
4432 if ( !pMenuItem )
4433 return false;
4434
4435 wxCHECK_MSG( wxDynamicCast(pMenuItem, wxMenuItem),
9a83f860 4436 false, wxT("MSWOnMeasureItem: bad wxMenuItem pointer") );
42e69d6b 4437
975b6bcf
VZ
4438 size_t w, h;
4439 bool rc = pMenuItem->OnMeasureItem(&w, &h);
4440
4441 pMeasureStruct->itemWidth = w;
4442 pMeasureStruct->itemHeight = h;
4443
4444 return rc;
2d0a075d 4445 }
42e69d6b 4446
567be187
VZ
4447 wxControl *item = wxDynamicCast(FindItem(id), wxControl);
4448 if ( item )
42e69d6b 4449 {
567be187 4450 return item->MSWOnMeasure(itemStruct);
42e69d6b 4451 }
d1d276f2
WS
4452#else
4453 wxUnusedVar(id);
4454 wxUnusedVar(itemStruct);
4455#endif // wxUSE_OWNER_DRAWN && wxUSE_MENUS_NATIVE
567be187 4456
08158721 4457 return false;
2bda0e17
KB
4458}
4459
42e69d6b
VZ
4460// ---------------------------------------------------------------------------
4461// colours and palettes
4462// ---------------------------------------------------------------------------
2bda0e17 4463
1e6feb95 4464bool wxWindowMSW::HandleSysColorChange()
2bda0e17 4465{
42e69d6b
VZ
4466 wxSysColourChangedEvent event;
4467 event.SetEventObject(this);
4468
937013e0 4469 (void)HandleWindowEvent(event);
23895080
VZ
4470
4471 // always let the system carry on the default processing to allow the
4472 // native controls to react to the colours update
08158721 4473 return false;
42e69d6b
VZ
4474}
4475
574c939e
KB
4476bool wxWindowMSW::HandleDisplayChange()
4477{
4478 wxDisplayChangedEvent event;
4479 event.SetEventObject(this);
4480
937013e0 4481 return HandleWindowEvent(event);
574c939e
KB
4482}
4483
04ef50df 4484#ifndef __WXMICROWIN__
42e69d6b 4485
1a784dfc 4486bool wxWindowMSW::HandleCtlColor(WXHBRUSH *brush, WXHDC hDC, WXHWND hWnd)
01c500af 4487{
3d74a760 4488#if !wxUSE_CONTROLS || defined(__WXUNIVERSAL__)
43bfb798 4489 wxUnusedVar(hDC);
3d74a760
WS
4490 wxUnusedVar(hWnd);
4491#else
2bae4332 4492 wxControl *item = wxDynamicCast(FindItemByHWND(hWnd, true), wxControl);
c3732409 4493
01c500af 4494 if ( item )
1a784dfc 4495 *brush = item->MSWControlColor(hDC, hWnd);
2d0a075d 4496 else
1e6feb95 4497#endif // wxUSE_CONTROLS
01c500af 4498 *brush = NULL;
42e69d6b 4499
01c500af 4500 return *brush != NULL;
2bda0e17
KB
4501}
4502
01c500af
VZ
4503#endif // __WXMICROWIN__
4504
1e6feb95 4505bool wxWindowMSW::HandlePaletteChanged(WXHWND hWndPalChange)
42e69d6b 4506{
574c939e 4507#if wxUSE_PALETTE
b95edd47
VZ
4508 // same as below except we don't respond to our own messages
4509 if ( hWndPalChange != GetHWND() )
4510 {
574c939e 4511 // check to see if we our our parents have a custom palette
fa21d338 4512 wxWindowMSW *win = this;
b95edd47
VZ
4513 while ( win && !win->HasCustomPalette() )
4514 {
4515 win = win->GetParent();
4516 }
4517
4518 if ( win && win->HasCustomPalette() )
4519 {
4520 // realize the palette to see whether redrawing is needed
4521 HDC hdc = ::GetDC((HWND) hWndPalChange);
4522 win->m_palette.SetHPALETTE((WXHPALETTE)
4523 ::SelectPalette(hdc, GetHpaletteOf(win->m_palette), FALSE));
574c939e
KB
4524
4525 int result = ::RealizePalette(hdc);
b95edd47
VZ
4526
4527 // restore the palette (before releasing the DC)
4528 win->m_palette.SetHPALETTE((WXHPALETTE)
4529 ::SelectPalette(hdc, GetHpaletteOf(win->m_palette), FALSE));
4530 ::RealizePalette(hdc);
4531 ::ReleaseDC((HWND) hWndPalChange, hdc);
4532
4533 // now check for the need to redraw
574c939e 4534 if (result > 0)
08158721 4535 ::InvalidateRect((HWND) hWndPalChange, NULL, TRUE);
574c939e 4536 }
b95edd47
VZ
4537
4538 }
4539#endif // wxUSE_PALETTE
574c939e 4540
42e69d6b
VZ
4541 wxPaletteChangedEvent event(GetId());
4542 event.SetEventObject(this);
4543 event.SetChangedWindow(wxFindWinFromHandle(hWndPalChange));
2d0a075d 4544
937013e0 4545 return HandleWindowEvent(event);
42e69d6b
VZ
4546}
4547
a5e84126
JS
4548bool wxWindowMSW::HandleCaptureChanged(WXHWND hWndGainedCapture)
4549{
63e819f2
VS
4550 // notify windows on the capture stack about lost capture
4551 // (see http://sourceforge.net/tracker/index.php?func=detail&aid=1153662&group_id=9863&atid=109863):
72f8c792 4552 wxWindowBase::NotifyCaptureLost();
a5e84126 4553
72f8c792 4554 wxWindow *win = wxFindWinFromHandle(hWndGainedCapture);
63e819f2
VS
4555 wxMouseCaptureChangedEvent event(GetId(), win);
4556 event.SetEventObject(this);
937013e0 4557 return HandleWindowEvent(event);
a5e84126
JS
4558}
4559
3c96418b
JG
4560bool wxWindowMSW::HandleSettingChange(WXWPARAM wParam, WXLPARAM lParam)
4561{
4562 // despite MSDN saying "(This message cannot be sent directly to a window.)"
4563 // we need to send this to child windows (it is only sent to top-level
4564 // windows) so {list,tree}ctrls can adjust their font size if necessary
4565 // this is exactly how explorer does it to enable the font size changes
4566
4567 wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
4568 while ( node )
4569 {
4570 // top-level windows already get this message from the system
4571 wxWindow *win = node->GetData();
4572 if ( !win->IsTopLevel() )
4573 {
4574 ::SendMessage(GetHwndOf(win), WM_SETTINGCHANGE, wParam, lParam);
4575 }
4576
4577 node = node->GetNext();
4578 }
4579
3c96418b
JG
4580 // let the system handle it
4581 return false;
4582}
4583
1e6feb95 4584bool wxWindowMSW::HandleQueryNewPalette()
42e69d6b 4585{
574c939e
KB
4586
4587#if wxUSE_PALETTE
4588 // check to see if we our our parents have a custom palette
fa21d338 4589 wxWindowMSW *win = this;
574c939e
KB
4590 while (!win->HasCustomPalette() && win->GetParent()) win = win->GetParent();
4591 if (win->HasCustomPalette()) {
4592 /* realize the palette to see whether redrawing is needed */
3a3c8603 4593 HDC hdc = ::GetDC((HWND) GetHWND());
574c939e 4594 win->m_palette.SetHPALETTE( (WXHPALETTE)
b95edd47 4595 ::SelectPalette(hdc, (HPALETTE) win->m_palette.GetHPALETTE(), FALSE) );
574c939e
KB
4596
4597 int result = ::RealizePalette(hdc);
4598 /* restore the palette (before releasing the DC) */
4599 win->m_palette.SetHPALETTE( (WXHPALETTE)
b95edd47 4600 ::SelectPalette(hdc, (HPALETTE) win->m_palette.GetHPALETTE(), TRUE) );
574c939e
KB
4601 ::RealizePalette(hdc);
4602 ::ReleaseDC((HWND) GetHWND(), hdc);
4603 /* now check for the need to redraw */
4604 if (result > 0)
4605 ::InvalidateRect((HWND) GetHWND(), NULL, TRUE);
4606 }
b95edd47 4607#endif // wxUSE_PALETTE
574c939e 4608
42e69d6b
VZ
4609 wxQueryNewPaletteEvent event(GetId());
4610 event.SetEventObject(this);
4611
937013e0 4612 return HandleWindowEvent(event) && event.GetPaletteRealized();
42e69d6b
VZ
4613}
4614
4615// Responds to colour changes: passes event on to children.
574c939e 4616void wxWindowMSW::OnSysColourChanged(wxSysColourChangedEvent& WXUNUSED(event))
42e69d6b 4617{
90c1530a
VZ
4618 // the top level window also reset the standard colour map as it might have
4619 // changed (there is no need to do it for the non top level windows as we
4620 // only have to do it once)
4621 if ( IsTopLevel() )
4622 {
4623 // FIXME-MT
08158721 4624 gs_hasStdCmap = false;
90c1530a 4625 }
222ed1d6 4626 wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
42e69d6b
VZ
4627 while ( node )
4628 {
23895080
VZ
4629 // Only propagate to non-top-level windows because Windows already
4630 // sends this event to all top-level ones
4631 wxWindow *win = node->GetData();
4632 if ( !win->IsTopLevel() )
42e69d6b 4633 {
23895080
VZ
4634 // we need to send the real WM_SYSCOLORCHANGE and not just trigger
4635 // EVT_SYS_COLOUR_CHANGED call because the latter wouldn't work for
4636 // the standard controls
4637 ::SendMessage(GetHwndOf(win), WM_SYSCOLORCHANGE, 0, 0);
564b2609 4638 }
42e69d6b 4639
23895080
VZ
4640 node = node->GetNext();
4641 }
2bda0e17
KB
4642}
4643
90c1530a
VZ
4644extern wxCOLORMAP *wxGetStdColourMap()
4645{
4646 static COLORREF s_stdColours[wxSTD_COL_MAX];
4647 static wxCOLORMAP s_cmap[wxSTD_COL_MAX];
4648
4649 if ( !gs_hasStdCmap )
4650 {
08158721 4651 static bool s_coloursInit = false;
90c1530a
VZ
4652
4653 if ( !s_coloursInit )
4654 {
4655 // When a bitmap is loaded, the RGB values can change (apparently
4656 // because Windows adjusts them to care for the old programs always
4657 // using 0xc0c0c0 while the transparent colour for the new Windows
4658 // versions is different). But we do this adjustment ourselves so
4659 // we want to avoid Windows' "help" and for this we need to have a
4660 // reference bitmap which can tell us what the RGB values change
4661 // to.
e5dbcb50 4662 wxLogNull logNo; // suppress error if we couldn't load the bitmap
9a83f860 4663 wxBitmap stdColourBitmap(wxT("wxBITMAP_STD_COLOURS"));
a1b806b9 4664 if ( stdColourBitmap.IsOk() )
90c1530a
VZ
4665 {
4666 // the pixels in the bitmap must correspond to wxSTD_COL_XXX!
4667 wxASSERT_MSG( stdColourBitmap.GetWidth() == wxSTD_COL_MAX,
9a83f860 4668 wxT("forgot to update wxBITMAP_STD_COLOURS!") );
90c1530a
VZ
4669
4670 wxMemoryDC memDC;
4671 memDC.SelectObject(stdColourBitmap);
4672
4673 wxColour colour;
4674 for ( size_t i = 0; i < WXSIZEOF(s_stdColours); i++ )
4675 {
4676 memDC.GetPixel(i, 0, &colour);
4677 s_stdColours[i] = wxColourToRGB(colour);
4678 }
4679 }
4680 else // wxBITMAP_STD_COLOURS couldn't be loaded
4681 {
4682 s_stdColours[0] = RGB(000,000,000); // black
4683 s_stdColours[1] = RGB(128,128,128); // dark grey
4684 s_stdColours[2] = RGB(192,192,192); // light grey
4685 s_stdColours[3] = RGB(255,255,255); // white
4686 //s_stdColours[4] = RGB(000,000,255); // blue
4687 //s_stdColours[5] = RGB(255,000,255); // magenta
4688 }
4689
08158721 4690 s_coloursInit = true;
90c1530a
VZ
4691 }
4692
08158721 4693 gs_hasStdCmap = true;
90c1530a
VZ
4694
4695 // create the colour map
4696#define INIT_CMAP_ENTRY(col) \
4697 s_cmap[wxSTD_COL_##col].from = s_stdColours[wxSTD_COL_##col]; \
4698 s_cmap[wxSTD_COL_##col].to = ::GetSysColor(COLOR_##col)
4699
4700 INIT_CMAP_ENTRY(BTNTEXT);
4701 INIT_CMAP_ENTRY(BTNSHADOW);
4702 INIT_CMAP_ENTRY(BTNFACE);
4703 INIT_CMAP_ENTRY(BTNHIGHLIGHT);
4704
4705#undef INIT_CMAP_ENTRY
4706 }
4707
4708 return s_cmap;
4709}
4710
a5b1be33
JS
4711#if wxUSE_UXTHEME && !defined(TMT_FILLCOLOR)
4712 #define TMT_FILLCOLOR 3802
4713 #define TMT_TEXTCOLOR 3803
4714 #define TMT_BORDERCOLOR 3801
4715#endif
4716
4717wxColour wxWindowMSW::MSWGetThemeColour(const wchar_t *themeName,
4718 int themePart,
4719 int themeState,
4720 MSWThemeColour themeColour,
108694fe 4721 wxSystemColour fallback) const
a5b1be33
JS
4722{
4723#if wxUSE_UXTHEME
4724 const wxUxThemeEngine* theme = wxUxThemeEngine::GetIfActive();
4725 if ( theme )
4726 {
4727 int themeProperty = 0;
4728
4729 // TODO: Convert this into a table? Sure would be faster.
4730 switch ( themeColour )
4731 {
4732 case ThemeColourBackground:
4733 themeProperty = TMT_FILLCOLOR;
4734 break;
4735 case ThemeColourText:
4736 themeProperty = TMT_TEXTCOLOR;
4737 break;
4738 case ThemeColourBorder:
4739 themeProperty = TMT_BORDERCOLOR;
4740 break;
4741 default:
4742 wxFAIL_MSG(wxT("unsupported theme colour"));
4743 };
4744
108694fe 4745 wxUxThemeHandle hTheme((const wxWindow *)this, themeName);
a5b1be33
JS
4746 COLORREF col;
4747 HRESULT hr = theme->GetThemeColor
4748 (
4749 hTheme,
4750 themePart,
4751 themeState,
4752 themeProperty,
4753 &col
4754 );
4755
4756 if ( SUCCEEDED(hr) )
4757 return wxRGBToColour(col);
4758
4759 wxLogApiError(
4760 wxString::Format(
4761 "GetThemeColor(%s, %i, %i, %i)",
4762 themeName, themePart, themeState, themeProperty),
4763 hr);
4764 }
b9de6a21
JS
4765#else
4766 wxUnusedVar(themeName);
4767 wxUnusedVar(themePart);
4768 wxUnusedVar(themeState);
4769 wxUnusedVar(themeColour);
a5b1be33
JS
4770#endif
4771 return wxSystemSettings::GetColour(fallback);
4772}
4773
42e69d6b
VZ
4774// ---------------------------------------------------------------------------
4775// painting
4776// ---------------------------------------------------------------------------
4777
7ca106e8
VZ
4778// this variable is used to check that a paint event handler which processed
4779// the event did create a wxPaintDC inside its code and called BeginPaint() to
4780// validate the invalidated window area as otherwise we'd keep getting an
4781// endless stream of WM_PAINT messages for this window resulting in a lot of
4782// difficult to debug problems (e.g. impossibility to repaint other windows,
4783// lack of timer and idle events and so on)
0369a9fe
VZ
4784extern bool wxDidCreatePaintDC;
4785bool wxDidCreatePaintDC = false;
7ca106e8 4786
1e6feb95 4787bool wxWindowMSW::HandlePaint()
2bda0e17 4788{
42e69d6b
VZ
4789 HRGN hRegion = ::CreateRectRgn(0, 0, 0, 0); // Dummy call to get a handle
4790 if ( !hRegion )
43b2d5e7 4791 {
f6bcfd97 4792 wxLogLastError(wxT("CreateRectRgn"));
43b2d5e7 4793 }
42e69d6b 4794 if ( ::GetUpdateRgn(GetHwnd(), hRegion, FALSE) == ERROR )
43b2d5e7 4795 {
f6bcfd97 4796 wxLogLastError(wxT("GetUpdateRgn"));
43b2d5e7 4797 }
c085e333 4798
42e69d6b 4799 m_updateRegion = wxRegion((WXHRGN) hRegion);
c085e333 4800
7ca106e8
VZ
4801 wxDidCreatePaintDC = false;
4802
42e69d6b
VZ
4803 wxPaintEvent event(m_windowId);
4804 event.SetEventObject(this);
2bda0e17 4805
937013e0 4806 bool processed = HandleWindowEvent(event);
1e6feb95 4807
7ca106e8
VZ
4808 if ( processed && !wxDidCreatePaintDC )
4809 {
4810 // do call MSWDefWindowProc() to validate the update region to avoid
4811 // the problems mentioned above
4812 processed = false;
4813 }
4814
1e6feb95
VZ
4815 // note that we must generate NC event after the normal one as otherwise
4816 // BeginPaint() will happily overwrite our decorations with the background
4817 // colour
4818 wxNcPaintEvent eventNc(m_windowId);
4819 eventNc.SetEventObject(this);
937013e0 4820 HandleWindowEvent(eventNc);
1e6feb95 4821
90df6033
VZ
4822 // don't keep an HRGN we don't need any longer (GetUpdateRegion() can only
4823 // be called from inside the event handlers called above)
4824 m_updateRegion.Clear();
4825
1e6feb95 4826 return processed;
2bda0e17
KB
4827}
4828
63da7df7 4829// Can be called from an application's OnPaint handler
1e6feb95 4830void wxWindowMSW::OnPaint(wxPaintEvent& event)
63da7df7 4831{
1e6feb95
VZ
4832#ifdef __WXUNIVERSAL__
4833 event.Skip();
4834#else
888dde65 4835 HDC hDC = (HDC) wxPaintDCImpl::FindDCInCache((wxWindow*) event.GetEventObject());
63da7df7
JS
4836 if (hDC != 0)
4837 {
4838 MSWDefWindowProc(WM_PAINT, (WPARAM) hDC, 0);
4839 }
1e6feb95 4840#endif
63da7df7
JS
4841}
4842
1e6feb95 4843bool wxWindowMSW::HandleEraseBkgnd(WXHDC hdc)
8681b094 4844{
c753eb92 4845 switch ( GetBackgroundStyle() )
d57f1dd7 4846 {
c753eb92 4847 case wxBG_STYLE_ERASE:
b469c9d8 4848 case wxBG_STYLE_COLOUR:
c753eb92
VZ
4849 // we need to generate an erase background event
4850 {
4851 wxDCTemp dc(hdc, GetClientSize());
4852 wxDCTempImpl *impl = (wxDCTempImpl*) dc.GetImpl();
d57f1dd7 4853
c753eb92
VZ
4854 impl->SetHDC(hdc);
4855 impl->SetWindow((wxWindow *)this);
90df6033 4856
c753eb92
VZ
4857 wxEraseEvent event(m_windowId, &dc);
4858 event.SetEventObject(this);
4859 bool rc = HandleWindowEvent(event);
4860
4861 // must be called manually as ~wxDC doesn't do anything for
4862 // wxDCTemp
4863 impl->SelectOldObjects(hdc);
4864
4865 if ( rc )
4866 {
06393630 4867 // background erased by the user-defined handler
c753eb92
VZ
4868 return true;
4869 }
4870 }
4871 // fall through
4872
4873 case wxBG_STYLE_SYSTEM:
4874 if ( !DoEraseBackground(hdc) )
4875 {
4876 // let the default processing to take place if we didn't erase
4877 // the background ourselves
4878 return false;
4879 }
4880 break;
4881
4882 case wxBG_STYLE_PAINT:
b469c9d8 4883 case wxBG_STYLE_TRANSPARENT:
c753eb92
VZ
4884 // no need to do anything here at all, background will be entirely
4885 // redrawn in WM_PAINT handler
4886 break;
4887
4888 default:
4889 wxFAIL_MSG( "unknown background style" );
c5bd3c62 4890 }
c753eb92
VZ
4891
4892 return true;
c5bd3c62
VZ
4893}
4894
bec9bf3e
VZ
4895#ifdef wxHAS_MSW_BACKGROUND_ERASE_HOOK
4896
4897bool wxWindowMSW::MSWHasEraseBgHook() const
4898{
b93f4239
VZ
4899 return gs_eraseBgHooks.find(const_cast<wxWindowMSW *>(this))
4900 != gs_eraseBgHooks.end();
bec9bf3e
VZ
4901}
4902
4903void wxWindowMSW::MSWSetEraseBgHook(wxWindow *child)
4904{
4905 if ( child )
4906 {
4907 if ( !gs_eraseBgHooks.insert(
4908 EraseBgHooks::value_type(this, child)).second )
4909 {
4910 wxFAIL_MSG( wxT("Setting erase background hook twice?") );
4911 }
4912 }
4913 else // reset the hook
4914 {
4915 if ( gs_eraseBgHooks.erase(this) != 1 )
4916 {
4917 wxFAIL_MSG( wxT("Resetting erase background which was not set?") );
4918 }
4919 }
4920}
4921
4922#endif // wxHAS_MSW_BACKGROUND_ERASE_HOOK
4923
c3732409 4924bool wxWindowMSW::DoEraseBackground(WXHDC hDC)
c581abbc 4925{
c3732409
VZ
4926 HBRUSH hbr = (HBRUSH)MSWGetBgBrush(hDC);
4927 if ( !hbr )
c581abbc
VZ
4928 return false;
4929
bec9bf3e
VZ
4930 // erase just the client area of the window, this is important for the
4931 // frames to avoid drawing over the toolbar part of the window (you might
4932 // think using WS_CLIPCHILDREN would prevent this from happening, but it
4933 // clearly doesn't)
4934 RECT rc;
4935 wxCopyRectToRECT(GetClientRect(), rc);
4936 ::FillRect((HDC)hDC, &rc, hbr);
c581abbc
VZ
4937
4938 return true;
4939}
4940
c3732409 4941WXHBRUSH
0a81f130 4942wxWindowMSW::MSWGetBgBrushForChild(WXHDC hDC, wxWindowMSW *child)
c5bd3c62 4943{
0a81f130
VZ
4944 // Test for the custom background brush first.
4945 WXHBRUSH hbrush = MSWGetCustomBgBrush();
4946 if ( hbrush )
4947 {
4948 // We assume that this is either a stipple or hatched brush and not a
4949 // solid one as otherwise it would have been enough to set the
4950 // background colour and such brushes need to be positioned correctly
4951 // in order to align when different windows are painted, so do it here.
4952 RECT rc;
4953 ::GetWindowRect(GetHwndOf(child), &rc);
4954
4955 ::MapWindowPoints(NULL, GetHwnd(), (POINT *)&rc, 1);
4956
4957 if ( !::SetBrushOrgEx((HDC)hDC, -rc.left, -rc.top, NULL) )
4958 {
4959 wxLogLastError(wxT("SetBrushOrgEx(bg brush)"));
4960 }
4961
4962 return hbrush;
4963 }
4964
4965 // Otherwise see if we have a custom background colour.
accbb1e7
VZ
4966 if ( m_hasBgCol )
4967 {
ebfee179
VZ
4968 wxBrush *
4969 brush = wxTheBrushList->FindOrCreateBrush(GetBackgroundColour());
c3732409 4970
ebfee179 4971 return (WXHBRUSH)GetHbrushOf(*brush);
accbb1e7
VZ
4972 }
4973
c3732409 4974 return 0;
c5bd3c62 4975}
8681b094 4976
ebfee179 4977WXHBRUSH wxWindowMSW::MSWGetBgBrush(WXHDC hDC)
bdd1a35d 4978{
a3b89fa9
VZ
4979 // Use the special wxWindowBeingErased variable if it is set as the child
4980 // being erased.
4981 wxWindowMSW * const child =
4982#if wxUSE_UXTHEME
4983 wxWindowBeingErased ? wxWindowBeingErased :
4984#endif
4985 this;
4986
c3732409 4987 for ( wxWindowMSW *win = this; win; win = win->GetParent() )
c5bd3c62 4988 {
a3b89fa9 4989 WXHBRUSH hBrush = win->MSWGetBgBrushForChild(hDC, child);
c5bd3c62
VZ
4990 if ( hBrush )
4991 return hBrush;
24cb4019 4992
ebfee179
VZ
4993 // don't use the parent background if we're not transparent
4994 if ( !win->HasTransparentBackground() )
4995 break;
4996
c3732409
VZ
4997 // background is not inherited beyond top level windows
4998 if ( win->IsTopLevel() )
24cb4019 4999 break;
01c500af 5000 }
c5bd3c62
VZ
5001
5002 return 0;
8681b094
VZ
5003}
5004
b728a212 5005bool wxWindowMSW::HandlePrintClient(WXHDC hDC)
1a784dfc 5006{
b728a212
JG
5007 // we receive this message when DrawThemeParentBackground() is
5008 // called from def window proc of several controls under XP and we
5009 // must draw properly themed background here
5010 //
5011 // note that naively I'd expect filling the client rect with the
5012 // brush returned by MSWGetBgBrush() work -- but for some reason it
5013 // doesn't and we have to call parents MSWPrintChild() which is
5014 // supposed to call DrawThemeBackground() with appropriate params
5015 //
5016 // also note that in this case lParam == PRF_CLIENT but we're
5017 // clearly expected to paint the background and nothing else!
5018
5019 if ( IsTopLevel() || InheritsBackgroundColour() )
5020 return false;
5021
5022 // sometimes we don't want the parent to handle it at all, instead
5023 // return whatever value this window wants
5024 if ( !MSWShouldPropagatePrintChild() )
5025 return MSWPrintChild(hDC, (wxWindow *)this);
5026
5027 for ( wxWindow *win = GetParent(); win; win = win->GetParent() )
5028 {
5029 if ( win->MSWPrintChild(hDC, (wxWindow *)this) )
5030 return true;
5031
5032 if ( win->IsTopLevel() || win->InheritsBackgroundColour() )
5033 break;
5034 }
5035
1a784dfc
VZ
5036 return false;
5037}
5038
42e69d6b
VZ
5039// ---------------------------------------------------------------------------
5040// moving and resizing
5041// ---------------------------------------------------------------------------
5042
1e6feb95 5043bool wxWindowMSW::HandleMinimize()
42e69d6b
VZ
5044{
5045 wxIconizeEvent event(m_windowId);
5046 event.SetEventObject(this);
2d0a075d 5047
937013e0 5048 return HandleWindowEvent(event);
2bda0e17
KB
5049}
5050
1e6feb95 5051bool wxWindowMSW::HandleMaximize()
2bda0e17 5052{
42e69d6b
VZ
5053 wxMaximizeEvent event(m_windowId);
5054 event.SetEventObject(this);
c085e333 5055
937013e0 5056 return HandleWindowEvent(event);
42e69d6b 5057}
2bda0e17 5058
1e6feb95 5059bool wxWindowMSW::HandleMove(int x, int y)
42e69d6b 5060{
907173e5
WS
5061 wxPoint point(x,y);
5062 wxMoveEvent event(point, m_windowId);
42e69d6b
VZ
5063 event.SetEventObject(this);
5064
937013e0 5065 return HandleWindowEvent(event);
42e69d6b
VZ
5066}
5067
5706de1c
JS
5068bool wxWindowMSW::HandleMoving(wxRect& rect)
5069{
5070 wxMoveEvent event(rect, m_windowId);
5071 event.SetEventObject(this);
577baeef 5072
937013e0 5073 bool rc = HandleWindowEvent(event);
5706de1c
JS
5074 if (rc)
5075 rect = event.GetRect();
5076 return rc;
5077}
5078
aa767a45
JS
5079bool wxWindowMSW::HandleEnterSizeMove()
5080{
66e2ba91 5081 wxMoveEvent event(wxPoint(0,0), m_windowId);
aa767a45
JS
5082 event.SetEventType(wxEVT_MOVE_START);
5083 event.SetEventObject(this);
5084
937013e0 5085 return HandleWindowEvent(event);
aa767a45
JS
5086}
5087
5088bool wxWindowMSW::HandleExitSizeMove()
5089{
66e2ba91 5090 wxMoveEvent event(wxPoint(0,0), m_windowId);
aa767a45
JS
5091 event.SetEventType(wxEVT_MOVE_END);
5092 event.SetEventObject(this);
5093
937013e0 5094 return HandleWindowEvent(event);
aa767a45
JS
5095}
5096
4bc0f25e 5097bool wxWindowMSW::HandleSize(int WXUNUSED(w), int WXUNUSED(h), WXUINT wParam)
42e69d6b 5098{
6bd9b9f2 5099#if wxUSE_DEFERRED_SIZING
c3723477
JS
5100 // when we resize this window, its children are probably going to be
5101 // repositioned as well, prepare to use DeferWindowPos() for them
5102 int numChildren = 0;
5103 for ( HWND child = ::GetWindow(GetHwndOf(this), GW_CHILD);
5104 child;
5105 child = ::GetWindow(child, GW_HWNDNEXT) )
5106 {
5107 numChildren ++;
5108 }
5109
3fca879c 5110 // Protect against valid m_hDWP being overwritten
c3723477
JS
5111 bool useDefer = false;
5112
3f48c8e2
VZ
5113 if ( numChildren > 1 )
5114 {
c3723477 5115 if (!m_hDWP)
3fca879c 5116 {
c3723477
JS
5117 m_hDWP = (WXHANDLE)::BeginDeferWindowPos(numChildren);
5118 if ( !m_hDWP )
5119 {
9a83f860 5120 wxLogLastError(wxT("BeginDeferWindowPos"));
c3723477
JS
5121 }
5122 if (m_hDWP)
5123 useDefer = true;
3f48c8e2
VZ
5124 }
5125 }
6bd9b9f2 5126#endif // wxUSE_DEFERRED_SIZING
42e69d6b 5127
3f48c8e2
VZ
5128 // update this window size
5129 bool processed = false;
4bc0f25e
VZ
5130 switch ( wParam )
5131 {
5132 default:
9a83f860 5133 wxFAIL_MSG( wxT("unexpected WM_SIZE parameter") );
4bc0f25e
VZ
5134 // fall through nevertheless
5135
5136 case SIZE_MAXHIDE:
5137 case SIZE_MAXSHOW:
5138 // we're not interested in these messages at all
5139 break;
5140
5141 case SIZE_MINIMIZED:
5142 processed = HandleMinimize();
5143 break;
5144
5145 case SIZE_MAXIMIZED:
a4d1972d 5146 /* processed = */ HandleMaximize();
4bc0f25e
VZ
5147 // fall through to send a normal size event as well
5148
5149 case SIZE_RESTORED:
5150 // don't use w and h parameters as they specify the client size
5151 // while according to the docs EVT_SIZE handler is supposed to
5152 // receive the total size
5153 wxSizeEvent event(GetSize(), m_windowId);
5154 event.SetEventObject(this);
5155
937013e0 5156 processed = HandleWindowEvent(event);
4bc0f25e
VZ
5157 }
5158
6bd9b9f2 5159#if wxUSE_DEFERRED_SIZING
3f48c8e2 5160 // and finally change the positions of all child windows at once
c3723477 5161 if ( useDefer && m_hDWP )
3f48c8e2
VZ
5162 {
5163 // reset m_hDWP to NULL so that child windows don't try to use our
5164 // m_hDWP after we call EndDeferWindowPos() on it (this shouldn't
5165 // happen anyhow normally but who knows what weird flow of control we
5166 // may have depending on what the users EVT_SIZE handler does...)
5167 HDWP hDWP = (HDWP)m_hDWP;
5168 m_hDWP = NULL;
3fca879c 5169
3f48c8e2
VZ
5170 // do put all child controls in place at once
5171 if ( !::EndDeferWindowPos(hDWP) )
5172 {
9a83f860 5173 wxLogLastError(wxT("EndDeferWindowPos"));
3f48c8e2 5174 }
c3723477 5175
da78f3b1 5176 // Reset our children's pending pos/size values.
c3723477
JS
5177 for ( wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
5178 node;
5179 node = node->GetNext() )
5180 {
6bd9b9f2
VZ
5181 wxWindowMSW * const child = node->GetData();
5182 child->MSWEndDeferWindowPos();
c3723477 5183 }
3f48c8e2 5184 }
6bd9b9f2 5185#endif // wxUSE_DEFERRED_SIZING
3f48c8e2 5186
4bc0f25e 5187 return processed;
42e69d6b
VZ
5188}
5189
5706de1c
JS
5190bool wxWindowMSW::HandleSizing(wxRect& rect)
5191{
5192 wxSizeEvent event(rect, m_windowId);
5193 event.SetEventObject(this);
577baeef 5194
937013e0 5195 bool rc = HandleWindowEvent(event);
5706de1c
JS
5196 if (rc)
5197 rect = event.GetRect();
5198 return rc;
5199}
5200
0c0d1521 5201bool wxWindowMSW::HandleGetMinMaxInfo(void *WXUNUSED_IN_WINCE(mmInfo))
42e69d6b 5202{
7f0586ef 5203#ifdef __WXWINCE__
08158721 5204 return false;
7f0586ef 5205#else
42e69d6b
VZ
5206 MINMAXINFO *info = (MINMAXINFO *)mmInfo;
5207
08158721 5208 bool rc = false;
b2d5a7ee 5209
e7dda1ff
VS
5210 int minWidth = GetMinWidth(),
5211 minHeight = GetMinHeight(),
5212 maxWidth = GetMaxWidth(),
5213 maxHeight = GetMaxHeight();
42e69d6b 5214
422d0ff0 5215 if ( minWidth != wxDefaultCoord )
2d0a075d 5216 {
e7dda1ff 5217 info->ptMinTrackSize.x = minWidth;
08158721 5218 rc = true;
2d0a075d 5219 }
2bda0e17 5220
422d0ff0 5221 if ( minHeight != wxDefaultCoord )
42e69d6b 5222 {
e7dda1ff 5223 info->ptMinTrackSize.y = minHeight;
08158721 5224 rc = true;
42e69d6b 5225 }
2bda0e17 5226
422d0ff0 5227 if ( maxWidth != wxDefaultCoord )
42e69d6b 5228 {
e7dda1ff 5229 info->ptMaxTrackSize.x = maxWidth;
08158721 5230 rc = true;
2d0a075d 5231 }
2bda0e17 5232
422d0ff0 5233 if ( maxHeight != wxDefaultCoord )
42e69d6b 5234 {
e7dda1ff 5235 info->ptMaxTrackSize.y = maxHeight;
08158721 5236 rc = true;
42e69d6b 5237 }
2bda0e17 5238
42e69d6b 5239 return rc;
7f0586ef 5240#endif
42e69d6b 5241}
2d0a075d 5242
42e69d6b
VZ
5243// ---------------------------------------------------------------------------
5244// command messages
5245// ---------------------------------------------------------------------------
5246
0edeeb6d 5247bool wxWindowMSW::HandleCommand(WXWORD id_, WXWORD cmd, WXHWND control)
42e69d6b 5248{
0edeeb6d
VZ
5249 // sign extend to int from short before comparing with the other int ids
5250 int id = (signed short)id_;
5251
1e6feb95 5252#if wxUSE_MENUS_NATIVE
8c290175 5253 if ( !cmd && wxCurrentPopupMenu )
42e69d6b
VZ
5254 {
5255 wxMenu *popupMenu = wxCurrentPopupMenu;
5256 wxCurrentPopupMenu = NULL;
5257
5258 return popupMenu->MSWCommand(cmd, id);
5259 }
1e6feb95 5260#endif // wxUSE_MENUS_NATIVE
42e69d6b 5261
8c290175 5262 wxWindow *win = NULL;
71292fab
VZ
5263
5264 // first try to find it from HWND - this works even with the broken
5265 // programs using the same ids for different controls
5266 if ( control )
42e69d6b 5267 {
71292fab 5268 win = wxFindWinFromHandle(control);
b853f898 5269 }
2f4ef631 5270
71292fab
VZ
5271 // try the id
5272 if ( !win )
b853f898 5273 {
0edeeb6d 5274 win = FindItem(id);
42e69d6b
VZ
5275 }
5276
5277 if ( win )
b94ae1ea 5278 {
42e69d6b 5279 return win->MSWCommand(cmd, id);
b94ae1ea
VZ
5280 }
5281
5282 // the messages sent from the in-place edit control used by the treectrl
5283 // for label editing have id == 0, but they should _not_ be treated as menu
5284 // messages (they are EN_XXX ones, in fact) so don't translate anything
5285 // coming from a control to wxEVT_COMMAND_MENU_SELECTED
5286 if ( !control )
a84fc80b 5287 {
a6ac49b1 5288 wxCommandEvent event(wxEVT_COMMAND_MENU_SELECTED, id);
a84fc80b 5289 event.SetEventObject(this);
a84fc80b 5290 event.SetInt(id);
b94ae1ea 5291
937013e0 5292 return HandleWindowEvent(event);
a84fc80b 5293 }
6fe19057
VZ
5294 else
5295 {
01d2bf4d 5296#if wxUSE_SPINCTRL && !defined(__WXUNIVERSAL__)
6fe19057
VZ
5297 // the text ctrl which is logically part of wxSpinCtrl sends WM_COMMAND
5298 // notifications to its parent which we want to reflect back to
5299 // wxSpinCtrl
5300 wxSpinCtrl *spin = wxSpinCtrl::GetSpinForTextCtrl(control);
5301 if ( spin && spin->ProcessTextCommand(cmd, id) )
08158721 5302 return true;
6fe19057 5303#endif // wxUSE_SPINCTRL
42e69d6b 5304
01d2bf4d
WS
5305#if wxUSE_CHOICE && defined(__SMARTPHONE__)
5306 // the listbox ctrl which is logically part of wxChoice sends WM_COMMAND
5307 // notifications to its parent which we want to reflect back to
5308 // wxChoice
5309 wxChoice *choice = wxChoice::GetChoiceForListBox(control);
5310 if ( choice && choice->MSWCommand(cmd, id) )
5311 return true;
5312#endif
5313 }
5314
08158721 5315 return false;
2bda0e17
KB
5316}
5317
42e69d6b
VZ
5318// ---------------------------------------------------------------------------
5319// mouse events
5320// ---------------------------------------------------------------------------
5321
1e6feb95
VZ
5322void wxWindowMSW::InitMouseEvent(wxMouseEvent& event,
5323 int x, int y,
5324 WXUINT flags)
42e69d6b 5325{
1e6feb95
VZ
5326 // our client coords are not quite the same as Windows ones
5327 wxPoint pt = GetClientAreaOrigin();
5328 event.m_x = x - pt.x;
5329 event.m_y = y - pt.y;
5330
5331 event.m_shiftDown = (flags & MK_SHIFT) != 0;
5332 event.m_controlDown = (flags & MK_CONTROL) != 0;
5333 event.m_leftDown = (flags & MK_LBUTTON) != 0;
5334 event.m_middleDown = (flags & MK_MBUTTON) != 0;
5335 event.m_rightDown = (flags & MK_RBUTTON) != 0;
2f68482e 5336#ifdef wxHAS_XBUTTON
01101e2d
VZ
5337 event.m_aux1Down = (flags & MK_XBUTTON1) != 0;
5338 event.m_aux2Down = (flags & MK_XBUTTON2) != 0;
2f68482e 5339#endif // wxHAS_XBUTTON
6719c06a 5340 event.m_altDown = ::wxIsAltDown();
1e6feb95 5341
f0b1ccde 5342#ifndef __WXWINCE__
1bf77ee5 5343 event.SetTimestamp(::GetMessageTime());
f0b1ccde
JS
5344#endif
5345
687706f5 5346 event.SetEventObject(this);
fb35f0c7 5347 event.SetId(GetId());
42e69d6b
VZ
5348
5349#if wxUSE_MOUSEEVENT_HACK
c358ea41
VZ
5350 gs_lastMouseEvent.pos = ClientToScreen(wxPoint(x, y));
5351 gs_lastMouseEvent.type = event.GetEventType();
42e69d6b 5352#endif // wxUSE_MOUSEEVENT_HACK
2bda0e17
KB
5353}
5354
42b1fb63 5355#ifdef __WXWINCE__
dfafa702
VZ
5356// Windows doesn't send the mouse events to the static controls (which are
5357// transparent in the sense that their WM_NCHITTEST handler returns
5358// HTTRANSPARENT) at all but we want all controls to receive the mouse events
5359// and so we manually check if we don't have a child window under mouse and if
5360// we do, send the event to it instead of the window Windows had sent WM_XXX
5361// to.
5362//
5363// Notice that this is not done for the mouse move events because this could
5364// (would?) be too slow, but only for clicks which means that the static texts
5365// still don't get move, enter nor leave events.
42b1fb63 5366static wxWindowMSW *FindWindowForMouseEvent(wxWindowMSW *win, int *x, int *y)
dfafa702 5367{
9a83f860 5368 wxCHECK_MSG( x && y, win, wxT("NULL pointer in FindWindowForMouseEvent") );
dfafa702
VZ
5369
5370 // first try to find a non transparent child: this allows us to send events
5371 // to a static text which is inside a static box, for example
5372 POINT pt = { *x, *y };
5373 HWND hwnd = GetHwndOf(win),
5374 hwndUnderMouse;
5375
7f0586ef
JS
5376#ifdef __WXWINCE__
5377 hwndUnderMouse = ::ChildWindowFromPoint
5378 (
5379 hwnd,
5380 pt
5381 );
5382#else
dfafa702
VZ
5383 hwndUnderMouse = ::ChildWindowFromPointEx
5384 (
5385 hwnd,
5386 pt,
5387 CWP_SKIPINVISIBLE |
5388 CWP_SKIPDISABLED |
5389 CWP_SKIPTRANSPARENT
5390 );
7f0586ef 5391#endif
dfafa702
VZ
5392
5393 if ( !hwndUnderMouse || hwndUnderMouse == hwnd )
dfafa702
VZ
5394 {
5395 // now try any child window at all
5396 hwndUnderMouse = ::ChildWindowFromPoint(hwnd, pt);
5397 }
5398
5399 // check that we have a child window which is susceptible to receive mouse
5400 // events: for this it must be shown and enabled
5401 if ( hwndUnderMouse &&
5402 hwndUnderMouse != hwnd &&
5403 ::IsWindowVisible(hwndUnderMouse) &&
5404 ::IsWindowEnabled(hwndUnderMouse) )
5405 {
dca0f651 5406 wxWindow *winUnderMouse = wxFindWinFromHandle(hwndUnderMouse);
dfafa702
VZ
5407 if ( winUnderMouse )
5408 {
5409 // translate the mouse coords to the other window coords
5410 win->ClientToScreen(x, y);
5411 winUnderMouse->ScreenToClient(x, y);
5412
5413 win = winUnderMouse;
5414 }
5415 }
5416
5417 return win;
5418}
42b1fb63 5419#endif // __WXWINCE__
dfafa702 5420
1e6feb95 5421bool wxWindowMSW::HandleMouseEvent(WXUINT msg, int x, int y, WXUINT flags)
2bda0e17 5422{
42e69d6b 5423 // the mouse events take consecutive IDs from WM_MOUSEFIRST to
34621cc5 5424 // WM_MOUSELAST, so it's enough to subtract WM_MOUSEMOVE == WM_MOUSEFIRST
42e69d6b
VZ
5425 // from the message id and take the value in the table to get wxWin event
5426 // id
5427 static const wxEventType eventsMouse[] =
5428 {
5429 wxEVT_MOTION,
5430 wxEVT_LEFT_DOWN,
5431 wxEVT_LEFT_UP,
5432 wxEVT_LEFT_DCLICK,
5433 wxEVT_RIGHT_DOWN,
5434 wxEVT_RIGHT_UP,
5435 wxEVT_RIGHT_DCLICK,
5436 wxEVT_MIDDLE_DOWN,
5437 wxEVT_MIDDLE_UP,
01101e2d
VZ
5438 wxEVT_MIDDLE_DCLICK,
5439 0, // this one is for wxEVT_MOTION which is not used here
5440 wxEVT_AUX1_DOWN,
5441 wxEVT_AUX1_UP,
5442 wxEVT_AUX1_DCLICK,
5443 wxEVT_AUX2_DOWN,
5444 wxEVT_AUX2_UP,
5445 wxEVT_AUX2_DCLICK
42e69d6b 5446 };
2bda0e17 5447
2f68482e 5448#ifdef wxHAS_XBUTTON
01101e2d
VZ
5449 // the same messages are used for both auxillary mouse buttons so we need
5450 // to adjust the index manually
5451 switch ( msg )
5452 {
5453 case WM_XBUTTONDOWN:
5454 case WM_XBUTTONUP:
5455 case WM_XBUTTONDBLCLK:
5456 if ( flags & MK_XBUTTON2 )
5457 msg += wxEVT_AUX2_DOWN - wxEVT_AUX1_DOWN;
5458 }
2f68482e 5459#endif // wxHAS_XBUTTON
01101e2d 5460
42e69d6b
VZ
5461 wxMouseEvent event(eventsMouse[msg - WM_MOUSEMOVE]);
5462 InitMouseEvent(event, x, y, flags);
5463
937013e0 5464 return HandleWindowEvent(event);
42e69d6b
VZ
5465}
5466
1e6feb95 5467bool wxWindowMSW::HandleMouseMove(int x, int y, WXUINT flags)
42e69d6b
VZ
5468{
5469 if ( !m_mouseInWindow )
2bda0e17 5470 {
1e6feb95
VZ
5471 // it would be wrong to assume that just because we get a mouse move
5472 // event that the mouse is inside the window: although this is usually
5473 // true, it is not if we had captured the mouse, so we need to check
5474 // the mouse coordinates here
5475 if ( !HasCapture() || IsMouseInWindow() )
5476 {
5477 // Generate an ENTER event
08158721 5478 m_mouseInWindow = true;
e5297b7f 5479
4e5c6c33 5480#ifdef HAVE_TRACKMOUSEEVENT
aafb9978
VZ
5481 typedef BOOL (WINAPI *_TrackMouseEvent_t)(LPTRACKMOUSEEVENT);
5482#ifdef __WXWINCE__
5483 static const _TrackMouseEvent_t
5484 s_pfn_TrackMouseEvent = _TrackMouseEvent;
5485#else // !__WXWINCE__
5486 static _TrackMouseEvent_t s_pfn_TrackMouseEvent;
5487 static bool s_initDone = false;
5488 if ( !s_initDone )
5489 {
e2d4ce7d 5490 // see comment in wxApp::GetComCtl32Version() explaining the
5a9379d7 5491 // use of wxLoadedDLL
9a83f860 5492 wxLoadedDLL dllComCtl32(wxT("comctl32.dll"));
aafb9978
VZ
5493 if ( dllComCtl32.IsLoaded() )
5494 {
5495 s_pfn_TrackMouseEvent = (_TrackMouseEvent_t)
9a83f860 5496 dllComCtl32.RawGetSymbol(wxT("_TrackMouseEvent"));
aafb9978
VZ
5497 }
5498
5499 s_initDone = true;
aafb9978
VZ
5500 }
5501
5502 if ( s_pfn_TrackMouseEvent )
5503#endif // __WXWINCE__/!__WXWINCE__
5504 {
5505 WinStruct<TRACKMOUSEEVENT> trackinfo;
4e5c6c33 5506
aafb9978
VZ
5507 trackinfo.dwFlags = TME_LEAVE;
5508 trackinfo.hwndTrack = GetHwnd();
5509
5510 (*s_pfn_TrackMouseEvent)(&trackinfo);
5511 }
4e5c6c33
VZ
5512#endif // HAVE_TRACKMOUSEEVENT
5513
1e6feb95
VZ
5514 wxMouseEvent event(wxEVT_ENTER_WINDOW);
5515 InitMouseEvent(event, x, y, flags);
42e69d6b 5516
937013e0 5517 (void)HandleWindowEvent(event);
1e6feb95 5518 }
42e69d6b 5519 }
cff58b52 5520#ifdef HAVE_TRACKMOUSEEVENT
aafb9978 5521 else // mouse not in window
cff58b52
KH
5522 {
5523 // Check if we need to send a LEAVE event
5524 // Windows doesn't send WM_MOUSELEAVE if the mouse has been captured so
5525 // send it here if we are using native mouse leave tracking
5526 if ( HasCapture() && !IsMouseInWindow() )
5527 {
5528 GenerateMouseLeave();
5529 }
5530 }
1ca78aa1 5531#endif // HAVE_TRACKMOUSEEVENT
42e69d6b
VZ
5532
5533#if wxUSE_MOUSEEVENT_HACK
c358ea41
VZ
5534 // Windows often generates mouse events even if mouse position hasn't
5535 // changed (http://article.gmane.org/gmane.comp.lib.wxwidgets.devel/66576)
5536 //
5537 // Filter this out as it can result in unexpected behaviour compared to
5538 // other platforms
5539 if ( gs_lastMouseEvent.type == wxEVT_RIGHT_DOWN ||
5540 gs_lastMouseEvent.type == wxEVT_LEFT_DOWN ||
5541 gs_lastMouseEvent.type == wxEVT_MIDDLE_DOWN ||
5542 gs_lastMouseEvent.type == wxEVT_MOTION )
5543 {
5544 if ( ClientToScreen(wxPoint(x, y)) == gs_lastMouseEvent.pos )
5545 {
5546 gs_lastMouseEvent.type = wxEVT_MOTION;
42e69d6b 5547
c358ea41
VZ
5548 return false;
5549 }
42e69d6b
VZ
5550 }
5551#endif // wxUSE_MOUSEEVENT_HACK
5552
5553 return HandleMouseEvent(WM_MOUSEMOVE, x, y, flags);
5554}
5555
d2c52078 5556
24ce4c18 5557bool wxWindowMSW::HandleMouseWheel(WXWPARAM wParam, WXLPARAM lParam)
d2c52078
RD
5558{
5559#if wxUSE_MOUSEWHEEL
3c297348
VZ
5560 // notice that WM_MOUSEWHEEL position is in screen coords (as it's
5561 // forwarded up to the parent by DefWindowProc()) and not in the client
5562 // ones as all the other messages, translate them to the client coords for
5563 // consistency
5564 const wxPoint
5565 pt = ScreenToClient(wxPoint(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)));
d2c52078 5566 wxMouseEvent event(wxEVT_MOUSEWHEEL);
3c297348 5567 InitMouseEvent(event, pt.x, pt.y, LOWORD(wParam));
d2c52078
RD
5568 event.m_wheelRotation = (short)HIWORD(wParam);
5569 event.m_wheelDelta = WHEEL_DELTA;
5570
0f7a546d
RD
5571 static int s_linesPerRotation = -1;
5572 if ( s_linesPerRotation == -1 )
5573 {
5574 if ( !::SystemParametersInfo(SPI_GETWHEELSCROLLLINES, 0,
5575 &s_linesPerRotation, 0))
5576 {
5577 // this is not supposed to happen
9a83f860 5578 wxLogLastError(wxT("SystemParametersInfo(GETWHEELSCROLLLINES)"));
0f7a546d
RD
5579
5580 // the default is 3, so use it if SystemParametersInfo() failed
5581 s_linesPerRotation = 3;
5582 }
5583 }
d2c52078 5584
0f7a546d 5585 event.m_linesPerAction = s_linesPerRotation;
937013e0 5586 return HandleWindowEvent(event);
0f7a546d 5587
51e4e266
VZ
5588#else // !wxUSE_MOUSEWHEEL
5589 wxUnusedVar(wParam);
5590 wxUnusedVar(lParam);
38caaa61 5591
08158721 5592 return false;
51e4e266 5593#endif // wxUSE_MOUSEWHEEL/!wxUSE_MOUSEWHEEL
d2c52078
RD
5594}
5595
51e4e266
VZ
5596void wxWindowMSW::GenerateMouseLeave()
5597{
5598 m_mouseInWindow = false;
5599
5600 int state = 0;
5601 if ( wxIsShiftDown() )
5602 state |= MK_SHIFT;
5603 if ( wxIsCtrlDown() )
5604 state |= MK_CONTROL;
5605
5606 // Only the high-order bit should be tested
5607 if ( GetKeyState( VK_LBUTTON ) & (1<<15) )
5608 state |= MK_LBUTTON;
5609 if ( GetKeyState( VK_MBUTTON ) & (1<<15) )
5610 state |= MK_MBUTTON;
5611 if ( GetKeyState( VK_RBUTTON ) & (1<<15) )
5612 state |= MK_RBUTTON;
5613
5614 POINT pt;
d6c37f5b 5615 wxGetCursorPosMSW(&pt);
51e4e266
VZ
5616
5617 // we need to have client coordinates here for symmetry with
5618 // wxEVT_ENTER_WINDOW
5619 RECT rect = wxGetWindowRect(GetHwnd());
5620 pt.x -= rect.left;
5621 pt.y -= rect.top;
5622
5623 wxMouseEvent event(wxEVT_LEAVE_WINDOW);
5624 InitMouseEvent(event, pt.x, pt.y, state);
5625
937013e0 5626 (void)HandleWindowEvent(event);
51e4e266 5627}
d2c52078 5628
42e69d6b
VZ
5629// ---------------------------------------------------------------------------
5630// keyboard handling
5631// ---------------------------------------------------------------------------
5632
246117d4
VZ
5633namespace
5634{
5635
5636// Implementation of InitAnyKeyEvent() which can also be used when there is no
5637// associated window: this can happen for the wxEVT_CHAR_HOOK events created by
5638// the global keyboard hook (e.g. the event might have happened in a non-wx
5639// window).
b6885972 5640void
246117d4
VZ
5641MSWInitAnyKeyEvent(wxKeyEvent& event,
5642 WXWPARAM wParam,
5643 WXLPARAM lParam,
eb7a47b7 5644 const wxWindowBase *win /* may be NULL */)
c42404a5 5645{
246117d4
VZ
5646 if ( win )
5647 {
5648 event.SetId(win->GetId());
eb7a47b7 5649 event.SetEventObject(const_cast<wxWindowBase *>(win));
246117d4
VZ
5650 }
5651 else // No associated window.
5652 {
5653 // Use wxID_ANY for compatibility with the old code even if wxID_NONE
5654 // would arguably make more sense.
5655 event.SetId(wxID_ANY);
5656 }
5657
3f7bc32b
VZ
5658 event.m_shiftDown = wxIsShiftDown();
5659 event.m_controlDown = wxIsCtrlDown();
c42404a5
VZ
5660 event.m_altDown = (HIWORD(lParam) & KF_ALTDOWN) == KF_ALTDOWN;
5661
9c7df356
VZ
5662 event.m_rawCode = (wxUint32) wParam;
5663 event.m_rawFlags = (wxUint32) lParam;
f0b1ccde 5664#ifndef __WXWINCE__
1bf77ee5 5665 event.SetTimestamp(::GetMessageTime());
f0b1ccde 5666#endif
c42404a5 5667
246117d4
VZ
5668 // Event coordinates must be in window client coordinates system which
5669 // doesn't make sense if there is no window.
5670 //
5671 // We could use screen coordinates for such events but this would make the
5672 // logic of the event handlers more complicated: you'd need to test for the
5673 // event object and interpret the coordinates differently according to
5674 // whether it's NULL or not so unless somebody really asks for this let's
5675 // just avoid the issue.
5676 if ( win )
5677 {
5678 const wxPoint mousePos = win->ScreenToClient(wxGetMousePosition());
5679 event.m_x = mousePos.x;
5680 event.m_y = mousePos.y;
5681 }
5682}
5683
5684} // anonymous namespace
5685
5686void
5687wxWindowMSW::InitAnyKeyEvent(wxKeyEvent& event,
5688 WXWPARAM wParam,
5689 WXLPARAM lParam) const
5690{
5691 MSWInitAnyKeyEvent(event, wParam, lParam, this);
b6885972
VZ
5692}
5693
5694wxKeyEvent
5695wxWindowMSW::CreateKeyEvent(wxEventType evType,
5696 WXWPARAM wParam,
5697 WXLPARAM lParam) const
5698{
5699 // Catch any attempts to use this with WM_CHAR, it wouldn't work because
5700 // wParam is supposed to be a virtual key and not a character here.
5701 wxASSERT_MSG( evType != wxEVT_CHAR && evType != wxEVT_CHAR_HOOK,
5702 "CreateKeyEvent() can't be used for char events" );
5703
5704 wxKeyEvent event(evType);
5705 InitAnyKeyEvent(event, wParam, lParam);
5706
5844ad30
VZ
5707 event.m_keyCode = wxMSWKeyboard::VKToWX
5708 (
5709 wParam,
5710 lParam
b6885972 5711#if wxUSE_UNICODE
5844ad30 5712 , &event.m_uniChar
b6885972 5713#endif // wxUSE_UNICODE
5844ad30 5714 );
c42404a5
VZ
5715
5716 return event;
5717}
5718
1afe4f9b
VZ
5719wxKeyEvent
5720wxWindowMSW::CreateCharEvent(wxEventType evType,
5721 WXWPARAM wParam,
5722 WXLPARAM lParam) const
42e69d6b 5723{
1afe4f9b 5724 wxKeyEvent event(evType);
b6885972
VZ
5725 InitAnyKeyEvent(event, wParam, lParam);
5726
5727#if wxUSE_UNICODE
5728 // TODO: wParam uses UTF-16 so this is incorrect for characters outside of
5729 // the BMP, we should use WM_UNICHAR to handle them.
5730 event.m_uniChar = wParam;
5731#endif // wxUSE_UNICODE
5732
5733 // Set non-Unicode key code too for compatibility if possible.
5734 if ( wParam < 0x80 )
42e69d6b 5735 {
b6885972
VZ
5736 // It's an ASCII character, no need to translate it.
5737 event.m_keyCode = wParam;
2d0a075d 5738 }
b6885972 5739 else
c42404a5 5740 {
b6885972
VZ
5741 // Check if this key can be represented (as a single character) in the
5742 // current locale.
5743 const wchar_t wc = wParam;
5744 char ch;
5745 if ( wxConvLibc.FromWChar(&ch, 1, &wc, 1) != wxCONV_FAILED )
c42404a5 5746 {
b6885972
VZ
5747 // For compatibility continue to provide the key code in this field
5748 // even though using GetUnicodeKey() is recommended now.
5749 event.m_keyCode = static_cast<unsigned char>(ch);
c42404a5 5750 }
b6885972
VZ
5751 //else: Key can't be represented in the current locale, leave m_keyCode
5752 // as WXK_NONE and use GetUnicodeKey() to access the character.
9c7df356 5753 }
42e69d6b 5754
2b5f62a0
VZ
5755 // the alphanumeric keys produced by pressing AltGr+something on European
5756 // keyboards have both Ctrl and Alt modifiers which may confuse the user
5757 // code as, normally, keys with Ctrl and/or Alt don't result in anything
5758 // alphanumeric, so pretend that there are no modifiers at all (the
5759 // KEY_DOWN event would still have the correct modifiers if they're really
5760 // needed)
5761 if ( event.m_controlDown && event.m_altDown &&
b6885972 5762 (event.m_keyCode >= 32 && event.m_keyCode < 256) )
9c7df356 5763 {
2b5f62a0 5764 event.m_controlDown =
08158721 5765 event.m_altDown = false;
2d0a075d 5766 }
c42404a5 5767
1afe4f9b
VZ
5768 return event;
5769}
5770
5771// isASCII is true only when we're called from WM_CHAR handler and not from
5772// WM_KEYDOWN one
5773bool wxWindowMSW::HandleChar(WXWPARAM wParam, WXLPARAM lParam)
5774{
5775 wxKeyEvent event(CreateCharEvent(wxEVT_CHAR, wParam, lParam));
937013e0 5776 return HandleWindowEvent(event);
2bda0e17
KB
5777}
5778
1e6feb95 5779bool wxWindowMSW::HandleKeyDown(WXWPARAM wParam, WXLPARAM lParam)
2bda0e17 5780{
b6885972 5781 wxKeyEvent event(CreateKeyEvent(wxEVT_KEY_DOWN, wParam, lParam));
937013e0 5782 return HandleWindowEvent(event);
2bda0e17
KB
5783}
5784
1e6feb95 5785bool wxWindowMSW::HandleKeyUp(WXWPARAM wParam, WXLPARAM lParam)
2bda0e17 5786{
b6885972 5787 wxKeyEvent event(CreateKeyEvent(wxEVT_KEY_UP, wParam, lParam));
937013e0 5788 return HandleWindowEvent(event);
2bda0e17
KB
5789}
5790
53a118d6 5791#if wxUSE_MENUS
0c0d1521
WS
5792int wxWindowMSW::HandleMenuChar(int WXUNUSED_IN_WINCE(chAccel),
5793 WXLPARAM WXUNUSED_IN_WINCE(lParam))
b74cce40 5794{
7f0586ef
JS
5795 // FIXME: implement GetMenuItemCount for WinCE, possibly
5796 // in terms of GetMenuItemInfo
5797#ifndef __WXWINCE__
b74cce40
VZ
5798 const HMENU hmenu = (HMENU)lParam;
5799
5800 MENUITEMINFO mii;
5801 wxZeroMemory(mii);
5802 mii.cbSize = sizeof(MENUITEMINFO);
c70ffbdb
VZ
5803
5804 // we could use MIIM_FTYPE here as we only need to know if the item is
5805 // ownerdrawn or not and not dwTypeData which MIIM_TYPE also returns, but
5806 // MIIM_FTYPE is not supported under Win95
b74cce40
VZ
5807 mii.fMask = MIIM_TYPE | MIIM_DATA;
5808
5809 // find if we have this letter in any owner drawn item
5810 const int count = ::GetMenuItemCount(hmenu);
5811 for ( int i = 0; i < count; i++ )
5812 {
c70ffbdb
VZ
5813 // previous loop iteration could modify it, reset it back before
5814 // calling GetMenuItemInfo() to prevent it from overflowing dwTypeData
5815 mii.cch = 0;
5816
b74cce40
VZ
5817 if ( ::GetMenuItemInfo(hmenu, i, TRUE, &mii) )
5818 {
5819 if ( mii.fType == MFT_OWNERDRAW )
5820 {
5821 // dwItemData member of the MENUITEMINFO is a
5822 // pointer to the associated wxMenuItem -- see the
5823 // menu creation code
5824 wxMenuItem *item = (wxMenuItem*)mii.dwItemData;
5825
4193a1a4
VZ
5826 const wxString label(item->GetItemLabel());
5827 const wxChar *p = wxStrchr(label.wx_str(), wxT('&'));
b74cce40
VZ
5828 while ( p++ )
5829 {
9a83f860 5830 if ( *p == wxT('&') )
b74cce40
VZ
5831 {
5832 // this is not the accel char, find the real one
9a83f860 5833 p = wxStrchr(p + 1, wxT('&'));
b74cce40
VZ
5834 }
5835 else // got the accel char
5836 {
5837 // FIXME-UNICODE: this comparison doesn't risk to work
5838 // for non ASCII accelerator characters I'm afraid, but
5839 // what can we do?
907173e5 5840 if ( (wchar_t)wxToupper(*p) == (wchar_t)chAccel )
b74cce40
VZ
5841 {
5842 return i;
5843 }
5844 else
5845 {
5846 // this one doesn't match
5847 break;
5848 }
5849 }
5850 }
5851 }
5852 }
e39af974 5853 else // failed to get the menu text?
b74cce40 5854 {
c70ffbdb 5855 // it's not fatal, so don't show error, but still log it
9a83f860 5856 wxLogLastError(wxT("GetMenuItemInfo"));
b74cce40
VZ
5857 }
5858 }
7f0586ef 5859#endif
b74cce40
VZ
5860 return wxNOT_FOUND;
5861}
5862
17a04304
VZ
5863#endif // wxUSE_MENUS
5864
5865bool wxWindowMSW::HandleClipboardEvent(WXUINT nMsg)
78c91815 5866{
17a04304
VZ
5867 const wxEventType type = nMsg == WM_CUT ? wxEVT_COMMAND_TEXT_CUT
5868 : nMsg == WM_COPY ? wxEVT_COMMAND_TEXT_COPY
5869 : /* nMsg == WM_PASTE */ wxEVT_COMMAND_TEXT_PASTE;
78c91815
VZ
5870 wxClipboardTextEvent evt(type, GetId());
5871
5872 evt.SetEventObject(this);
5873
937013e0 5874 return HandleWindowEvent(evt);
78c91815
VZ
5875}
5876
42e69d6b
VZ
5877// ---------------------------------------------------------------------------
5878// joystick
5879// ---------------------------------------------------------------------------
5880
1e6feb95 5881bool wxWindowMSW::HandleJoystickEvent(WXUINT msg, int x, int y, WXUINT flags)
2bda0e17 5882{
8cb172b4 5883#ifdef JOY_BUTTON1
42e69d6b
VZ
5884 int change = 0;
5885 if ( flags & JOY_BUTTON1CHG )
5886 change = wxJOY_BUTTON1;
5887 if ( flags & JOY_BUTTON2CHG )
5888 change = wxJOY_BUTTON2;
5889 if ( flags & JOY_BUTTON3CHG )
5890 change = wxJOY_BUTTON3;
5891 if ( flags & JOY_BUTTON4CHG )
5892 change = wxJOY_BUTTON4;
2bda0e17 5893
42e69d6b
VZ
5894 int buttons = 0;
5895 if ( flags & JOY_BUTTON1 )
5896 buttons |= wxJOY_BUTTON1;
5897 if ( flags & JOY_BUTTON2 )
5898 buttons |= wxJOY_BUTTON2;
5899 if ( flags & JOY_BUTTON3 )
5900 buttons |= wxJOY_BUTTON3;
5901 if ( flags & JOY_BUTTON4 )
5902 buttons |= wxJOY_BUTTON4;
c085e333 5903
42e69d6b
VZ
5904 // the event ids aren't consecutive so we can't use table based lookup
5905 int joystick;
5906 wxEventType eventType;
5907 switch ( msg )
5908 {
5909 case MM_JOY1MOVE:
5910 joystick = 1;
5911 eventType = wxEVT_JOY_MOVE;
5912 break;
2bda0e17 5913
42e69d6b
VZ
5914 case MM_JOY2MOVE:
5915 joystick = 2;
5916 eventType = wxEVT_JOY_MOVE;
5917 break;
2bda0e17 5918
42e69d6b
VZ
5919 case MM_JOY1ZMOVE:
5920 joystick = 1;
5921 eventType = wxEVT_JOY_ZMOVE;
5922 break;
2bda0e17 5923
42e69d6b
VZ
5924 case MM_JOY2ZMOVE:
5925 joystick = 2;
5926 eventType = wxEVT_JOY_ZMOVE;
5927 break;
2bda0e17 5928
42e69d6b
VZ
5929 case MM_JOY1BUTTONDOWN:
5930 joystick = 1;
5931 eventType = wxEVT_JOY_BUTTON_DOWN;
5932 break;
2bda0e17 5933
42e69d6b
VZ
5934 case MM_JOY2BUTTONDOWN:
5935 joystick = 2;
5936 eventType = wxEVT_JOY_BUTTON_DOWN;
5937 break;
2bda0e17 5938
42e69d6b
VZ
5939 case MM_JOY1BUTTONUP:
5940 joystick = 1;
5941 eventType = wxEVT_JOY_BUTTON_UP;
5942 break;
5943
5944 case MM_JOY2BUTTONUP:
5945 joystick = 2;
5946 eventType = wxEVT_JOY_BUTTON_UP;
5947 break;
5948
5949 default:
223d09f6 5950 wxFAIL_MSG(wxT("no such joystick event"));
2d0a075d 5951
08158721 5952 return false;
2d0a075d 5953 }
2bda0e17 5954
42e69d6b
VZ
5955 wxJoystickEvent event(eventType, buttons, joystick, change);
5956 event.SetPosition(wxPoint(x, y));
5957 event.SetEventObject(this);
c085e333 5958
937013e0 5959 return HandleWindowEvent(event);
8cb172b4 5960#else
991420e6
WS
5961 wxUnusedVar(msg);
5962 wxUnusedVar(x);
5963 wxUnusedVar(y);
5964 wxUnusedVar(flags);
08158721 5965 return false;
8cb172b4 5966#endif
2bda0e17
KB
5967}
5968
42e69d6b
VZ
5969// ---------------------------------------------------------------------------
5970// scrolling
5971// ---------------------------------------------------------------------------
5972
1e6feb95 5973bool wxWindowMSW::MSWOnScroll(int orientation, WXWORD wParam,
f4f734c1 5974 WXWORD pos, WXHWND control)
35bbb0c6 5975{
a0d924c6 5976 if ( control && control != m_hWnd ) // Prevent infinite recursion
cc2b7472 5977 {
42e69d6b
VZ
5978 wxWindow *child = wxFindWinFromHandle(control);
5979 if ( child )
5980 return child->MSWOnScroll(orientation, wParam, pos, control);
cc2b7472 5981 }
2bda0e17 5982
9145664b 5983 wxScrollWinEvent event;
42e69d6b
VZ
5984 event.SetPosition(pos);
5985 event.SetOrientation(orientation);
687706f5 5986 event.SetEventObject(this);
cc2b7472 5987
42e69d6b
VZ
5988 switch ( wParam )
5989 {
5990 case SB_TOP:
687706f5 5991 event.SetEventType(wxEVT_SCROLLWIN_TOP);
42e69d6b 5992 break;
cc2b7472 5993
42e69d6b 5994 case SB_BOTTOM:
687706f5 5995 event.SetEventType(wxEVT_SCROLLWIN_BOTTOM);
42e69d6b 5996 break;
cc2b7472 5997
42e69d6b 5998 case SB_LINEUP:
687706f5 5999 event.SetEventType(wxEVT_SCROLLWIN_LINEUP);
42e69d6b 6000 break;
2bda0e17 6001
42e69d6b 6002 case SB_LINEDOWN:
687706f5 6003 event.SetEventType(wxEVT_SCROLLWIN_LINEDOWN);
42e69d6b 6004 break;
a02eb1d2 6005
42e69d6b 6006 case SB_PAGEUP:
687706f5 6007 event.SetEventType(wxEVT_SCROLLWIN_PAGEUP);
42e69d6b 6008 break;
2bda0e17 6009
42e69d6b 6010 case SB_PAGEDOWN:
687706f5 6011 event.SetEventType(wxEVT_SCROLLWIN_PAGEDOWN);
42e69d6b 6012 break;
2bda0e17 6013
42e69d6b 6014 case SB_THUMBPOSITION:
feda3011 6015 case SB_THUMBTRACK:
f6bcfd97
BP
6016 // under Win32, the scrollbar range and position are 32 bit integers,
6017 // but WM_[HV]SCROLL only carry the low 16 bits of them, so we must
6018 // explicitly query the scrollbar for the correct position (this must
6019 // be done only for these two SB_ events as they are the only one
6020 // carrying the scrollbar position)
6021 {
0cf5de11 6022 WinStruct<SCROLLINFO> scrollInfo;
f6bcfd97
BP
6023 scrollInfo.fMask = SIF_TRACKPOS;
6024
6025 if ( !::GetScrollInfo(GetHwnd(),
1ddb6d28 6026 WXOrientToSB(orientation),
f6bcfd97
BP
6027 &scrollInfo) )
6028 {
3103e8a9 6029 // Not necessarily an error, if there are no scrollbars yet.
9a83f860 6030 // wxLogLastError(wxT("GetScrollInfo"));
f6bcfd97
BP
6031 }
6032
6033 event.SetPosition(scrollInfo.nTrackPos);
6034 }
f6bcfd97 6035
687706f5 6036 event.SetEventType( wParam == SB_THUMBPOSITION
f6bcfd97 6037 ? wxEVT_SCROLLWIN_THUMBRELEASE
687706f5 6038 : wxEVT_SCROLLWIN_THUMBTRACK );
42e69d6b 6039 break;
c085e333 6040
42e69d6b 6041 default:
08158721 6042 return false;
564b2609 6043 }
2bda0e17 6044
937013e0 6045 return HandleWindowEvent(event);
2bda0e17
KB
6046}
6047
5acec112
VZ
6048// ----------------------------------------------------------------------------
6049// custom message handlers
6050// ----------------------------------------------------------------------------
6051
6052/* static */ bool
6053wxWindowMSW::MSWRegisterMessageHandler(int msg, MSWMessageHandler handler)
6054{
6055 wxCHECK_MSG( gs_messageHandlers.find(msg) == gs_messageHandlers.end(),
9a83f860 6056 false, wxT("registering handler for the same message twice") );
5acec112
VZ
6057
6058 gs_messageHandlers[msg] = handler;
6059 return true;
6060}
6061
6062/* static */ void
6063wxWindowMSW::MSWUnregisterMessageHandler(int msg, MSWMessageHandler handler)
6064{
6065 const MSWMessageHandlers::iterator i = gs_messageHandlers.find(msg);
6066 wxCHECK_RET( i != gs_messageHandlers.end() && i->second == handler,
9a83f860 6067 wxT("unregistering non-registered handler?") );
5acec112
VZ
6068
6069 gs_messageHandlers.erase(i);
6070}
6071
42e69d6b
VZ
6072// ===========================================================================
6073// global functions
6074// ===========================================================================
6075
7a5e53ab 6076void wxGetCharSize(WXHWND wnd, int *x, int *y, const wxFont& the_font)
2bda0e17 6077{
42e69d6b
VZ
6078 TEXTMETRIC tm;
6079 HDC dc = ::GetDC((HWND) wnd);
42e69d6b 6080 HFONT was = 0;
35bbb0c6 6081
7a5e53ab
VS
6082 // the_font.UseResource();
6083 // the_font.RealizeResource();
c57c2993 6084 HFONT fnt = (HFONT)the_font.GetResourceHandle(); // const_cast
7a5e53ab
VS
6085 if ( fnt )
6086 was = (HFONT) SelectObject(dc,fnt);
35bbb0c6 6087
42e69d6b 6088 GetTextMetrics(dc, &tm);
7a5e53ab 6089 if ( fnt && was )
2d0a075d 6090 {
42e69d6b 6091 SelectObject(dc,was);
2d0a075d 6092 }
42e69d6b 6093 ReleaseDC((HWND)wnd, dc);
0655ad29
VZ
6094
6095 if ( x )
6096 *x = tm.tmAveCharWidth;
6097 if ( y )
6098 *y = tm.tmHeight + tm.tmExternalLeading;
2bda0e17 6099
7a5e53ab 6100 // the_font.ReleaseResource();
42e69d6b 6101}
c085e333 6102
0c03f52d
VZ
6103// ----------------------------------------------------------------------------
6104// keyboard codes
6105// ----------------------------------------------------------------------------
6106
6107namespace wxMSWKeyboard
6108{
6109
daf9622e
VZ
6110namespace
6111{
6112
e6cef55a
VZ
6113// use the "extended" bit of lParam to distinguish extended keys from normal
6114// keys as the same virtual key code is sent for both by Windows
daf9622e 6115inline
ed5bc8f1 6116int ChooseNormalOrExtended(int lParam, int keyNormal, int keyExtended)
5004c3ad 6117{
ed5bc8f1
VZ
6118 // except that if lParam is 0, it means we don't have real lParam from
6119 // WM_KEYDOWN but are just translating just a VK constant (e.g. done from
6120 // msw/treectrl.cpp when processing TVN_KEYDOWN) -- then assume this is a
6121 // non-numpad (hence extended) key as this is a more common case
e6cef55a 6122 return !lParam || (HIWORD(lParam) & KF_EXTENDED) ? keyExtended : keyNormal;
5004c3ad
JG
6123}
6124
d5c21b02 6125// this array contains the Windows virtual key codes which map one to one to
0c03f52d 6126// WXK_xxx constants and is used in wxMSWKeyboard::VKToWX/WXToVK() below
d5c21b02
VZ
6127//
6128// note that keys having a normal and numpad version (e.g. WXK_HOME and
6129// WXK_NUMPAD_HOME) are not included in this table as the mapping is not 1-to-1
daf9622e 6130const struct wxKeyMapping
d5c21b02
VZ
6131{
6132 int vk;
6133 wxKeyCode wxk;
6134} gs_specialKeys[] =
6135{
6136 { VK_CANCEL, WXK_CANCEL },
6137 { VK_BACK, WXK_BACK },
6138 { VK_TAB, WXK_TAB },
6139 { VK_CLEAR, WXK_CLEAR },
6140 { VK_SHIFT, WXK_SHIFT },
6141 { VK_CONTROL, WXK_CONTROL },
6142 { VK_MENU , WXK_ALT },
6143 { VK_PAUSE, WXK_PAUSE },
6144 { VK_CAPITAL, WXK_CAPITAL },
6145 { VK_SPACE, WXK_SPACE },
6146 { VK_ESCAPE, WXK_ESCAPE },
6147 { VK_SELECT, WXK_SELECT },
6148 { VK_PRINT, WXK_PRINT },
6149 { VK_EXECUTE, WXK_EXECUTE },
e59c2b2d
VZ
6150 { VK_SNAPSHOT, WXK_SNAPSHOT },
6151 { VK_HELP, WXK_HELP },
d5c21b02
VZ
6152
6153 { VK_NUMPAD0, WXK_NUMPAD0 },
6154 { VK_NUMPAD1, WXK_NUMPAD1 },
6155 { VK_NUMPAD2, WXK_NUMPAD2 },
6156 { VK_NUMPAD3, WXK_NUMPAD3 },
6157 { VK_NUMPAD4, WXK_NUMPAD4 },
6158 { VK_NUMPAD5, WXK_NUMPAD5 },
6159 { VK_NUMPAD6, WXK_NUMPAD6 },
6160 { VK_NUMPAD7, WXK_NUMPAD7 },
6161 { VK_NUMPAD8, WXK_NUMPAD8 },
6162 { VK_NUMPAD9, WXK_NUMPAD9 },
6163 { VK_MULTIPLY, WXK_NUMPAD_MULTIPLY },
6164 { VK_ADD, WXK_NUMPAD_ADD },
6165 { VK_SUBTRACT, WXK_NUMPAD_SUBTRACT },
6166 { VK_DECIMAL, WXK_NUMPAD_DECIMAL },
6167 { VK_DIVIDE, WXK_NUMPAD_DIVIDE },
6168
6169 { VK_F1, WXK_F1 },
6170 { VK_F2, WXK_F2 },
6171 { VK_F3, WXK_F3 },
6172 { VK_F4, WXK_F4 },
6173 { VK_F5, WXK_F5 },
6174 { VK_F6, WXK_F6 },
6175 { VK_F7, WXK_F7 },
6176 { VK_F8, WXK_F8 },
6177 { VK_F9, WXK_F9 },
6178 { VK_F10, WXK_F10 },
6179 { VK_F11, WXK_F11 },
6180 { VK_F12, WXK_F12 },
6181 { VK_F13, WXK_F13 },
6182 { VK_F14, WXK_F14 },
6183 { VK_F15, WXK_F15 },
6184 { VK_F16, WXK_F16 },
6185 { VK_F17, WXK_F17 },
6186 { VK_F18, WXK_F18 },
6187 { VK_F19, WXK_F19 },
6188 { VK_F20, WXK_F20 },
6189 { VK_F21, WXK_F21 },
6190 { VK_F22, WXK_F22 },
6191 { VK_F23, WXK_F23 },
6192 { VK_F24, WXK_F24 },
6193
6194 { VK_NUMLOCK, WXK_NUMLOCK },
6195 { VK_SCROLL, WXK_SCROLL },
6196
6197#ifdef VK_APPS
6198 { VK_LWIN, WXK_WINDOWS_LEFT },
6199 { VK_RWIN, WXK_WINDOWS_RIGHT },
6200 { VK_APPS, WXK_WINDOWS_MENU },
6201#endif // VK_APPS defined
6202};
6203
daf9622e
VZ
6204} // anonymous namespace
6205
5844ad30 6206int VKToWX(WXWORD vk, WXLPARAM lParam, wchar_t *uc)
42e69d6b 6207{
5844ad30
VZ
6208 int wxk;
6209
d5c21b02
VZ
6210 // check the table first
6211 for ( size_t n = 0; n < WXSIZEOF(gs_specialKeys); n++ )
6212 {
6213 if ( gs_specialKeys[n].vk == vk )
5844ad30
VZ
6214 {
6215 wxk = gs_specialKeys[n].wxk;
6216 if ( wxk < WXK_START )
6217 {
6218 // Unicode code for this key is the same as its ASCII code.
6219 if ( uc )
6220 *uc = wxk;
6221 }
6222
6223 return wxk;
6224 }
d5c21b02 6225 }
9c7df356 6226
d5c21b02 6227 // keys requiring special handling
d5c21b02
VZ
6228 switch ( vk )
6229 {
5844ad30
VZ
6230 case VK_OEM_1:
6231 case VK_OEM_PLUS:
6232 case VK_OEM_COMMA:
6233 case VK_OEM_MINUS:
6234 case VK_OEM_PERIOD:
6235 case VK_OEM_2:
6236 case VK_OEM_3:
6237 case VK_OEM_4:
6238 case VK_OEM_5:
6239 case VK_OEM_6:
6240 case VK_OEM_7:
6241 // MapVirtualKey() returns 0 if it fails to convert the virtual
6242 // key which nicely corresponds to our WXK_NONE.
6243 wxk = ::MapVirtualKey(vk, MAPVK_VK_TO_CHAR);
6244
6245 if ( HIWORD(wxk) & 0x8000 )
6246 {
6247 // It's a dead key and we don't return anything at all for them
6248 // as we simply don't have any way to indicate the difference
6249 // between e.g. a normal "'" and "'" as a dead key -- and
6250 // generating the same events for them just doesn't seem like a
6251 // good idea.
6252 wxk = WXK_NONE;
6253 }
5844ad30 6254
033428a3
VZ
6255 // In any case return this as a Unicode character value.
6256 if ( uc )
6257 *uc = wxk;
6258
6259 // For compatibility with the old non-Unicode code we continue
6260 // returning key codes for Latin-1 characters directly
6261 // (normally it would really only make sense to do it for the
6262 // ASCII characters, not Latin-1 ones).
6263 if ( wxk > 255 )
6264 {
6265 // But for anything beyond this we can only return the key
6266 // value as a real Unicode character, not a wxKeyCode
6267 // because this enum values clash with Unicode characters
6268 // (e.g. WXK_LBUTTON also happens to be U+012C a.k.a.
6269 // "LATIN CAPITAL LETTER I WITH BREVE").
6270 wxk = WXK_NONE;
5844ad30
VZ
6271 }
6272 break;
702c4208 6273
5004c3ad 6274 // handle extended keys
413553cc 6275 case VK_PRIOR:
d5c21b02 6276 wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_PAGEUP, WXK_PAGEUP);
413553cc 6277 break;
d5c21b02 6278
413553cc 6279 case VK_NEXT:
d5c21b02 6280 wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_PAGEDOWN, WXK_PAGEDOWN);
413553cc 6281 break;
d5c21b02 6282
413553cc 6283 case VK_END:
d5c21b02 6284 wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_END, WXK_END);
413553cc 6285 break;
d5c21b02 6286
413553cc 6287 case VK_HOME:
d5c21b02 6288 wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_HOME, WXK_HOME);
413553cc 6289 break;
d5c21b02 6290
413553cc 6291 case VK_LEFT:
d5c21b02 6292 wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_LEFT, WXK_LEFT);
413553cc 6293 break;
d5c21b02 6294
413553cc 6295 case VK_UP:
d5c21b02 6296 wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_UP, WXK_UP);
413553cc 6297 break;
d5c21b02 6298
413553cc 6299 case VK_RIGHT:
d5c21b02 6300 wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_RIGHT, WXK_RIGHT);
413553cc 6301 break;
d5c21b02 6302
413553cc 6303 case VK_DOWN:
d5c21b02 6304 wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_DOWN, WXK_DOWN);
413553cc 6305 break;
d5c21b02 6306
413553cc 6307 case VK_INSERT:
d5c21b02 6308 wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_INSERT, WXK_INSERT);
413553cc 6309 break;
d5c21b02 6310
413553cc 6311 case VK_DELETE:
d5c21b02 6312 wxk = ChooseNormalOrExtended(lParam, WXK_NUMPAD_DELETE, WXK_DELETE);
413553cc 6313 break;
d5c21b02 6314
ff792344 6315 case VK_RETURN:
ed5bc8f1
VZ
6316 // don't use ChooseNormalOrExtended() here as the keys are reversed
6317 // here: numpad enter is the extended one
e6cef55a 6318 wxk = HIWORD(lParam) & KF_EXTENDED ? WXK_NUMPAD_ENTER : WXK_RETURN;
ff792344
VZ
6319 break;
6320
f6bcfd97 6321 default:
5844ad30
VZ
6322 if ( (vk >= '0' && vk <= '9') || (vk >= 'A' && vk <= 'Z') )
6323 {
6324 // A simple alphanumeric key and the values of them coincide in
6325 // Windows and wx for both ASCII and Unicode codes.
6326 wxk = vk;
5844ad30
VZ
6327 }
6328 else // Something we simply don't know about at all.
6329 {
6330 wxk = WXK_NONE;
6331 }
033428a3
VZ
6332
6333 if ( uc )
6334 *uc = vk;
d5c21b02
VZ
6335 }
6336
6337 return wxk;
6338}
6339
0c03f52d 6340WXWORD WXToVK(int wxk, bool *isExtended)
d5c21b02 6341{
d5c21b02
VZ
6342 // check the table first
6343 for ( size_t n = 0; n < WXSIZEOF(gs_specialKeys); n++ )
6344 {
6345 if ( gs_specialKeys[n].wxk == wxk )
2dcbc461
VZ
6346 {
6347 // All extended keys (i.e. non-numpad versions of the keys that
6348 // exist both in the numpad and outside of it) are dealt with
6349 // below.
6350 if ( isExtended )
6351 *isExtended = false;
6352
d5c21b02 6353 return gs_specialKeys[n].vk;
2dcbc461 6354 }
d5c21b02
VZ
6355 }
6356
6357 // and then check for special keys not included in the table
2dcbc461 6358 bool extended = false;
d5c21b02
VZ
6359 WXWORD vk;
6360 switch ( wxk )
6361 {
71403278 6362 case WXK_PAGEUP:
2dcbc461 6363 extended = true;
71403278
VZ
6364 case WXK_NUMPAD_PAGEUP:
6365 vk = VK_PRIOR;
6366 break;
6367
6368 case WXK_PAGEDOWN:
2dcbc461 6369 extended = true;
71403278
VZ
6370 case WXK_NUMPAD_PAGEDOWN:
6371 vk = VK_NEXT;
6372 break;
6373
6374 case WXK_END:
2dcbc461 6375 extended = true;
71403278
VZ
6376 case WXK_NUMPAD_END:
6377 vk = VK_END;
6378 break;
6379
6380 case WXK_HOME:
2dcbc461 6381 extended = true;
71403278
VZ
6382 case WXK_NUMPAD_HOME:
6383 vk = VK_HOME;
6384 break;
6385
6386 case WXK_LEFT:
2dcbc461 6387 extended = true;
71403278
VZ
6388 case WXK_NUMPAD_LEFT:
6389 vk = VK_LEFT;
6390 break;
6391
6392 case WXK_UP:
2dcbc461 6393 extended = true;
71403278
VZ
6394 case WXK_NUMPAD_UP:
6395 vk = VK_UP;
6396 break;
6397
6398 case WXK_RIGHT:
2dcbc461 6399 extended = true;
71403278
VZ
6400 case WXK_NUMPAD_RIGHT:
6401 vk = VK_RIGHT;
6402 break;
6403
6404 case WXK_DOWN:
2dcbc461 6405 extended = true;
71403278
VZ
6406 case WXK_NUMPAD_DOWN:
6407 vk = VK_DOWN;
6408 break;
6409
6410 case WXK_INSERT:
2dcbc461 6411 extended = true;
71403278
VZ
6412 case WXK_NUMPAD_INSERT:
6413 vk = VK_INSERT;
6414 break;
6415
6416 case WXK_DELETE:
2dcbc461 6417 extended = true;
71403278
VZ
6418 case WXK_NUMPAD_DELETE:
6419 vk = VK_DELETE;
6420 break;
d5c21b02
VZ
6421
6422 default:
d9fda37b
VZ
6423 // no VkKeyScan() under CE unfortunately, we need to test how does
6424 // it handle OEM keys
6425#ifndef __WXWINCE__
ad294cb8
VZ
6426 // check to see if its one of the OEM key codes.
6427 BYTE vks = LOBYTE(VkKeyScan(wxk));
6e3e6c8e 6428 if ( vks != 0xff )
ad294cb8
VZ
6429 {
6430 vk = vks;
6431 }
6432 else
d9fda37b 6433#endif // !__WXWINCE__
ad294cb8 6434 {
ad294cb8
VZ
6435 vk = (WXWORD)wxk;
6436 }
2bda0e17 6437 }
d5c21b02 6438
2dcbc461
VZ
6439 if ( isExtended )
6440 *isExtended = extended;
6441
d5c21b02
VZ
6442 return vk;
6443}
6444
0c03f52d
VZ
6445} // namespace wxMSWKeyboard
6446
d5c21b02
VZ
6447// small helper for wxGetKeyState() and wxGetMouseState()
6448static inline bool wxIsKeyDown(WXWORD vk)
6449{
d9fda37b
VZ
6450 // SM_SWAPBUTTON is not available under CE, so don't swap buttons there
6451#ifdef SM_SWAPBUTTON
6452 if ( vk == VK_LBUTTON || vk == VK_RBUTTON )
b8f434e7 6453 {
d9fda37b
VZ
6454 if ( ::GetSystemMetrics(SM_SWAPBUTTON) )
6455 {
6456 if ( vk == VK_LBUTTON )
6457 vk = VK_RBUTTON;
6458 else // vk == VK_RBUTTON
6459 vk = VK_LBUTTON;
6460 }
b8f434e7 6461 }
d9fda37b
VZ
6462#endif // SM_SWAPBUTTON
6463
d5c21b02
VZ
6464 // the low order bit indicates whether the key was pressed since the last
6465 // call and the high order one indicates whether it is down right now and
6466 // we only want that one
b8f434e7 6467 return (GetAsyncKeyState(vk) & (1<<15)) != 0;
2bda0e17
KB
6468}
6469
1751226c 6470bool wxGetKeyState(wxKeyCode key)
6ed892f3 6471{
d5c21b02
VZ
6472 // although this does work under Windows, it is not supported under other
6473 // platforms so don't allow it, you must use wxGetMouseState() instead
6474 wxASSERT_MSG( key != VK_LBUTTON &&
6475 key != VK_RBUTTON &&
6476 key != VK_MBUTTON,
6477 wxT("can't use wxGetKeyState() for mouse buttons") );
6ed892f3 6478
0c03f52d 6479 const WXWORD vk = wxMSWKeyboard::WXToVK(key);
44353523 6480
d5c21b02
VZ
6481 // if the requested key is a LED key, return true if the led is pressed
6482 if ( key == WXK_NUMLOCK || key == WXK_CAPITAL || key == WXK_SCROLL )
fdec2c05 6483 {
d5c21b02
VZ
6484 // low order bit means LED is highlighted and high order one means the
6485 // key is down; for compatibility with the other ports return true if
6486 // either one is set
b8f434e7 6487 return GetKeyState(vk) != 0;
35bbb0c6 6488
fdec2c05 6489 }
d5c21b02 6490 else // normal key
84c51ddf 6491 {
d5c21b02 6492 return wxIsKeyDown(vk);
84c51ddf 6493 }
6ed892f3
RN
6494}
6495
7dd40b6f
RD
6496
6497wxMouseState wxGetMouseState()
6498{
6499 wxMouseState ms;
6500 POINT pt;
d6c37f5b 6501 wxGetCursorPosMSW(&pt);
7dd40b6f
RD
6502
6503 ms.SetX(pt.x);
6504 ms.SetY(pt.y);
d5c21b02
VZ
6505 ms.SetLeftDown(wxIsKeyDown(VK_LBUTTON));
6506 ms.SetMiddleDown(wxIsKeyDown(VK_MBUTTON));
6507 ms.SetRightDown(wxIsKeyDown(VK_RBUTTON));
2f68482e 6508#ifdef wxHAS_XBUTTON
01101e2d
VZ
6509 ms.SetAux1Down(wxIsKeyDown(VK_XBUTTON1));
6510 ms.SetAux2Down(wxIsKeyDown(VK_XBUTTON2));
2f68482e 6511#endif // wxHAS_XBUTTON
dd28827a 6512
6719c06a
VZ
6513 ms.SetControlDown(wxIsCtrlDown ());
6514 ms.SetShiftDown (wxIsShiftDown());
6515 ms.SetAltDown (wxIsAltDown ());
7dd40b6f 6516// ms.SetMetaDown();
dd28827a 6517
7dd40b6f
RD
6518 return ms;
6519}
6520
6521
42e69d6b 6522wxWindow *wxGetActiveWindow()
2bda0e17 6523{
42e69d6b
VZ
6524 HWND hWnd = GetActiveWindow();
6525 if ( hWnd != 0 )
2d0a075d 6526 {
dca0f651 6527 return wxFindWinFromHandle(hWnd);
2d0a075d 6528 }
42e69d6b 6529 return NULL;
2bda0e17
KB
6530}
6531
8614c467
VZ
6532extern wxWindow *wxGetWindowFromHWND(WXHWND hWnd)
6533{
6534 HWND hwnd = (HWND)hWnd;
6535
6536 // For a radiobutton, we get the radiobox from GWL_USERDATA (which is set
6537 // by code in msw/radiobox.cpp), for all the others we just search up the
6538 // window hierarchy
d3b9f782 6539 wxWindow *win = NULL;
8614c467
VZ
6540 if ( hwnd )
6541 {
dca0f651 6542 win = wxFindWinFromHandle(hwnd);
8614c467
VZ
6543 if ( !win )
6544 {
402bacb3 6545#if wxUSE_RADIOBOX && !defined(__WXUNIVERSAL__)
8614c467
VZ
6546 // native radiobuttons return DLGC_RADIOBUTTON here and for any
6547 // wxWindow class which overrides WM_GETDLGCODE processing to
6548 // do it as well, win would be already non NULL
a2242341 6549 if ( ::SendMessage(hwnd, WM_GETDLGCODE, 0, 0) & DLGC_RADIOBUTTON )
8614c467 6550 {
7ee21e3a 6551 win = wxRadioBox::GetFromRadioButtonHWND(hwnd);
8614c467 6552 }
a2242341
VZ
6553 //else: it's a wxRadioButton, not a radiobutton from wxRadioBox
6554#endif // wxUSE_RADIOBOX
6555
6556 // spin control text buddy window should be mapped to spin ctrl
6557 // itself so try it too
24ce4c18 6558#if wxUSE_SPINCTRL && !defined(__WXUNIVERSAL__)
a2242341
VZ
6559 if ( !win )
6560 {
6561 win = wxSpinCtrl::GetSpinForTextCtrl((WXHWND)hwnd);
6562 }
6563#endif // wxUSE_SPINCTRL
8614c467 6564 }
8614c467
VZ
6565 }
6566
6567 while ( hwnd && !win )
6568 {
761989ff
VZ
6569 // this is a really ugly hack needed to avoid mistakenly returning the
6570 // parent frame wxWindow for the find/replace modeless dialog HWND -
6571 // this, in turn, is needed to call IsDialogMessage() from
6572 // wxApp::ProcessMessage() as for this we must return NULL from here
6573 //
6574 // FIXME: this is clearly not the best way to do it but I think we'll
6575 // need to change HWND <-> wxWindow code more heavily than I can
6576 // do it now to fix it
c67d6888 6577#ifndef __WXMICROWIN__
761989ff
VZ
6578 if ( ::GetWindow(hwnd, GW_OWNER) )
6579 {
6580 // it's a dialog box, don't go upwards
6581 break;
6582 }
c67d6888 6583#endif
761989ff 6584
8614c467 6585 hwnd = ::GetParent(hwnd);
dca0f651 6586 win = wxFindWinFromHandle(hwnd);
8614c467
VZ
6587 }
6588
6589 return win;
6590}
6591
7f0586ef 6592#if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
04ef50df 6593
42e69d6b
VZ
6594// Windows keyboard hook. Allows interception of e.g. F1, ESCAPE
6595// in active frames and dialogs, regardless of where the focus is.
6596static HHOOK wxTheKeyboardHook = 0;
2bda0e17 6597
23c26b99 6598int APIENTRY
42e69d6b 6599wxKeyboardHook(int nCode, WORD wParam, DWORD lParam)
2bda0e17 6600{
42e69d6b
VZ
6601 DWORD hiWord = HIWORD(lParam);
6602 if ( nCode != HC_NOREMOVE && ((hiWord & KF_UP) == 0) )
43d811ea 6603 {
246117d4
VZ
6604 wchar_t uc;
6605 int id = wxMSWKeyboard::VKToWX(wParam, lParam, &uc);
982bc2e4
VZ
6606
6607 // Don't intercept keyboard entry (notably Escape) if a modal window
6608 // (not managed by wx, e.g. IME one) is currently opened as more often
6609 // than not it needs all the keys for itself.
5c16a699
VZ
6610 //
6611 // Also don't catch it if a window currently captures the mouse as
6612 // Escape is normally used to release the mouse capture and if you
6613 // really need to catch all the keys in the window that has mouse
6614 // capture it can be easily done in its own EVT_CHAR handler as it is
6615 // certain to have focus while it has the capture.
6616 if ( !gs_modalEntryWindowCount && !::GetCapture() )
982bc2e4
VZ
6617 {
6618 if ( id != WXK_NONE
033428a3 6619#if wxUSE_UNICODE
982bc2e4 6620 || static_cast<int>(uc) != WXK_NONE
033428a3 6621#endif // wxUSE_UNICODE
982bc2e4
VZ
6622 )
6623 {
6624 const wxWindow * const win = wxGetActiveWindow();
246117d4 6625
982bc2e4
VZ
6626 wxKeyEvent event(wxEVT_CHAR_HOOK);
6627 MSWInitAnyKeyEvent(event, wParam, lParam, win);
c085e333 6628
982bc2e4 6629 event.m_keyCode = id;
246117d4 6630#if wxUSE_UNICODE
982bc2e4 6631 event.m_uniChar = uc;
246117d4
VZ
6632#endif // wxUSE_UNICODE
6633
982bc2e4
VZ
6634 wxEvtHandler * const handler = win ? win->GetEventHandler()
6635 : wxTheApp;
32de7d24 6636
982bc2e4
VZ
6637 if ( handler && handler->ProcessEvent(event) )
6638 {
6639 // processed
6640 return 1;
6641 }
42e69d6b 6642 }
43d811ea
JS
6643 }
6644 }
32de7d24 6645
42e69d6b 6646 return (int)CallNextHookEx(wxTheKeyboardHook, nCode, wParam, lParam);
4fabb575 6647}
cd4453e5 6648
23c26b99
VZ
6649void wxSetKeyboardHook(bool doIt)
6650{
6651 if ( doIt )
6652 {
6653 wxTheKeyboardHook = ::SetWindowsHookEx
6654 (
6655 WH_KEYBOARD,
6656 (HOOKPROC)wxKeyboardHook,
6657 NULL, // must be NULL for process hook
6658 ::GetCurrentThreadId()
6659 );
6660 if ( !wxTheKeyboardHook )
6661 {
9a83f860 6662 wxLogLastError(wxT("SetWindowsHookEx(wxKeyboardHook)"));
23c26b99
VZ
6663 }
6664 }
6665 else // uninstall
6666 {
6667 if ( wxTheKeyboardHook )
6668 ::UnhookWindowsHookEx(wxTheKeyboardHook);
6669 }
6670}
6671
cd4453e5 6672#endif // !__WXMICROWIN__
4fabb575 6673
50e08f9d 6674#if wxDEBUG_LEVEL >= 2
4a712ba3 6675const wxChar *wxGetMessageName(int message)
47cbd6da 6676{
42e69d6b
VZ
6677 switch ( message )
6678 {
4a712ba3
VZ
6679 case 0x0000: return wxT("WM_NULL");
6680 case 0x0001: return wxT("WM_CREATE");
6681 case 0x0002: return wxT("WM_DESTROY");
6682 case 0x0003: return wxT("WM_MOVE");
6683 case 0x0005: return wxT("WM_SIZE");
6684 case 0x0006: return wxT("WM_ACTIVATE");
6685 case 0x0007: return wxT("WM_SETFOCUS");
6686 case 0x0008: return wxT("WM_KILLFOCUS");
6687 case 0x000A: return wxT("WM_ENABLE");
6688 case 0x000B: return wxT("WM_SETREDRAW");
6689 case 0x000C: return wxT("WM_SETTEXT");
6690 case 0x000D: return wxT("WM_GETTEXT");
6691 case 0x000E: return wxT("WM_GETTEXTLENGTH");
6692 case 0x000F: return wxT("WM_PAINT");
6693 case 0x0010: return wxT("WM_CLOSE");
6694 case 0x0011: return wxT("WM_QUERYENDSESSION");
6695 case 0x0012: return wxT("WM_QUIT");
6696 case 0x0013: return wxT("WM_QUERYOPEN");
6697 case 0x0014: return wxT("WM_ERASEBKGND");
6698 case 0x0015: return wxT("WM_SYSCOLORCHANGE");
6699 case 0x0016: return wxT("WM_ENDSESSION");
6700 case 0x0017: return wxT("WM_SYSTEMERROR");
6701 case 0x0018: return wxT("WM_SHOWWINDOW");
6702 case 0x0019: return wxT("WM_CTLCOLOR");
6703 case 0x001A: return wxT("WM_WININICHANGE");
6704 case 0x001B: return wxT("WM_DEVMODECHANGE");
6705 case 0x001C: return wxT("WM_ACTIVATEAPP");
6706 case 0x001D: return wxT("WM_FONTCHANGE");
6707 case 0x001E: return wxT("WM_TIMECHANGE");
6708 case 0x001F: return wxT("WM_CANCELMODE");
6709 case 0x0020: return wxT("WM_SETCURSOR");
6710 case 0x0021: return wxT("WM_MOUSEACTIVATE");
6711 case 0x0022: return wxT("WM_CHILDACTIVATE");
6712 case 0x0023: return wxT("WM_QUEUESYNC");
6713 case 0x0024: return wxT("WM_GETMINMAXINFO");
6714 case 0x0026: return wxT("WM_PAINTICON");
6715 case 0x0027: return wxT("WM_ICONERASEBKGND");
6716 case 0x0028: return wxT("WM_NEXTDLGCTL");
6717 case 0x002A: return wxT("WM_SPOOLERSTATUS");
6718 case 0x002B: return wxT("WM_DRAWITEM");
6719 case 0x002C: return wxT("WM_MEASUREITEM");
6720 case 0x002D: return wxT("WM_DELETEITEM");
6721 case 0x002E: return wxT("WM_VKEYTOITEM");
6722 case 0x002F: return wxT("WM_CHARTOITEM");
6723 case 0x0030: return wxT("WM_SETFONT");
6724 case 0x0031: return wxT("WM_GETFONT");
6725 case 0x0037: return wxT("WM_QUERYDRAGICON");
6726 case 0x0039: return wxT("WM_COMPAREITEM");
6727 case 0x0041: return wxT("WM_COMPACTING");
6728 case 0x0044: return wxT("WM_COMMNOTIFY");
6729 case 0x0046: return wxT("WM_WINDOWPOSCHANGING");
6730 case 0x0047: return wxT("WM_WINDOWPOSCHANGED");
6731 case 0x0048: return wxT("WM_POWER");
6732
6733 case 0x004A: return wxT("WM_COPYDATA");
6734 case 0x004B: return wxT("WM_CANCELJOURNAL");
6735 case 0x004E: return wxT("WM_NOTIFY");
6736 case 0x0050: return wxT("WM_INPUTLANGCHANGEREQUEST");
6737 case 0x0051: return wxT("WM_INPUTLANGCHANGE");
6738 case 0x0052: return wxT("WM_TCARD");
6739 case 0x0053: return wxT("WM_HELP");
6740 case 0x0054: return wxT("WM_USERCHANGED");
6741 case 0x0055: return wxT("WM_NOTIFYFORMAT");
6742 case 0x007B: return wxT("WM_CONTEXTMENU");
6743 case 0x007C: return wxT("WM_STYLECHANGING");
6744 case 0x007D: return wxT("WM_STYLECHANGED");
6745 case 0x007E: return wxT("WM_DISPLAYCHANGE");
6746 case 0x007F: return wxT("WM_GETICON");
6747 case 0x0080: return wxT("WM_SETICON");
6748
6749 case 0x0081: return wxT("WM_NCCREATE");
6750 case 0x0082: return wxT("WM_NCDESTROY");
6751 case 0x0083: return wxT("WM_NCCALCSIZE");
6752 case 0x0084: return wxT("WM_NCHITTEST");
6753 case 0x0085: return wxT("WM_NCPAINT");
6754 case 0x0086: return wxT("WM_NCACTIVATE");
6755 case 0x0087: return wxT("WM_GETDLGCODE");
6756 case 0x00A0: return wxT("WM_NCMOUSEMOVE");
6757 case 0x00A1: return wxT("WM_NCLBUTTONDOWN");
6758 case 0x00A2: return wxT("WM_NCLBUTTONUP");
6759 case 0x00A3: return wxT("WM_NCLBUTTONDBLCLK");
6760 case 0x00A4: return wxT("WM_NCRBUTTONDOWN");
6761 case 0x00A5: return wxT("WM_NCRBUTTONUP");
6762 case 0x00A6: return wxT("WM_NCRBUTTONDBLCLK");
6763 case 0x00A7: return wxT("WM_NCMBUTTONDOWN");
6764 case 0x00A8: return wxT("WM_NCMBUTTONUP");
6765 case 0x00A9: return wxT("WM_NCMBUTTONDBLCLK");
609da8bb
VZ
6766
6767 case 0x00B0: return wxT("EM_GETSEL");
6768 case 0x00B1: return wxT("EM_SETSEL");
6769 case 0x00B2: return wxT("EM_GETRECT");
6770 case 0x00B3: return wxT("EM_SETRECT");
6771 case 0x00B4: return wxT("EM_SETRECTNP");
6772 case 0x00B5: return wxT("EM_SCROLL");
6773 case 0x00B6: return wxT("EM_LINESCROLL");
6774 case 0x00B7: return wxT("EM_SCROLLCARET");
6775 case 0x00B8: return wxT("EM_GETMODIFY");
6776 case 0x00B9: return wxT("EM_SETMODIFY");
6777 case 0x00BA: return wxT("EM_GETLINECOUNT");
6778 case 0x00BB: return wxT("EM_LINEINDEX");
6779 case 0x00BC: return wxT("EM_SETHANDLE");
6780 case 0x00BD: return wxT("EM_GETHANDLE");
6781 case 0x00BE: return wxT("EM_GETTHUMB");
6782 case 0x00C1: return wxT("EM_LINELENGTH");
6783 case 0x00C2: return wxT("EM_REPLACESEL");
6784 case 0x00C4: return wxT("EM_GETLINE");
6785 case 0x00C5: return wxT("EM_LIMITTEXT/EM_SETLIMITTEXT"); /* ;win40 Name change */
6786 case 0x00C6: return wxT("EM_CANUNDO");
6787 case 0x00C7: return wxT("EM_UNDO");
6788 case 0x00C8: return wxT("EM_FMTLINES");
6789 case 0x00C9: return wxT("EM_LINEFROMCHAR");
6790 case 0x00CB: return wxT("EM_SETTABSTOPS");
6791 case 0x00CC: return wxT("EM_SETPASSWORDCHAR");
6792 case 0x00CD: return wxT("EM_EMPTYUNDOBUFFER");
6793 case 0x00CE: return wxT("EM_GETFIRSTVISIBLELINE");
6794 case 0x00CF: return wxT("EM_SETREADONLY");
6795 case 0x00D0: return wxT("EM_SETWORDBREAKPROC");
6796 case 0x00D1: return wxT("EM_GETWORDBREAKPROC");
6797 case 0x00D2: return wxT("EM_GETPASSWORDCHAR");
6798 case 0x00D3: return wxT("EM_SETMARGINS");
6799 case 0x00D4: return wxT("EM_GETMARGINS");
6800 case 0x00D5: return wxT("EM_GETLIMITTEXT");
6801 case 0x00D6: return wxT("EM_POSFROMCHAR");
6802 case 0x00D7: return wxT("EM_CHARFROMPOS");
6803 case 0x00D8: return wxT("EM_SETIMESTATUS");
6804 case 0x00D9: return wxT("EM_GETIMESTATUS");
6805
4a712ba3
VZ
6806 case 0x0100: return wxT("WM_KEYDOWN");
6807 case 0x0101: return wxT("WM_KEYUP");
6808 case 0x0102: return wxT("WM_CHAR");
6809 case 0x0103: return wxT("WM_DEADCHAR");
6810 case 0x0104: return wxT("WM_SYSKEYDOWN");
6811 case 0x0105: return wxT("WM_SYSKEYUP");
6812 case 0x0106: return wxT("WM_SYSCHAR");
6813 case 0x0107: return wxT("WM_SYSDEADCHAR");
6814 case 0x0108: return wxT("WM_KEYLAST");
6815
6816 case 0x010D: return wxT("WM_IME_STARTCOMPOSITION");
6817 case 0x010E: return wxT("WM_IME_ENDCOMPOSITION");
6818 case 0x010F: return wxT("WM_IME_COMPOSITION");
6819
6820 case 0x0110: return wxT("WM_INITDIALOG");
6821 case 0x0111: return wxT("WM_COMMAND");
6822 case 0x0112: return wxT("WM_SYSCOMMAND");
6823 case 0x0113: return wxT("WM_TIMER");
6824 case 0x0114: return wxT("WM_HSCROLL");
6825 case 0x0115: return wxT("WM_VSCROLL");
6826 case 0x0116: return wxT("WM_INITMENU");
6827 case 0x0117: return wxT("WM_INITMENUPOPUP");
6828 case 0x011F: return wxT("WM_MENUSELECT");
6829 case 0x0120: return wxT("WM_MENUCHAR");
6830 case 0x0121: return wxT("WM_ENTERIDLE");
609da8bb 6831
ff9b9665
VZ
6832 case 0x0127: return wxT("WM_CHANGEUISTATE");
6833 case 0x0128: return wxT("WM_UPDATEUISTATE");
6834 case 0x0129: return wxT("WM_QUERYUISTATE");
6835
609da8bb
VZ
6836 case 0x0132: return wxT("WM_CTLCOLORMSGBOX");
6837 case 0x0133: return wxT("WM_CTLCOLOREDIT");
6838 case 0x0134: return wxT("WM_CTLCOLORLISTBOX");
6839 case 0x0135: return wxT("WM_CTLCOLORBTN");
6840 case 0x0136: return wxT("WM_CTLCOLORDLG");
6841 case 0x0137: return wxT("WM_CTLCOLORSCROLLBAR");
6842 case 0x0138: return wxT("WM_CTLCOLORSTATIC");
6843 case 0x01E1: return wxT("MN_GETHMENU");
6844
4a712ba3
VZ
6845 case 0x0200: return wxT("WM_MOUSEMOVE");
6846 case 0x0201: return wxT("WM_LBUTTONDOWN");
6847 case 0x0202: return wxT("WM_LBUTTONUP");
6848 case 0x0203: return wxT("WM_LBUTTONDBLCLK");
6849 case 0x0204: return wxT("WM_RBUTTONDOWN");
6850 case 0x0205: return wxT("WM_RBUTTONUP");
6851 case 0x0206: return wxT("WM_RBUTTONDBLCLK");
6852 case 0x0207: return wxT("WM_MBUTTONDOWN");
6853 case 0x0208: return wxT("WM_MBUTTONUP");
6854 case 0x0209: return wxT("WM_MBUTTONDBLCLK");
6855 case 0x020A: return wxT("WM_MOUSEWHEEL");
01101e2d
VZ
6856 case 0x020B: return wxT("WM_XBUTTONDOWN");
6857 case 0x020C: return wxT("WM_XBUTTONUP");
6858 case 0x020D: return wxT("WM_XBUTTONDBLCLK");
4a712ba3
VZ
6859 case 0x0210: return wxT("WM_PARENTNOTIFY");
6860 case 0x0211: return wxT("WM_ENTERMENULOOP");
6861 case 0x0212: return wxT("WM_EXITMENULOOP");
6862
6863 case 0x0213: return wxT("WM_NEXTMENU");
6864 case 0x0214: return wxT("WM_SIZING");
6865 case 0x0215: return wxT("WM_CAPTURECHANGED");
6866 case 0x0216: return wxT("WM_MOVING");
6867 case 0x0218: return wxT("WM_POWERBROADCAST");
6868 case 0x0219: return wxT("WM_DEVICECHANGE");
6869
6870 case 0x0220: return wxT("WM_MDICREATE");
6871 case 0x0221: return wxT("WM_MDIDESTROY");
6872 case 0x0222: return wxT("WM_MDIACTIVATE");
6873 case 0x0223: return wxT("WM_MDIRESTORE");
6874 case 0x0224: return wxT("WM_MDINEXT");
6875 case 0x0225: return wxT("WM_MDIMAXIMIZE");
6876 case 0x0226: return wxT("WM_MDITILE");
6877 case 0x0227: return wxT("WM_MDICASCADE");
6878 case 0x0228: return wxT("WM_MDIICONARRANGE");
6879 case 0x0229: return wxT("WM_MDIGETACTIVE");
6880 case 0x0230: return wxT("WM_MDISETMENU");
6881 case 0x0233: return wxT("WM_DROPFILES");
6882
6883 case 0x0281: return wxT("WM_IME_SETCONTEXT");
6884 case 0x0282: return wxT("WM_IME_NOTIFY");
6885 case 0x0283: return wxT("WM_IME_CONTROL");
6886 case 0x0284: return wxT("WM_IME_COMPOSITIONFULL");
6887 case 0x0285: return wxT("WM_IME_SELECT");
6888 case 0x0286: return wxT("WM_IME_CHAR");
6889 case 0x0290: return wxT("WM_IME_KEYDOWN");
6890 case 0x0291: return wxT("WM_IME_KEYUP");
6891
609da8bb
VZ
6892 case 0x02A0: return wxT("WM_NCMOUSEHOVER");
6893 case 0x02A1: return wxT("WM_MOUSEHOVER");
6894 case 0x02A2: return wxT("WM_NCMOUSELEAVE");
6895 case 0x02A3: return wxT("WM_MOUSELEAVE");
6896
4a712ba3
VZ
6897 case 0x0300: return wxT("WM_CUT");
6898 case 0x0301: return wxT("WM_COPY");
6899 case 0x0302: return wxT("WM_PASTE");
6900 case 0x0303: return wxT("WM_CLEAR");
6901 case 0x0304: return wxT("WM_UNDO");
6902 case 0x0305: return wxT("WM_RENDERFORMAT");
6903 case 0x0306: return wxT("WM_RENDERALLFORMATS");
6904 case 0x0307: return wxT("WM_DESTROYCLIPBOARD");
6905 case 0x0308: return wxT("WM_DRAWCLIPBOARD");
6906 case 0x0309: return wxT("WM_PAINTCLIPBOARD");
6907 case 0x030A: return wxT("WM_VSCROLLCLIPBOARD");
6908 case 0x030B: return wxT("WM_SIZECLIPBOARD");
6909 case 0x030C: return wxT("WM_ASKCBFORMATNAME");
6910 case 0x030D: return wxT("WM_CHANGECBCHAIN");
6911 case 0x030E: return wxT("WM_HSCROLLCLIPBOARD");
6912 case 0x030F: return wxT("WM_QUERYNEWPALETTE");
6913 case 0x0310: return wxT("WM_PALETTEISCHANGING");
6914 case 0x0311: return wxT("WM_PALETTECHANGED");
4a712ba3 6915 case 0x0312: return wxT("WM_HOTKEY");
609da8bb
VZ
6916
6917 case 0x0317: return wxT("WM_PRINT");
6918 case 0x0318: return wxT("WM_PRINTCLIENT");
c085e333 6919
2d0a075d
JS
6920 // common controls messages - although they're not strictly speaking
6921 // standard, it's nice to decode them nevertheless
a02eb1d2 6922
2d0a075d 6923 // listview
4a712ba3
VZ
6924 case 0x1000 + 0: return wxT("LVM_GETBKCOLOR");
6925 case 0x1000 + 1: return wxT("LVM_SETBKCOLOR");
6926 case 0x1000 + 2: return wxT("LVM_GETIMAGELIST");
6927 case 0x1000 + 3: return wxT("LVM_SETIMAGELIST");
6928 case 0x1000 + 4: return wxT("LVM_GETITEMCOUNT");
6929 case 0x1000 + 5: return wxT("LVM_GETITEMA");
6930 case 0x1000 + 75: return wxT("LVM_GETITEMW");
6931 case 0x1000 + 6: return wxT("LVM_SETITEMA");
6932 case 0x1000 + 76: return wxT("LVM_SETITEMW");
6933 case 0x1000 + 7: return wxT("LVM_INSERTITEMA");
6934 case 0x1000 + 77: return wxT("LVM_INSERTITEMW");
6935 case 0x1000 + 8: return wxT("LVM_DELETEITEM");
6936 case 0x1000 + 9: return wxT("LVM_DELETEALLITEMS");
6937 case 0x1000 + 10: return wxT("LVM_GETCALLBACKMASK");
6938 case 0x1000 + 11: return wxT("LVM_SETCALLBACKMASK");
6939 case 0x1000 + 12: return wxT("LVM_GETNEXTITEM");
6940 case 0x1000 + 13: return wxT("LVM_FINDITEMA");
6941 case 0x1000 + 83: return wxT("LVM_FINDITEMW");
6942 case 0x1000 + 14: return wxT("LVM_GETITEMRECT");
6943 case 0x1000 + 15: return wxT("LVM_SETITEMPOSITION");
6944 case 0x1000 + 16: return wxT("LVM_GETITEMPOSITION");
6945 case 0x1000 + 17: return wxT("LVM_GETSTRINGWIDTHA");
6946 case 0x1000 + 87: return wxT("LVM_GETSTRINGWIDTHW");
6947 case 0x1000 + 18: return wxT("LVM_HITTEST");
6948 case 0x1000 + 19: return wxT("LVM_ENSUREVISIBLE");
6949 case 0x1000 + 20: return wxT("LVM_SCROLL");
6950 case 0x1000 + 21: return wxT("LVM_REDRAWITEMS");
6951 case 0x1000 + 22: return wxT("LVM_ARRANGE");
6952 case 0x1000 + 23: return wxT("LVM_EDITLABELA");
6953 case 0x1000 + 118: return wxT("LVM_EDITLABELW");
6954 case 0x1000 + 24: return wxT("LVM_GETEDITCONTROL");
6955 case 0x1000 + 25: return wxT("LVM_GETCOLUMNA");
6956 case 0x1000 + 95: return wxT("LVM_GETCOLUMNW");
6957 case 0x1000 + 26: return wxT("LVM_SETCOLUMNA");
6958 case 0x1000 + 96: return wxT("LVM_SETCOLUMNW");
6959 case 0x1000 + 27: return wxT("LVM_INSERTCOLUMNA");
6960 case 0x1000 + 97: return wxT("LVM_INSERTCOLUMNW");
6961 case 0x1000 + 28: return wxT("LVM_DELETECOLUMN");
6962 case 0x1000 + 29: return wxT("LVM_GETCOLUMNWIDTH");
6963 case 0x1000 + 30: return wxT("LVM_SETCOLUMNWIDTH");
6964 case 0x1000 + 31: return wxT("LVM_GETHEADER");
6965 case 0x1000 + 33: return wxT("LVM_CREATEDRAGIMAGE");
6966 case 0x1000 + 34: return wxT("LVM_GETVIEWRECT");
6967 case 0x1000 + 35: return wxT("LVM_GETTEXTCOLOR");
6968 case 0x1000 + 36: return wxT("LVM_SETTEXTCOLOR");
6969 case 0x1000 + 37: return wxT("LVM_GETTEXTBKCOLOR");
6970 case 0x1000 + 38: return wxT("LVM_SETTEXTBKCOLOR");
6971 case 0x1000 + 39: return wxT("LVM_GETTOPINDEX");
6972 case 0x1000 + 40: return wxT("LVM_GETCOUNTPERPAGE");
6973 case 0x1000 + 41: return wxT("LVM_GETORIGIN");
6974 case 0x1000 + 42: return wxT("LVM_UPDATE");
6975 case 0x1000 + 43: return wxT("LVM_SETITEMSTATE");
6976 case 0x1000 + 44: return wxT("LVM_GETITEMSTATE");
6977 case 0x1000 + 45: return wxT("LVM_GETITEMTEXTA");
6978 case 0x1000 + 115: return wxT("LVM_GETITEMTEXTW");
6979 case 0x1000 + 46: return wxT("LVM_SETITEMTEXTA");
6980 case 0x1000 + 116: return wxT("LVM_SETITEMTEXTW");
6981 case 0x1000 + 47: return wxT("LVM_SETITEMCOUNT");
6982 case 0x1000 + 48: return wxT("LVM_SORTITEMS");
6983 case 0x1000 + 49: return wxT("LVM_SETITEMPOSITION32");
6984 case 0x1000 + 50: return wxT("LVM_GETSELECTEDCOUNT");
6985 case 0x1000 + 51: return wxT("LVM_GETITEMSPACING");
6986 case 0x1000 + 52: return wxT("LVM_GETISEARCHSTRINGA");
6987 case 0x1000 + 117: return wxT("LVM_GETISEARCHSTRINGW");
6988 case 0x1000 + 53: return wxT("LVM_SETICONSPACING");
6989 case 0x1000 + 54: return wxT("LVM_SETEXTENDEDLISTVIEWSTYLE");
6990 case 0x1000 + 55: return wxT("LVM_GETEXTENDEDLISTVIEWSTYLE");
6991 case 0x1000 + 56: return wxT("LVM_GETSUBITEMRECT");
6992 case 0x1000 + 57: return wxT("LVM_SUBITEMHITTEST");
6993 case 0x1000 + 58: return wxT("LVM_SETCOLUMNORDERARRAY");
6994 case 0x1000 + 59: return wxT("LVM_GETCOLUMNORDERARRAY");
6995 case 0x1000 + 60: return wxT("LVM_SETHOTITEM");
6996 case 0x1000 + 61: return wxT("LVM_GETHOTITEM");
6997 case 0x1000 + 62: return wxT("LVM_SETHOTCURSOR");
6998 case 0x1000 + 63: return wxT("LVM_GETHOTCURSOR");
6999 case 0x1000 + 64: return wxT("LVM_APPROXIMATEVIEWRECT");
7000 case 0x1000 + 65: return wxT("LVM_SETWORKAREA");
c085e333 7001
2d0a075d 7002 // tree view
4a712ba3
VZ
7003 case 0x1100 + 0: return wxT("TVM_INSERTITEMA");
7004 case 0x1100 + 50: return wxT("TVM_INSERTITEMW");
7005 case 0x1100 + 1: return wxT("TVM_DELETEITEM");
7006 case 0x1100 + 2: return wxT("TVM_EXPAND");
7007 case 0x1100 + 4: return wxT("TVM_GETITEMRECT");
7008 case 0x1100 + 5: return wxT("TVM_GETCOUNT");
7009 case 0x1100 + 6: return wxT("TVM_GETINDENT");
7010 case 0x1100 + 7: return wxT("TVM_SETINDENT");
7011 case 0x1100 + 8: return wxT("TVM_GETIMAGELIST");
7012 case 0x1100 + 9: return wxT("TVM_SETIMAGELIST");
7013 case 0x1100 + 10: return wxT("TVM_GETNEXTITEM");
7014 case 0x1100 + 11: return wxT("TVM_SELECTITEM");
7015 case 0x1100 + 12: return wxT("TVM_GETITEMA");
7016 case 0x1100 + 62: return wxT("TVM_GETITEMW");
7017 case 0x1100 + 13: return wxT("TVM_SETITEMA");
7018 case 0x1100 + 63: return wxT("TVM_SETITEMW");
7019 case 0x1100 + 14: return wxT("TVM_EDITLABELA");
7020 case 0x1100 + 65: return wxT("TVM_EDITLABELW");
7021 case 0x1100 + 15: return wxT("TVM_GETEDITCONTROL");
7022 case 0x1100 + 16: return wxT("TVM_GETVISIBLECOUNT");
7023 case 0x1100 + 17: return wxT("TVM_HITTEST");
7024 case 0x1100 + 18: return wxT("TVM_CREATEDRAGIMAGE");
7025 case 0x1100 + 19: return wxT("TVM_SORTCHILDREN");
7026 case 0x1100 + 20: return wxT("TVM_ENSUREVISIBLE");
7027 case 0x1100 + 21: return wxT("TVM_SORTCHILDRENCB");
7028 case 0x1100 + 22: return wxT("TVM_ENDEDITLABELNOW");
7029 case 0x1100 + 23: return wxT("TVM_GETISEARCHSTRINGA");
7030 case 0x1100 + 64: return wxT("TVM_GETISEARCHSTRINGW");
7031 case 0x1100 + 24: return wxT("TVM_SETTOOLTIPS");
7032 case 0x1100 + 25: return wxT("TVM_GETTOOLTIPS");
c085e333 7033
2d0a075d 7034 // header
4a712ba3
VZ
7035 case 0x1200 + 0: return wxT("HDM_GETITEMCOUNT");
7036 case 0x1200 + 1: return wxT("HDM_INSERTITEMA");
7037 case 0x1200 + 10: return wxT("HDM_INSERTITEMW");
7038 case 0x1200 + 2: return wxT("HDM_DELETEITEM");
7039 case 0x1200 + 3: return wxT("HDM_GETITEMA");
7040 case 0x1200 + 11: return wxT("HDM_GETITEMW");
7041 case 0x1200 + 4: return wxT("HDM_SETITEMA");
7042 case 0x1200 + 12: return wxT("HDM_SETITEMW");
7043 case 0x1200 + 5: return wxT("HDM_LAYOUT");
7044 case 0x1200 + 6: return wxT("HDM_HITTEST");
7045 case 0x1200 + 7: return wxT("HDM_GETITEMRECT");
7046 case 0x1200 + 8: return wxT("HDM_SETIMAGELIST");
7047 case 0x1200 + 9: return wxT("HDM_GETIMAGELIST");
7048 case 0x1200 + 15: return wxT("HDM_ORDERTOINDEX");
7049 case 0x1200 + 16: return wxT("HDM_CREATEDRAGIMAGE");
7050 case 0x1200 + 17: return wxT("HDM_GETORDERARRAY");
7051 case 0x1200 + 18: return wxT("HDM_SETORDERARRAY");
7052 case 0x1200 + 19: return wxT("HDM_SETHOTDIVIDER");
c085e333 7053
2d0a075d 7054 // tab control
4a712ba3
VZ
7055 case 0x1300 + 2: return wxT("TCM_GETIMAGELIST");
7056 case 0x1300 + 3: return wxT("TCM_SETIMAGELIST");
7057 case 0x1300 + 4: return wxT("TCM_GETITEMCOUNT");
7058 case 0x1300 + 5: return wxT("TCM_GETITEMA");
7059 case 0x1300 + 60: return wxT("TCM_GETITEMW");
7060 case 0x1300 + 6: return wxT("TCM_SETITEMA");
7061 case 0x1300 + 61: return wxT("TCM_SETITEMW");
7062 case 0x1300 + 7: return wxT("TCM_INSERTITEMA");
7063 case 0x1300 + 62: return wxT("TCM_INSERTITEMW");
7064 case 0x1300 + 8: return wxT("TCM_DELETEITEM");
7065 case 0x1300 + 9: return wxT("TCM_DELETEALLITEMS");
7066 case 0x1300 + 10: return wxT("TCM_GETITEMRECT");
7067 case 0x1300 + 11: return wxT("TCM_GETCURSEL");
7068 case 0x1300 + 12: return wxT("TCM_SETCURSEL");
7069 case 0x1300 + 13: return wxT("TCM_HITTEST");
7070 case 0x1300 + 14: return wxT("TCM_SETITEMEXTRA");
7071 case 0x1300 + 40: return wxT("TCM_ADJUSTRECT");
7072 case 0x1300 + 41: return wxT("TCM_SETITEMSIZE");
7073 case 0x1300 + 42: return wxT("TCM_REMOVEIMAGE");
7074 case 0x1300 + 43: return wxT("TCM_SETPADDING");
7075 case 0x1300 + 44: return wxT("TCM_GETROWCOUNT");
7076 case 0x1300 + 45: return wxT("TCM_GETTOOLTIPS");
7077 case 0x1300 + 46: return wxT("TCM_SETTOOLTIPS");
7078 case 0x1300 + 47: return wxT("TCM_GETCURFOCUS");
7079 case 0x1300 + 48: return wxT("TCM_SETCURFOCUS");
7080 case 0x1300 + 49: return wxT("TCM_SETMINTABWIDTH");
7081 case 0x1300 + 50: return wxT("TCM_DESELECTALL");
c085e333 7082
2d0a075d 7083 // toolbar
4a712ba3
VZ
7084 case WM_USER+1: return wxT("TB_ENABLEBUTTON");
7085 case WM_USER+2: return wxT("TB_CHECKBUTTON");
7086 case WM_USER+3: return wxT("TB_PRESSBUTTON");
7087 case WM_USER+4: return wxT("TB_HIDEBUTTON");
7088 case WM_USER+5: return wxT("TB_INDETERMINATE");
7089 case WM_USER+9: return wxT("TB_ISBUTTONENABLED");
7090 case WM_USER+10: return wxT("TB_ISBUTTONCHECKED");
7091 case WM_USER+11: return wxT("TB_ISBUTTONPRESSED");
7092 case WM_USER+12: return wxT("TB_ISBUTTONHIDDEN");
7093 case WM_USER+13: return wxT("TB_ISBUTTONINDETERMINATE");
7094 case WM_USER+17: return wxT("TB_SETSTATE");
7095 case WM_USER+18: return wxT("TB_GETSTATE");
7096 case WM_USER+19: return wxT("TB_ADDBITMAP");
7097 case WM_USER+20: return wxT("TB_ADDBUTTONS");
7098 case WM_USER+21: return wxT("TB_INSERTBUTTON");
7099 case WM_USER+22: return wxT("TB_DELETEBUTTON");
7100 case WM_USER+23: return wxT("TB_GETBUTTON");
7101 case WM_USER+24: return wxT("TB_BUTTONCOUNT");
7102 case WM_USER+25: return wxT("TB_COMMANDTOINDEX");
7103 case WM_USER+26: return wxT("TB_SAVERESTOREA");
7104 case WM_USER+76: return wxT("TB_SAVERESTOREW");
7105 case WM_USER+27: return wxT("TB_CUSTOMIZE");
7106 case WM_USER+28: return wxT("TB_ADDSTRINGA");
7107 case WM_USER+77: return wxT("TB_ADDSTRINGW");
7108 case WM_USER+29: return wxT("TB_GETITEMRECT");
7109 case WM_USER+30: return wxT("TB_BUTTONSTRUCTSIZE");
7110 case WM_USER+31: return wxT("TB_SETBUTTONSIZE");
7111 case WM_USER+32: return wxT("TB_SETBITMAPSIZE");
7112 case WM_USER+33: return wxT("TB_AUTOSIZE");
7113 case WM_USER+35: return wxT("TB_GETTOOLTIPS");
7114 case WM_USER+36: return wxT("TB_SETTOOLTIPS");
7115 case WM_USER+37: return wxT("TB_SETPARENT");
7116 case WM_USER+39: return wxT("TB_SETROWS");
7117 case WM_USER+40: return wxT("TB_GETROWS");
7118 case WM_USER+42: return wxT("TB_SETCMDID");
7119 case WM_USER+43: return wxT("TB_CHANGEBITMAP");
7120 case WM_USER+44: return wxT("TB_GETBITMAP");
7121 case WM_USER+45: return wxT("TB_GETBUTTONTEXTA");
7122 case WM_USER+75: return wxT("TB_GETBUTTONTEXTW");
7123 case WM_USER+46: return wxT("TB_REPLACEBITMAP");
7124 case WM_USER+47: return wxT("TB_SETINDENT");
7125 case WM_USER+48: return wxT("TB_SETIMAGELIST");
7126 case WM_USER+49: return wxT("TB_GETIMAGELIST");
7127 case WM_USER+50: return wxT("TB_LOADIMAGES");
7128 case WM_USER+51: return wxT("TB_GETRECT");
7129 case WM_USER+52: return wxT("TB_SETHOTIMAGELIST");
7130 case WM_USER+53: return wxT("TB_GETHOTIMAGELIST");
7131 case WM_USER+54: return wxT("TB_SETDISABLEDIMAGELIST");
7132 case WM_USER+55: return wxT("TB_GETDISABLEDIMAGELIST");
7133 case WM_USER+56: return wxT("TB_SETSTYLE");
7134 case WM_USER+57: return wxT("TB_GETSTYLE");
7135 case WM_USER+58: return wxT("TB_GETBUTTONSIZE");
7136 case WM_USER+59: return wxT("TB_SETBUTTONWIDTH");
7137 case WM_USER+60: return wxT("TB_SETMAXTEXTROWS");
7138 case WM_USER+61: return wxT("TB_GETTEXTROWS");
7139 case WM_USER+41: return wxT("TB_GETBITMAPFLAGS");
c085e333 7140
42e69d6b 7141 default:
4a712ba3
VZ
7142 static wxString s_szBuf;
7143 s_szBuf.Printf(wxT("<unknown message = %d>"), message);
7144 return s_szBuf.c_str();
42e69d6b 7145 }
47cbd6da 7146}
4b6a582b 7147#endif // wxDEBUG_LEVEL >= 2
4aff28fc 7148
1e6feb95 7149static TEXTMETRIC wxGetTextMetrics(const wxWindowMSW *win)
f6bcfd97
BP
7150{
7151 // prepare the DC
7152 TEXTMETRIC tm;
7153 HWND hwnd = GetHwndOf(win);
7154 HDC hdc = ::GetDC(hwnd);
7155
7156#if !wxDIALOG_UNIT_COMPATIBILITY
7157 // and select the current font into it
7158 HFONT hfont = GetHfontOf(win->GetFont());
7159 if ( hfont )
7160 {
7161 hfont = (HFONT)::SelectObject(hdc, hfont);
7162 }
7163#endif
7164
7165 // finally retrieve the text metrics from it
7166 GetTextMetrics(hdc, &tm);
7167
7168#if !wxDIALOG_UNIT_COMPATIBILITY
7169 // and clean up
7170 if ( hfont )
7171 {
7172 (void)::SelectObject(hdc, hfont);
7173 }
7174#endif
7175
7176 ::ReleaseDC(hwnd, hdc);
7177
7178 return tm;
7179}
3723b7b1
JS
7180
7181// Find the wxWindow at the current mouse position, returning the mouse
7182// position.
2b5f62a0 7183wxWindow* wxFindWindowAtPointer(wxPoint& pt)
3723b7b1 7184{
2b5f62a0
VZ
7185 pt = wxGetMousePosition();
7186 return wxFindWindowAtPoint(pt);
57591e0e
JS
7187}
7188
7189wxWindow* wxFindWindowAtPoint(const wxPoint& pt)
7190{
7191 POINT pt2;
7192 pt2.x = pt.x;
7193 pt2.y = pt.y;
3723b7b1 7194
ab3eae34 7195 HWND hWnd = ::WindowFromPoint(pt2);
3723b7b1 7196
ab3eae34 7197 return wxGetWindowFromHWND((WXHWND)hWnd);
3723b7b1
JS
7198}
7199
7200// Get the current mouse position.
7201wxPoint wxGetMousePosition()
7202{
1772ead0 7203 POINT pt;
d6c37f5b 7204 wxGetCursorPosMSW(&pt);
5cd16c0c 7205
1772ead0 7206 return wxPoint(pt.x, pt.y);
3723b7b1
JS
7207}
7208
5048c832 7209#if wxUSE_HOTKEY
540b6b09 7210
afafd942
JS
7211#if defined(__SMARTPHONE__) || defined(__POCKETPC__)
7212static void WinCEUnregisterHotKey(int modifiers, int id)
7213{
7214 // Register hotkeys for the hardware buttons
7215 HINSTANCE hCoreDll;
7216 typedef BOOL (WINAPI *UnregisterFunc1Proc)(UINT, UINT);
7217
7218 UnregisterFunc1Proc procUnregisterFunc;
9a83f860 7219 hCoreDll = LoadLibrary(wxT("coredll.dll"));
afafd942
JS
7220 if (hCoreDll)
7221 {
9a83f860 7222 procUnregisterFunc = (UnregisterFunc1Proc)GetProcAddress(hCoreDll, wxT("UnregisterFunc1"));
afafd942
JS
7223 if (procUnregisterFunc)
7224 procUnregisterFunc(modifiers, id);
7225 FreeLibrary(hCoreDll);
7226 }
7227}
7228#endif
7229
540b6b09 7230bool wxWindowMSW::RegisterHotKey(int hotkeyId, int modifiers, int keycode)
5048c832
JS
7231{
7232 UINT win_modifiers=0;
540b6b09
VZ
7233 if ( modifiers & wxMOD_ALT )
7234 win_modifiers |= MOD_ALT;
7235 if ( modifiers & wxMOD_SHIFT )
7236 win_modifiers |= MOD_SHIFT;
7237 if ( modifiers & wxMOD_CONTROL )
7238 win_modifiers |= MOD_CONTROL;
7239 if ( modifiers & wxMOD_WIN )
7240 win_modifiers |= MOD_WIN;
7241
afafd942
JS
7242#if defined(__SMARTPHONE__) || defined(__POCKETPC__)
7243 // Required for PPC and Smartphone hardware buttons
7244 if (keycode >= WXK_SPECIAL1 && keycode <= WXK_SPECIAL20)
7245 WinCEUnregisterHotKey(win_modifiers, hotkeyId);
7246#endif
7247
540b6b09
VZ
7248 if ( !::RegisterHotKey(GetHwnd(), hotkeyId, win_modifiers, keycode) )
7249 {
9a83f860 7250 wxLogLastError(wxT("RegisterHotKey"));
5048c832 7251
08158721 7252 return false;
540b6b09
VZ
7253 }
7254
08158721 7255 return true;
5048c832
JS
7256}
7257
7258bool wxWindowMSW::UnregisterHotKey(int hotkeyId)
7259{
afafd942
JS
7260#if defined(__SMARTPHONE__) || defined(__POCKETPC__)
7261 WinCEUnregisterHotKey(MOD_WIN, hotkeyId);
7262#endif
7263
540b6b09
VZ
7264 if ( !::UnregisterHotKey(GetHwnd(), hotkeyId) )
7265 {
9a83f860 7266 wxLogLastError(wxT("UnregisterHotKey"));
540b6b09 7267
08158721 7268 return false;
540b6b09
VZ
7269 }
7270
08158721 7271 return true;
5048c832
JS
7272}
7273
0b4f47a3
DS
7274#if wxUSE_ACCEL
7275
5048c832
JS
7276bool wxWindowMSW::HandleHotKey(WXWPARAM wParam, WXLPARAM lParam)
7277{
540b6b09
VZ
7278 int win_modifiers = LOWORD(lParam);
7279
b6885972
VZ
7280 wxKeyEvent event(CreateKeyEvent(wxEVT_HOTKEY, HIWORD(lParam)));
7281 event.SetId(wParam);
5048c832
JS
7282 event.m_shiftDown = (win_modifiers & MOD_SHIFT) != 0;
7283 event.m_controlDown = (win_modifiers & MOD_CONTROL) != 0;
7284 event.m_altDown = (win_modifiers & MOD_ALT) != 0;
7285 event.m_metaDown = (win_modifiers & MOD_WIN) != 0;
540b6b09 7286
937013e0 7287 return HandleWindowEvent(event);
5048c832 7288}
540b6b09 7289
0b4f47a3
DS
7290#endif // wxUSE_ACCEL
7291
540b6b09 7292#endif // wxUSE_HOTKEY
5048c832 7293
550049c2 7294// Not tested under WinCE
d79df32c 7295#ifndef __WXWINCE__
d79df32c 7296
550049c2
VZ
7297// this class installs a message hook which really wakes up our idle processing
7298// each time a WM_NULL is received (wxWakeUpIdle does this), even if we're
7299// sitting inside a local modal loop (e.g. a menu is opened or scrollbar is
7300// being dragged or even inside ::MessageBox()) and so don't control message
7301// dispatching otherwise
7302class wxIdleWakeUpModule : public wxModule
7303{
d79df32c 7304public:
3a3c8603 7305 virtual bool OnInit()
550049c2 7306 {
3a3c8603 7307 ms_hMsgHookProc = ::SetWindowsHookEx
550049c2
VZ
7308 (
7309 WH_GETMESSAGE,
7310 &wxIdleWakeUpModule::MsgHookProc,
7311 NULL,
7312 GetCurrentThreadId()
7313 );
d79df32c 7314
550049c2
VZ
7315 if ( !ms_hMsgHookProc )
7316 {
9a83f860 7317 wxLogLastError(wxT("SetWindowsHookEx(WH_GETMESSAGE)"));
550049c2
VZ
7318
7319 return false;
7320 }
7321
7322 return true;
3a3c8603 7323 }
550049c2 7324
3a3c8603 7325 virtual void OnExit()
550049c2 7326 {
3a3c8603
DS
7327 ::UnhookWindowsHookEx(wxIdleWakeUpModule::ms_hMsgHookProc);
7328 }
550049c2 7329
3a3c8603 7330 static LRESULT CALLBACK MsgHookProc(int nCode, WPARAM wParam, LPARAM lParam)
550049c2 7331 {
3a3c8603 7332 MSG *msg = (MSG*)lParam;
34ea3c74
VZ
7333
7334 // only process the message if it is actually going to be removed from
7335 // the message queue, this prevents that the same event from being
7336 // processed multiple times if now someone just called PeekMessage()
7337 if ( msg->message == WM_NULL && wParam == PM_REMOVE )
3a3c8603 7338 {
550049c2 7339 wxTheApp->ProcessPendingEvents();
3a3c8603 7340 }
550049c2 7341
3a3c8603 7342 return CallNextHookEx(ms_hMsgHookProc, nCode, wParam, lParam);
47b378bd 7343 }
550049c2 7344
d79df32c 7345private:
3a3c8603 7346 static HHOOK ms_hMsgHookProc;
550049c2
VZ
7347
7348 DECLARE_DYNAMIC_CLASS(wxIdleWakeUpModule)
d79df32c 7349};
d79df32c 7350
550049c2
VZ
7351HHOOK wxIdleWakeUpModule::ms_hMsgHookProc = 0;
7352
7353IMPLEMENT_DYNAMIC_CLASS(wxIdleWakeUpModule, wxModule)
7354
7355#endif // __WXWINCE__
3a3c8603 7356
d26e1ab2
JS
7357#ifdef __WXWINCE__
7358
7359#if wxUSE_STATBOX
7360static void wxAdjustZOrder(wxWindow* parent)
7361{
7362 if (parent->IsKindOf(CLASSINFO(wxStaticBox)))
7363 {
7364 // Set the z-order correctly
7365 SetWindowPos((HWND) parent->GetHWND(), HWND_BOTTOM, 0, 0, 0, 0, SWP_NOMOVE|SWP_NOSIZE);
7366 }
35bbb0c6 7367
d26e1ab2
JS
7368 wxWindowList::compatibility_iterator current = parent->GetChildren().GetFirst();
7369 while (current)
7370 {
7371 wxWindow *childWin = current->GetData();
7372 wxAdjustZOrder(childWin);
7373 current = current->GetNext();
7374 }
7375}
7376#endif
7377
7378// We need to adjust the z-order of static boxes in WinCE, to
7379// make 'contained' controls visible
7380void wxWindowMSW::OnInitDialog( wxInitDialogEvent& event )
7381{
7382#if wxUSE_STATBOX
7383 wxAdjustZOrder(this);
7384#endif
35bbb0c6 7385
d26e1ab2
JS
7386 event.Skip();
7387}
7388#endif