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