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