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