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