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