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