]> git.saurik.com Git - wxWidgets.git/blame - src/msw/window.cpp
warning fixed
[wxWidgets.git] / src / msw / window.cpp
CommitLineData
2bda0e17
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: windows.cpp
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$
8// Copyright: (c) Julian Smart and Markus Holzem
a3622daa 9// Licence: wxWindows license
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"
40 #include "wx/utils.h"
41 #include "wx/app.h"
42 #include "wx/panel.h"
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"
341c92a8
VZ
49
50 #include <stdio.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
61#include "wx/menuitem.h"
47cbd6da 62#include "wx/log.h"
750b78ba 63
0c589ad0
BM
64#include "wx/msw/private.h"
65
750b78ba 66#if wxUSE_TOOLTIPS
42e69d6b 67 #include "wx/tooltip.h"
750b78ba
JS
68#endif
69
789295bf
VZ
70#if wxUSE_CARET
71 #include "wx/caret.h"
72#endif // wxUSE_CARET
73
dbda9e86
JS
74#include "wx/intl.h"
75#include "wx/log.h"
3a19e16d 76
2a47d3c1 77#include "wx/textctrl.h"
d9317fd4 78#include "wx/notebook.h"
2a47d3c1 79
2bda0e17
KB
80#include <string.h>
81
c42404a5 82#ifndef __GNUWIN32_OLD__
3a19e16d
VZ
83 #include <shellapi.h>
84 #include <mmsystem.h>
2bda0e17
KB
85#endif
86
87#ifdef __WIN32__
3a19e16d 88 #include <windowsx.h>
2bda0e17
KB
89#endif
90
c42404a5 91#if !defined(__GNUWIN32_OLD__) && !defined(__TWIN32__)
310df81b 92 #ifdef __WIN95__
c42404a5
VZ
93 #include <commctrl.h>
94 #endif
95#else // broken compiler
96 #ifndef __TWIN32__
97 #include "wx/msw/gnuwin32/extra.h"
3a19e16d 98 #endif
57c208c5 99#endif
2bda0e17 100
f6bcfd97
BP
101// This didn't appear in mingw until 2.95.2
102#ifndef SIF_TRACKPOS
103#define SIF_TRACKPOS 16
104#endif
105
a23fd0e1 106// ---------------------------------------------------------------------------
42e69d6b 107// global variables
a23fd0e1 108// ---------------------------------------------------------------------------
47cbd6da 109
42e69d6b
VZ
110// the last Windows message we got (MT-UNSAFE)
111extern MSG s_currentMsg;
2bda0e17
KB
112
113wxMenu *wxCurrentPopupMenu = NULL;
cde9f08e 114extern wxList WXDLLEXPORT wxPendingDelete;
2ffa221c 115extern const wxChar *wxCanvasClassName;
42e69d6b
VZ
116
117// ---------------------------------------------------------------------------
118// private functions
119// ---------------------------------------------------------------------------
120
121// the window proc for all our windows
3135f4a7 122LRESULT WXDLLEXPORT APIENTRY _EXPORT wxWndProc(HWND hWnd, UINT message,
42e69d6b
VZ
123 WPARAM wParam, LPARAM lParam);
124
125#ifdef __WXDEBUG__
126 const char *wxGetMessageName(int message);
127#endif //__WXDEBUG__
2bda0e17
KB
128
129void wxRemoveHandleAssociation(wxWindow *win);
130void wxAssociateWinWithHandle(HWND hWnd, wxWindow *win);
131wxWindow *wxFindWinFromHandle(WXHWND hWnd);
132
4aff28fc
VZ
133// this magical function is used to translate VK_APPS key presses to right
134// mouse clicks
135static void TranslateKbdEventToMouse(wxWindow *win, int *x, int *y, WPARAM *flags);
136
f6bcfd97
BP
137// get the text metrics for the current font
138static TEXTMETRIC wxGetTextMetrics(const wxWindow *win);
139
a23fd0e1
VZ
140// ---------------------------------------------------------------------------
141// event tables
142// ---------------------------------------------------------------------------
143
00c4e897 144IMPLEMENT_DYNAMIC_CLASS(wxWindow, wxWindowBase)
42e69d6b 145
cc2b7472 146BEGIN_EVENT_TABLE(wxWindow, wxWindowBase)
cf65ad8d
VZ
147 EVT_ERASE_BACKGROUND(wxWindow::OnEraseBackground)
148 EVT_SYS_COLOUR_CHANGED(wxWindow::OnSysColourChanged)
149 EVT_INIT_DIALOG(wxWindow::OnInitDialog)
150 EVT_IDLE(wxWindow::OnIdle)
00c4e897 151 EVT_SET_FOCUS(wxWindow::OnSetFocus)
2bda0e17
KB
152END_EVENT_TABLE()
153
a23fd0e1
VZ
154// ===========================================================================
155// implementation
156// ===========================================================================
157
42e69d6b
VZ
158// ---------------------------------------------------------------------------
159// wxWindow utility functions
160// ---------------------------------------------------------------------------
161
2bda0e17 162// Find an item given the MS Windows id
197dd9af 163wxWindow *wxWindow::FindItem(long id) const
2bda0e17 164{
f048e32f
VZ
165 wxControl *item = wxDynamicCast(this, wxControl);
166 if ( item )
167 {
168 // i it we or one of our "internal" children?
169 if ( item->GetId() == id ||
170 (item->GetSubcontrols().Index(id) != wxNOT_FOUND) )
171 {
172 return item;
173 }
174 }
175
42e69d6b 176 wxWindowList::Node *current = GetChildren().GetFirst();
2d0a075d
JS
177 while (current)
178 {
42e69d6b 179 wxWindow *childWin = current->GetData();
2bda0e17 180
42e69d6b 181 wxWindow *wnd = childWin->FindItem(id);
cc2b7472 182 if ( wnd )
42e69d6b 183 return wnd;
2bda0e17 184
42e69d6b 185 current = current->GetNext();
2bda0e17 186 }
42e69d6b 187
2d0a075d 188 return NULL;
2bda0e17
KB
189}
190
191// Find an item given the MS Windows handle
debe6624 192wxWindow *wxWindow::FindItemByHWND(WXHWND hWnd, bool controlOnly) const
2bda0e17 193{
42e69d6b 194 wxWindowList::Node *current = GetChildren().GetFirst();
2d0a075d 195 while (current)
2bda0e17 196 {
42e69d6b
VZ
197 wxWindow *parent = current->GetData();
198
2d0a075d 199 // Do a recursive search.
42e69d6b 200 wxWindow *wnd = parent->FindItemByHWND(hWnd);
cc2b7472 201 if ( wnd )
42e69d6b 202 return wnd;
2d0a075d 203
42e69d6b 204 if ( !controlOnly || parent->IsKindOf(CLASSINFO(wxControl)) )
2d0a075d 205 {
42e69d6b
VZ
206 wxWindow *item = current->GetData();
207 if ( item->GetHWND() == hWnd )
2d0a075d
JS
208 return item;
209 else
210 {
211 if ( item->ContainsHWND(hWnd) )
212 return item;
213 }
214 }
42e69d6b
VZ
215
216 current = current->GetNext();
2bda0e17 217 }
2d0a075d 218 return NULL;
2bda0e17
KB
219}
220
221// Default command handler
debe6624 222bool wxWindow::MSWCommand(WXUINT WXUNUSED(param), WXWORD WXUNUSED(id))
2bda0e17 223{
2d0a075d 224 return FALSE;
2bda0e17
KB
225}
226
fd3f686c
VZ
227// ----------------------------------------------------------------------------
228// constructors and such
229// ----------------------------------------------------------------------------
230
231void wxWindow::Init()
2bda0e17 232{
cc2b7472
VZ
233 // generic
234 InitBase();
634903fd 235
cc2b7472 236 // MSW specific
42e69d6b 237 m_doubleClickAllowed = 0;
2d0a075d 238 m_winCaptured = FALSE;
cc2b7472 239
2d0a075d
JS
240 m_isBeingDeleted = FALSE;
241 m_oldWndProc = 0;
2d0a075d 242 m_useCtl3D = FALSE;
fd3f686c 243 m_mouseInWindow = FALSE;
2bda0e17 244
2d0a075d 245 // wxWnd
2d0a075d 246 m_hMenu = 0;
2bda0e17 247
319fefa9
VZ
248 m_hWnd = 0;
249
250 // pass WM_GETDLGCODE to DefWindowProc()
251 m_lDlgCode = 0;
252
2d0a075d
JS
253 m_xThumbSize = 0;
254 m_yThumbSize = 0;
255 m_backgroundTransparent = FALSE;
2bda0e17 256
85d10d9b
VZ
257 // as all windows are created with WS_VISIBLE style...
258 m_isShown = TRUE;
259
a23fd0e1 260#if wxUSE_MOUSEEVENT_HACK
cc2b7472
VZ
261 m_lastMouseX =
262 m_lastMouseY = -1;
263 m_lastMouseEvent = -1;
a23fd0e1 264#endif // wxUSE_MOUSEEVENT_HACK
fd3f686c
VZ
265}
266
2bda0e17 267// Destructor
fd3f686c 268wxWindow::~wxWindow()
2bda0e17 269{
2d0a075d 270 m_isBeingDeleted = TRUE;
2bda0e17 271
2d0a075d 272 MSWDetachWindowMenu();
2bda0e17 273
a23fd0e1
VZ
274 if ( m_parent )
275 m_parent->RemoveChild(this);
276
277 DestroyChildren();
278
cc2b7472 279 if ( m_hWnd )
42e69d6b 280 {
98440bc3
VZ
281 // VZ: test temp removed to understand what really happens here
282 //if (::IsWindow(GetHwnd()))
df61c009
JS
283 {
284 if ( !::DestroyWindow(GetHwnd()) )
f6bcfd97 285 wxLogLastError(wxT("DestroyWindow"));
df61c009 286 }
2bda0e17 287
c50f1fb9
VZ
288 // remove hWnd <-> wxWindow association
289 wxRemoveHandleAssociation(this);
290 }
2bda0e17
KB
291}
292
fd3f686c 293// real construction (Init() must have been called before!)
debe6624 294bool wxWindow::Create(wxWindow *parent, wxWindowID id,
2d0a075d
JS
295 const wxPoint& pos,
296 const wxSize& size,
297 long style,
298 const wxString& name)
299{
223d09f6 300 wxCHECK_MSG( parent, FALSE, wxT("can't create wxWindow without parent") );
2bda0e17 301
8d99be5f
VZ
302 if ( !CreateBase(parent, id, pos, size, style, wxDefaultValidator, name) )
303 return FALSE;
42e69d6b 304
fd3f686c 305 parent->AddChild(this);
2bda0e17 306
2d0a075d 307 DWORD msflags = 0;
cc2b7472 308 if ( style & wxBORDER )
2d0a075d 309 msflags |= WS_BORDER;
f6bcfd97
BP
310/* Not appropriate for non-frame/dialog windows, and
311 may clash with other window styles.
cc2b7472 312 if ( style & wxTHICK_FRAME )
2d0a075d 313 msflags |= WS_THICKFRAME;
f6bcfd97
BP
314*/
315 //msflags |= WS_CHILD /* | WS_CLIPSIBLINGS */ | WS_VISIBLE;
2d027cfa 316 msflags |= WS_CHILD | WS_VISIBLE;
cc2b7472 317 if ( style & wxCLIP_CHILDREN )
2d0a075d 318 msflags |= WS_CLIPCHILDREN;
d11bb14f
JS
319 if ( style & wxCLIP_SIBLINGS )
320 msflags |= WS_CLIPSIBLINGS;
2bda0e17 321
2d0a075d 322 bool want3D;
42e69d6b 323 WXDWORD exStyle = Determine3DEffects(WS_EX_CLIENTEDGE, &want3D);
2bda0e17 324
2d0a075d
JS
325 // Even with extended styles, need to combine with WS_BORDER
326 // for them to look right.
cc2b7472 327 if ( want3D || (m_windowStyle & wxSIMPLE_BORDER) || (m_windowStyle & wxRAISED_BORDER ) ||
2d0a075d 328 (m_windowStyle & wxSUNKEN_BORDER) || (m_windowStyle & wxDOUBLE_BORDER))
cc2b7472 329 {
2d0a075d 330 msflags |= WS_BORDER;
cc2b7472 331 }
2bda0e17 332
101f488c
VZ
333 // calculate the value to return from WM_GETDLGCODE handler
334 if ( GetWindowStyleFlag() & wxWANTS_CHARS )
335 {
336 // want everything: i.e. all keys and WM_CHAR message
337 m_lDlgCode = DLGC_WANTARROWS | DLGC_WANTCHARS |
338 DLGC_WANTTAB | DLGC_WANTMESSAGE;
101f488c 339 }
101f488c 340
2d0a075d 341 MSWCreate(m_windowId, parent, wxCanvasClassName, this, NULL,
cc2b7472
VZ
342 pos.x, pos.y,
343 WidthDefault(size.x), HeightDefault(size.y),
344 msflags, NULL, exStyle);
2bda0e17 345
2d0a075d 346 return TRUE;
2bda0e17
KB
347}
348
42e69d6b
VZ
349// ---------------------------------------------------------------------------
350// basic operations
351// ---------------------------------------------------------------------------
352
fd3f686c 353void wxWindow::SetFocus()
2bda0e17 354{
a23fd0e1 355 HWND hWnd = GetHwnd();
cc2b7472 356 if ( hWnd )
2d0a075d 357 ::SetFocus(hWnd);
2bda0e17
KB
358}
359
42e69d6b
VZ
360// Get the window with the focus
361wxWindow *wxWindowBase::FindFocus()
362{
363 HWND hWnd = ::GetFocus();
364 if ( hWnd )
365 {
366 return wxFindWinFromHandle((WXHWND) hWnd);
367 }
368
369 return NULL;
370}
371
cc2b7472 372bool wxWindow::Enable(bool enable)
2bda0e17 373{
cc2b7472
VZ
374 if ( !wxWindowBase::Enable(enable) )
375 return FALSE;
376
a23fd0e1 377 HWND hWnd = GetHwnd();
cc2b7472 378 if ( hWnd )
2d0a075d 379 ::EnableWindow(hWnd, (BOOL)enable);
cc2b7472 380
cbc66a27
VZ
381 // VZ: no, this is a bad idea: imagine that you have a dialog with some
382 // disabled controls and disable it - you really wouldn't like the
383 // disabled controls eb reenabled too when you reenable the dialog!
384#if 0
87a1e308
VZ
385 wxWindowList::Node *node = GetChildren().GetFirst();
386 while ( node )
387 {
388 wxWindow *child = node->GetData();
389 child->Enable(enable);
390
391 node = node->GetNext();
392 }
cbc66a27 393#endif // 0
87a1e308 394
cc2b7472 395 return TRUE;
2bda0e17
KB
396}
397
42e69d6b
VZ
398bool wxWindow::Show(bool show)
399{
400 if ( !wxWindowBase::Show(show) )
401 return FALSE;
402
403 HWND hWnd = GetHwnd();
404 int cshow = show ? SW_SHOW : SW_HIDE;
405 ::ShowWindow(hWnd, cshow);
406
407 if ( show )
408 {
409 BringWindowToTop(hWnd);
410 }
411
412 return TRUE;
413}
414
415// Raise the window to the top of the Z order
416void wxWindow::Raise()
417{
418 ::BringWindowToTop(GetHwnd());
419}
420
421// Lower the window to the bottom of the Z order
422void wxWindow::Lower()
423{
424 ::SetWindowPos(GetHwnd(), HWND_BOTTOM, 0, 0, 0, 0,
425 SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
426}
427
428void wxWindow::SetTitle( const wxString& title)
429{
430 SetWindowText(GetHwnd(), title.c_str());
431}
432
433wxString wxWindow::GetTitle() const
434{
435 return wxGetWindowText(GetHWND());
436}
437
fd3f686c 438void wxWindow::CaptureMouse()
2bda0e17 439{
a23fd0e1 440 HWND hWnd = GetHwnd();
cc2b7472 441 if ( hWnd && !m_winCaptured )
2d0a075d
JS
442 {
443 SetCapture(hWnd);
444 m_winCaptured = TRUE;
445 }
2bda0e17
KB
446}
447
fd3f686c 448void wxWindow::ReleaseMouse()
2bda0e17 449{
cc2b7472 450 if ( m_winCaptured )
2d0a075d
JS
451 {
452 ReleaseCapture();
453 m_winCaptured = FALSE;
454 }
2bda0e17
KB
455}
456
42e69d6b 457bool wxWindow::SetFont(const wxFont& font)
2bda0e17 458{
42e69d6b
VZ
459 if ( !wxWindowBase::SetFont(font) )
460 {
461 // nothing to do
462 return FALSE;
2d0a075d 463 }
195896c7 464
42e69d6b
VZ
465 HWND hWnd = GetHwnd();
466 if ( hWnd != 0 )
467 {
468 WXHANDLE hFont = m_font.GetResourceHandle();
2bda0e17 469
223d09f6 470 wxASSERT_MSG( hFont, wxT("should have valid font") );
3a19e16d 471
c50f1fb9 472 ::SendMessage(hWnd, WM_SETFONT, (WPARAM)hFont, MAKELPARAM(TRUE, 0));
42e69d6b 473 }
2bda0e17 474
42e69d6b
VZ
475 return TRUE;
476}
477bool wxWindow::SetCursor(const wxCursor& cursor)
2bda0e17 478{
42e69d6b
VZ
479 if ( !wxWindowBase::SetCursor(cursor) )
480 {
481 // no change
482 return FALSE;
483 }
484
8a9c2246
VZ
485 if ( m_cursor.Ok() )
486 {
487 HWND hWnd = GetHwnd();
42e69d6b 488
8a9c2246
VZ
489 // Change the cursor NOW if we're within the correct window
490 POINT point;
491 ::GetCursorPos(&point);
2bda0e17 492
8a9c2246
VZ
493 RECT rect;
494 ::GetWindowRect(hWnd, &rect);
3a19e16d 495
8a9c2246
VZ
496 if ( ::PtInRect(&rect, point) && !wxIsBusy() )
497 ::SetCursor(GetHcursorOf(m_cursor));
498 }
3a19e16d 499
42e69d6b 500 return TRUE;
3a19e16d
VZ
501}
502
42e69d6b 503void wxWindow::WarpPointer (int x_pos, int y_pos)
2bda0e17 504{
42e69d6b
VZ
505 // Move the pointer to (x_pos,y_pos) coordinates. They are expressed in
506 // pixel coordinates, relatives to the canvas -- So, we first need to
507 // substract origin of the window, then convert to screen position
508
509 int x = x_pos; int y = y_pos;
2d0a075d 510 RECT rect;
42e69d6b 511 GetWindowRect (GetHwnd(), &rect);
cc2b7472 512
42e69d6b
VZ
513 x += rect.left;
514 y += rect.top;
515
516 SetCursorPos (x, y);
2bda0e17
KB
517}
518
42e69d6b
VZ
519#if WXWIN_COMPATIBILITY
520void wxWindow::MSWDeviceToLogical (float *x, float *y) const
2bda0e17 521{
42e69d6b
VZ
522}
523#endif // WXWIN_COMPATIBILITY
81d66cf3 524
42e69d6b
VZ
525// ---------------------------------------------------------------------------
526// scrolling stuff
527// ---------------------------------------------------------------------------
2d0a075d 528
42e69d6b
VZ
529#if WXWIN_COMPATIBILITY
530void wxWindow::SetScrollRange(int orient, int range, bool refresh)
531{
532#if defined(__WIN95__)
533
534 int range1 = range;
535
536 // Try to adjust the range to cope with page size > 1
537 // - a Windows API quirk
538 int pageSize = GetScrollPage(orient);
539 if ( pageSize > 1 && range > 0)
2d0a075d 540 {
42e69d6b 541 range1 += (pageSize - 1);
2d0a075d
JS
542 }
543
42e69d6b
VZ
544 SCROLLINFO info;
545 int dir;
546
547 if ( orient == wxHORIZONTAL ) {
548 dir = SB_HORZ;
549 } else {
550 dir = SB_VERT;
2d0a075d 551 }
cc2b7472 552
42e69d6b
VZ
553 info.cbSize = sizeof(SCROLLINFO);
554 info.nPage = pageSize; // Have to set this, or scrollbar goes awry
555 info.nMin = 0;
556 info.nMax = range1;
557 info.nPos = 0;
558 info.fMask = SIF_RANGE | SIF_PAGE;
559
560 HWND hWnd = GetHwnd();
561 if ( hWnd )
562 ::SetScrollInfo(hWnd, dir, &info, refresh);
563#else
564 int wOrient;
565 if ( orient == wxHORIZONTAL )
566 wOrient = SB_HORZ;
567 else
568 wOrient = SB_VERT;
569
570 HWND hWnd = GetHwnd();
571 if ( hWnd )
572 ::SetScrollRange(hWnd, wOrient, 0, range, refresh);
573#endif
2bda0e17
KB
574}
575
42e69d6b 576void wxWindow::SetScrollPage(int orient, int page, bool refresh)
2bda0e17 577{
42e69d6b
VZ
578#if defined(__WIN95__)
579 SCROLLINFO info;
580 int dir;
2d0a075d 581
42e69d6b
VZ
582 if ( orient == wxHORIZONTAL ) {
583 dir = SB_HORZ;
584 m_xThumbSize = page;
585 } else {
586 dir = SB_VERT;
587 m_yThumbSize = page;
588 }
0757d27c 589
42e69d6b
VZ
590 info.cbSize = sizeof(SCROLLINFO);
591 info.nPage = page;
592 info.nMin = 0;
593 info.fMask = SIF_PAGE;
594
595 HWND hWnd = GetHwnd();
596 if ( hWnd )
597 ::SetScrollInfo(hWnd, dir, &info, refresh);
598#else
599 if ( orient == wxHORIZONTAL )
600 m_xThumbSize = page;
601 else
602 m_yThumbSize = page;
603#endif
2bda0e17
KB
604}
605
42e69d6b 606int wxWindow::OldGetScrollRange(int orient) const
2bda0e17 607{
42e69d6b
VZ
608 int wOrient;
609 if ( orient == wxHORIZONTAL )
610 wOrient = SB_HORZ;
611 else
612 wOrient = SB_VERT;
2d0a075d 613
42e69d6b
VZ
614#if __WATCOMC__ && defined(__WINDOWS_386__)
615 short minPos, maxPos;
616#else
617 int minPos, maxPos;
618#endif
a23fd0e1 619 HWND hWnd = GetHwnd();
42e69d6b
VZ
620 if ( hWnd )
621 {
622 ::GetScrollRange(hWnd, wOrient, &minPos, &maxPos);
623#if defined(__WIN95__)
624 // Try to adjust the range to cope with page size > 1
625 // - a Windows API quirk
626 int pageSize = GetScrollPage(orient);
627 if ( pageSize > 1 )
628 {
629 maxPos -= (pageSize - 1);
630 }
631#endif
632 return maxPos;
633 }
634 else
635 return 0;
636}
2bda0e17 637
42e69d6b
VZ
638int wxWindow::GetScrollPage(int orient) const
639{
640 if ( orient == wxHORIZONTAL )
641 return m_xThumbSize;
642 else
643 return m_yThumbSize;
2bda0e17
KB
644}
645
42e69d6b
VZ
646#endif // WXWIN_COMPATIBILITY
647
648int wxWindow::GetScrollPos(int orient) const
2bda0e17 649{
42e69d6b
VZ
650 int wOrient;
651 if ( orient == wxHORIZONTAL )
652 wOrient = SB_HORZ;
653 else
654 wOrient = SB_VERT;
655 HWND hWnd = GetHwnd();
656 if ( hWnd )
2d0a075d 657 {
42e69d6b 658 return ::GetScrollPos(hWnd, wOrient);
cc2b7472 659 }
42e69d6b
VZ
660 else
661 return 0;
662}
2bda0e17 663
42e69d6b
VZ
664// This now returns the whole range, not just the number
665// of positions that we can scroll.
666int wxWindow::GetScrollRange(int orient) const
667{
668 int wOrient;
669 if ( orient == wxHORIZONTAL )
670 wOrient = SB_HORZ;
671 else
672 wOrient = SB_VERT;
2bda0e17 673
42e69d6b
VZ
674#if __WATCOMC__ && defined(__WINDOWS_386__)
675 short minPos, maxPos;
676#else
677 int minPos, maxPos;
678#endif
a23fd0e1 679 HWND hWnd = GetHwnd();
42e69d6b
VZ
680 if ( hWnd )
681 {
682 ::GetScrollRange(hWnd, wOrient, &minPos, &maxPos);
683#if defined(__WIN95__)
684 // Try to adjust the range to cope with page size > 1
685 // - a Windows API quirk
686 int pageSize = GetScrollThumb(orient);
687 if ( pageSize > 1 )
688 {
689 maxPos -= (pageSize - 1);
690 }
691 // October 10th: new range concept.
692 maxPos += pageSize;
693#endif
2bda0e17 694
42e69d6b
VZ
695 return maxPos;
696 }
697 else
698 return 0;
cc2b7472 699}
2bda0e17 700
42e69d6b 701int wxWindow::GetScrollThumb(int orient) const
2bda0e17 702{
42e69d6b
VZ
703 if ( orient == wxHORIZONTAL )
704 return m_xThumbSize;
705 else
706 return m_yThumbSize;
2bda0e17
KB
707}
708
42e69d6b 709void wxWindow::SetScrollPos(int orient, int pos, bool refresh)
2bda0e17 710{
42e69d6b
VZ
711#if defined(__WIN95__)
712 SCROLLINFO info;
713 int dir;
72fd19a1 714
42e69d6b
VZ
715 if ( orient == wxHORIZONTAL ) {
716 dir = SB_HORZ;
717 } else {
718 dir = SB_VERT;
719 }
2d0a075d 720
42e69d6b
VZ
721 info.cbSize = sizeof(SCROLLINFO);
722 info.nPage = 0;
723 info.nMin = 0;
724 info.nPos = pos;
725 info.fMask = SIF_POS;
2d0a075d 726
42e69d6b
VZ
727 HWND hWnd = GetHwnd();
728 if ( hWnd )
729 ::SetScrollInfo(hWnd, dir, &info, refresh);
730#else
731 int wOrient;
732 if ( orient == wxHORIZONTAL )
733 wOrient = SB_HORZ;
734 else
735 wOrient = SB_VERT;
81d66cf3 736
a23fd0e1 737 HWND hWnd = GetHwnd();
cc2b7472 738 if ( hWnd )
42e69d6b
VZ
739 ::SetScrollPos(hWnd, wOrient, pos, refresh);
740#endif
2bda0e17
KB
741}
742
42e69d6b
VZ
743// New function that will replace some of the above.
744void wxWindow::SetScrollbar(int orient, int pos, int thumbVisible,
745 int range, bool refresh)
2bda0e17 746{
42e69d6b
VZ
747#if defined(__WIN95__)
748 int oldRange = range - thumbVisible;
2bda0e17 749
42e69d6b 750 int range1 = oldRange;
2bda0e17 751
42e69d6b
VZ
752 // Try to adjust the range to cope with page size > 1
753 // - a Windows API quirk
754 int pageSize = thumbVisible;
755 if ( pageSize > 1 && range > 0)
756 {
757 range1 += (pageSize - 1);
758 }
2bda0e17 759
42e69d6b
VZ
760 SCROLLINFO info;
761 int dir;
2bda0e17 762
42e69d6b
VZ
763 if ( orient == wxHORIZONTAL ) {
764 dir = SB_HORZ;
765 } else {
766 dir = SB_VERT;
2d0a075d 767 }
2bda0e17 768
42e69d6b
VZ
769 info.cbSize = sizeof(SCROLLINFO);
770 info.nPage = pageSize; // Have to set this, or scrollbar goes awry
771 info.nMin = 0;
772 info.nMax = range1;
773 info.nPos = pos;
774 info.fMask = SIF_RANGE | SIF_PAGE | SIF_POS;
2bda0e17 775
42e69d6b
VZ
776 HWND hWnd = GetHwnd();
777 if ( hWnd )
778 ::SetScrollInfo(hWnd, dir, &info, refresh);
779#else
780 int wOrient;
781 if ( orient == wxHORIZONTAL )
782 wOrient = SB_HORZ;
783 else
784 wOrient = SB_VERT;
81d66cf3 785
42e69d6b
VZ
786 HWND hWnd = GetHwnd();
787 if ( hWnd )
81d66cf3 788 {
42e69d6b
VZ
789 ::SetScrollRange(hWnd, wOrient, 0, range, FALSE);
790 ::SetScrollPos(hWnd, wOrient, pos, refresh);
791 }
792#endif
793 if ( orient == wxHORIZONTAL ) {
794 m_xThumbSize = thumbVisible;
795 } else {
796 m_yThumbSize = thumbVisible;
81d66cf3
JS
797 }
798}
799
42e69d6b 800void wxWindow::ScrollWindow(int dx, int dy, const wxRect *rect)
2bda0e17 801{
42e69d6b
VZ
802 RECT rect2;
803 if ( rect )
2d0a075d 804 {
42e69d6b
VZ
805 rect2.left = rect->x;
806 rect2.top = rect->y;
807 rect2.right = rect->x + rect->width;
808 rect2.bottom = rect->y + rect->height;
2d0a075d 809 }
2bda0e17 810
42e69d6b
VZ
811 if ( rect )
812 ::ScrollWindow(GetHwnd(), dx, dy, &rect2, NULL);
813 else
814 ::ScrollWindow(GetHwnd(), dx, dy, NULL, NULL);
2bda0e17
KB
815}
816
42e69d6b
VZ
817// ---------------------------------------------------------------------------
818// subclassing
819// ---------------------------------------------------------------------------
820
821void wxWindow::SubclassWin(WXHWND hWnd)
2bda0e17 822{
223d09f6 823 wxASSERT_MSG( !m_oldWndProc, wxT("subclassing window twice?") );
2bda0e17 824
c50f1fb9 825 HWND hwnd = (HWND)hWnd;
223d09f6 826 wxCHECK_RET( ::IsWindow(hwnd), wxT("invalid HWND in SubclassWin") );
c50f1fb9
VZ
827
828 wxAssociateWinWithHandle(hwnd, this);
2bda0e17 829
c50f1fb9
VZ
830 m_oldWndProc = (WXFARPROC) GetWindowLong(hwnd, GWL_WNDPROC);
831 SetWindowLong(hwnd, GWL_WNDPROC, (LONG) wxWndProc);
2bda0e17
KB
832}
833
42e69d6b 834void wxWindow::UnsubclassWin()
2bda0e17 835{
42e69d6b 836 wxRemoveHandleAssociation(this);
2bda0e17 837
42e69d6b 838 // Restore old Window proc
c50f1fb9
VZ
839 HWND hwnd = GetHwnd();
840 if ( hwnd )
42e69d6b 841 {
c50f1fb9
VZ
842 m_hWnd = 0;
843
223d09f6 844 wxCHECK_RET( ::IsWindow(hwnd), wxT("invalid HWND in UnsubclassWin") );
c50f1fb9
VZ
845
846 FARPROC farProc = (FARPROC) GetWindowLong(hwnd, GWL_WNDPROC);
42e69d6b
VZ
847 if ( (m_oldWndProc != 0) && (farProc != (FARPROC) m_oldWndProc) )
848 {
c50f1fb9 849 SetWindowLong(hwnd, GWL_WNDPROC, (LONG) m_oldWndProc);
42e69d6b
VZ
850 m_oldWndProc = 0;
851 }
42e69d6b 852 }
2bda0e17
KB
853}
854
42e69d6b
VZ
855// Make a Windows extended style from the given wxWindows window style
856WXDWORD wxWindow::MakeExtendedStyle(long style, bool eliminateBorders)
2bda0e17 857{
42e69d6b
VZ
858 WXDWORD exStyle = 0;
859 if ( style & wxTRANSPARENT_WINDOW )
860 exStyle |= WS_EX_TRANSPARENT;
2bda0e17 861
42e69d6b 862 if ( !eliminateBorders )
2d0a075d 863 {
42e69d6b
VZ
864 if ( style & wxSUNKEN_BORDER )
865 exStyle |= WS_EX_CLIENTEDGE;
866 if ( style & wxDOUBLE_BORDER )
867 exStyle |= WS_EX_DLGMODALFRAME;
868#if defined(__WIN95__)
869 if ( style & wxRAISED_BORDER )
870 exStyle |= WS_EX_WINDOWEDGE;
871 if ( style & wxSTATIC_BORDER )
872 exStyle |= WS_EX_STATICEDGE;
873#endif
2d0a075d 874 }
42e69d6b 875 return exStyle;
2bda0e17
KB
876}
877
42e69d6b
VZ
878// Determines whether native 3D effects or CTL3D should be used,
879// applying a default border style if required, and returning an extended
880// style to pass to CreateWindowEx.
8d99be5f
VZ
881WXDWORD wxWindow::Determine3DEffects(WXDWORD defaultBorderStyle,
882 bool *want3D) const
2bda0e17 883{
42e69d6b
VZ
884 // If matches certain criteria, then assume no 3D effects
885 // unless specifically requested (dealt with in MakeExtendedStyle)
886 if ( !GetParent() || !IsKindOf(CLASSINFO(wxControl)) || (m_windowStyle & wxNO_BORDER) )
2bda0e17 887 {
42e69d6b
VZ
888 *want3D = FALSE;
889 return MakeExtendedStyle(m_windowStyle, FALSE);
2bda0e17 890 }
2bda0e17 891
42e69d6b
VZ
892 // Determine whether we should be using 3D effects or not.
893 bool nativeBorder = FALSE; // by default, we don't want a Win95 effect
a02eb1d2 894
42e69d6b
VZ
895 // 1) App can specify global 3D effects
896 *want3D = wxTheApp->GetAuto3D();
2bda0e17 897
42e69d6b
VZ
898 // 2) If the parent is being drawn with user colours, or simple border specified,
899 // switch effects off. TODO: replace wxUSER_COLOURS with wxNO_3D
900 if ( GetParent() && (GetParent()->GetWindowStyleFlag() & wxUSER_COLOURS) || (m_windowStyle & wxSIMPLE_BORDER) )
901 *want3D = FALSE;
a23fd0e1 902
42e69d6b
VZ
903 // 3) Control can override this global setting by defining
904 // a border style, e.g. wxSUNKEN_BORDER
905 if ( m_windowStyle & wxSUNKEN_BORDER )
906 *want3D = TRUE;
2bda0e17 907
42e69d6b
VZ
908 // 4) If it's a special border, CTL3D can't cope so we want a native border
909 if ( (m_windowStyle & wxDOUBLE_BORDER) || (m_windowStyle & wxRAISED_BORDER) ||
910 (m_windowStyle & wxSTATIC_BORDER) )
2d0a075d 911 {
42e69d6b
VZ
912 *want3D = TRUE;
913 nativeBorder = TRUE;
2d0a075d 914 }
ea57084d 915
42e69d6b
VZ
916 // 5) If this isn't a Win95 app, and we are using CTL3D, remove border
917 // effects from extended style
918#if wxUSE_CTL3D
919 if ( *want3D )
920 nativeBorder = FALSE;
921#endif
a23fd0e1 922
42e69d6b 923 DWORD exStyle = MakeExtendedStyle(m_windowStyle, !nativeBorder);
2bda0e17 924
42e69d6b
VZ
925 // If we want 3D, but haven't specified a border here,
926 // apply the default border style specified.
927 // TODO what about non-Win95 WIN32? Does it have borders?
928#if defined(__WIN95__) && !wxUSE_CTL3D
929 if ( defaultBorderStyle && (*want3D) && ! ((m_windowStyle & wxDOUBLE_BORDER) || (m_windowStyle & wxRAISED_BORDER ) ||
930 (m_windowStyle & wxSTATIC_BORDER) || (m_windowStyle & wxSIMPLE_BORDER) ))
931 exStyle |= defaultBorderStyle; // WS_EX_CLIENTEDGE;
932#endif
933
934 return exStyle;
a23fd0e1 935}
2bda0e17 936
c455ab93 937#if WXWIN_COMPATIBILITY
42e69d6b
VZ
938// If nothing defined for this, try the parent.
939// E.g. we may be a button loaded from a resource, with no callback function
940// defined.
941void wxWindow::OnCommand(wxWindow& win, wxCommandEvent& event)
2bda0e17 942{
42e69d6b
VZ
943 if ( GetEventHandler()->ProcessEvent(event) )
944 return;
945 if ( m_parent )
946 m_parent->GetEventHandler()->OnCommand(win, event);
947}
948#endif // WXWIN_COMPATIBILITY_2
c085e333 949
42e69d6b
VZ
950#if WXWIN_COMPATIBILITY
951wxObject* wxWindow::GetChild(int number) const
952{
953 // Return a pointer to the Nth object in the Panel
954 wxNode *node = GetChildren().First();
955 int n = number;
956 while (node && n--)
957 node = node->Next();
958 if ( node )
959 {
960 wxObject *obj = (wxObject *)node->Data();
961 return(obj);
962 }
963 else
964 return NULL;
965}
966#endif // WXWIN_COMPATIBILITY
2bda0e17 967
42e69d6b
VZ
968// Setup background and foreground colours correctly
969void wxWindow::SetupColours()
970{
971 if ( GetParent() )
972 SetBackgroundColour(GetParent()->GetBackgroundColour());
973}
a23fd0e1 974
42e69d6b
VZ
975void wxWindow::OnIdle(wxIdleEvent& event)
976{
977 // Check if we need to send a LEAVE event
978 if ( m_mouseInWindow )
2d0a075d 979 {
42e69d6b
VZ
980 POINT pt;
981 ::GetCursorPos(&pt);
982 if ( ::WindowFromPoint(pt) != GetHwnd() )
983 {
984 // Generate a LEAVE event
985 m_mouseInWindow = FALSE;
2bda0e17 986
42e69d6b
VZ
987 // Unfortunately the mouse button and keyboard state may have changed
988 // by the time the OnIdle function is called, so 'state' may be
989 // meaningless.
990 int state = 0;
3f7bc32b 991 if ( wxIsShiftDown() )
42e69d6b 992 state |= MK_SHIFT;
3f7bc32b 993 if ( wxIsCtrlDown() )
42e69d6b 994 state |= MK_CONTROL;
54ca0d12
GRG
995 if ( GetKeyState( VK_LBUTTON ) )
996 state |= MK_LBUTTON;
997 if ( GetKeyState( VK_MBUTTON ) )
998 state |= MK_MBUTTON;
999 if ( GetKeyState( VK_RBUTTON ) )
1000 state |= MK_RBUTTON;
1001
42e69d6b
VZ
1002 wxMouseEvent event(wxEVT_LEAVE_WINDOW);
1003 InitMouseEvent(event, pt.x, pt.y, state);
c085e333 1004
42e69d6b
VZ
1005 (void)GetEventHandler()->ProcessEvent(event);
1006 }
1007 }
c085e333 1008
42e69d6b
VZ
1009 UpdateWindowUI();
1010}
568cb543 1011
42e69d6b
VZ
1012// Set this window to be the child of 'parent'.
1013bool wxWindow::Reparent(wxWindow *parent)
1014{
1015 if ( !wxWindowBase::Reparent(parent) )
1016 return FALSE;
c085e333 1017
42e69d6b
VZ
1018 HWND hWndChild = GetHwnd();
1019 HWND hWndParent = GetParent() ? GetWinHwnd(GetParent()) : (HWND)0;
a23fd0e1 1020
42e69d6b 1021 ::SetParent(hWndChild, hWndParent);
a23fd0e1 1022
42e69d6b
VZ
1023 return TRUE;
1024}
a23fd0e1 1025
42e69d6b
VZ
1026void wxWindow::Clear()
1027{
1028 wxClientDC dc(this);
1029 wxBrush brush(GetBackgroundColour(), wxSOLID);
1030 dc.SetBackground(brush);
1031 dc.Clear();
1032}
a23fd0e1 1033
42e69d6b
VZ
1034void wxWindow::Refresh(bool eraseBack, const wxRect *rect)
1035{
1036 HWND hWnd = GetHwnd();
1037 if ( hWnd )
1038 {
1039 if ( rect )
1040 {
1041 RECT mswRect;
1042 mswRect.left = rect->x;
1043 mswRect.top = rect->y;
1044 mswRect.right = rect->x + rect->width;
1045 mswRect.bottom = rect->y + rect->height;
a23fd0e1 1046
42e69d6b
VZ
1047 ::InvalidateRect(hWnd, &mswRect, eraseBack);
1048 }
1049 else
1050 ::InvalidateRect(hWnd, NULL, eraseBack);
1051 }
1052}
a23fd0e1 1053
42e69d6b
VZ
1054// ---------------------------------------------------------------------------
1055// drag and drop
1056// ---------------------------------------------------------------------------
a23fd0e1 1057
34636400 1058#if wxUSE_DRAG_AND_DROP
a23fd0e1 1059
42e69d6b
VZ
1060void wxWindow::SetDropTarget(wxDropTarget *pDropTarget)
1061{
1062 if ( m_dropTarget != 0 ) {
1063 m_dropTarget->Revoke(m_hWnd);
1064 delete m_dropTarget;
1065 }
a23fd0e1 1066
42e69d6b
VZ
1067 m_dropTarget = pDropTarget;
1068 if ( m_dropTarget != 0 )
1069 m_dropTarget->Register(m_hWnd);
1070}
a23fd0e1 1071
42e69d6b 1072#endif // wxUSE_DRAG_AND_DROP
2a47d3c1 1073
42e69d6b
VZ
1074// old style file-manager drag&drop support: we retain the old-style
1075// DragAcceptFiles in parallel with SetDropTarget.
1076void wxWindow::DragAcceptFiles(bool accept)
1077{
1078 HWND hWnd = GetHwnd();
1079 if ( hWnd )
1080 ::DragAcceptFiles(hWnd, (BOOL)accept);
1081}
a23fd0e1 1082
42e69d6b
VZ
1083// ----------------------------------------------------------------------------
1084// tooltips
1085// ----------------------------------------------------------------------------
dbda9e86 1086
42e69d6b 1087#if wxUSE_TOOLTIPS
2d0a075d 1088
42e69d6b
VZ
1089void wxWindow::DoSetToolTip(wxToolTip *tooltip)
1090{
1091 wxWindowBase::DoSetToolTip(tooltip);
839b865d 1092
42e69d6b
VZ
1093 if ( m_tooltip )
1094 m_tooltip->SetWindow(this);
1095}
9a05fd8d 1096
42e69d6b 1097#endif // wxUSE_TOOLTIPS
9a05fd8d 1098
42e69d6b
VZ
1099// ---------------------------------------------------------------------------
1100// moving and resizing
1101// ---------------------------------------------------------------------------
839b865d 1102
42e69d6b
VZ
1103// Get total size
1104void wxWindow::DoGetSize(int *x, int *y) const
1105{
1106 HWND hWnd = GetHwnd();
1107 RECT rect;
f6bcfd97
BP
1108#ifdef __WIN16__
1109 ::GetWindowRect(hWnd, &rect);
1110#else
1111 if ( !::GetWindowRect(hWnd, &rect) )
1112 {
1113 wxLogLastError(_T("GetWindowRect"));
1114 }
1115#endif
42e69d6b
VZ
1116 if ( x )
1117 *x = rect.right - rect.left;
1118 if ( y )
1119 *y = rect.bottom - rect.top;
1120}
1121
1122void wxWindow::DoGetPosition(int *x, int *y) const
1123{
1124 HWND hWnd = GetHwnd();
42e69d6b
VZ
1125
1126 RECT rect;
1127 GetWindowRect(hWnd, &rect);
1128
42e69d6b
VZ
1129 POINT point;
1130 point.x = rect.left;
1131 point.y = rect.top;
42e69d6b 1132
92049cd4
VZ
1133 // we do the adjustments with respect to the parent only for the "real"
1134 // children, not for the dialogs/frames
1135 if ( !IsTopLevel() )
42e69d6b 1136 {
92049cd4
VZ
1137 HWND hParentWnd = 0;
1138 wxWindow *parent = GetParent();
1139 if ( parent )
1140 hParentWnd = GetWinHwnd(parent);
1141
1142 // Since we now have the absolute screen coords, if there's a parent we
1143 // must subtract its top left corner
1144 if ( hParentWnd )
1145 {
1146 ::ScreenToClient(hParentWnd, &point);
1147 }
1148
1149 // We may be faking the client origin. So a window that's really at (0,
1150 // 30) may appear (to wxWin apps) to be at (0, 0).
0655ad29
VZ
1151 wxPoint pt(parent->GetClientAreaOrigin());
1152 point.x -= pt.x;
1153 point.y -= pt.y;
42e69d6b
VZ
1154 }
1155
1156 if ( x )
1157 *x = point.x;
1158 if ( y )
1159 *y = point.y;
1160}
54bdd8b0 1161
dabc0cd5 1162void wxWindow::DoScreenToClient(int *x, int *y) const
42e69d6b
VZ
1163{
1164 POINT pt;
1165 if ( x )
1166 pt.x = *x;
1167 if ( y )
1168 pt.y = *y;
54bdd8b0 1169
42e69d6b
VZ
1170 HWND hWnd = GetHwnd();
1171 ::ScreenToClient(hWnd, &pt);
a23fd0e1 1172
42e69d6b
VZ
1173 if ( x )
1174 *x = pt.x;
1175 if ( y )
1176 *y = pt.y;
1177}
a23fd0e1 1178
dabc0cd5 1179void wxWindow::DoClientToScreen(int *x, int *y) const
42e69d6b
VZ
1180{
1181 POINT pt;
1182 if ( x )
1183 pt.x = *x;
1184 if ( y )
1185 pt.y = *y;
54bdd8b0 1186
42e69d6b
VZ
1187 HWND hWnd = GetHwnd();
1188 ::ClientToScreen(hWnd, &pt);
a23fd0e1 1189
42e69d6b
VZ
1190 if ( x )
1191 *x = pt.x;
1192 if ( y )
1193 *y = pt.y;
1194}
a23fd0e1 1195
42e69d6b
VZ
1196// Get size *available for subwindows* i.e. excluding menu bar etc.
1197void wxWindow::DoGetClientSize(int *x, int *y) const
1198{
1199 HWND hWnd = GetHwnd();
1200 RECT rect;
1201 ::GetClientRect(hWnd, &rect);
1202 if ( x )
1203 *x = rect.right;
1204 if ( y )
1205 *y = rect.bottom;
1206}
a23fd0e1 1207
b782f2e0
VZ
1208void wxWindow::DoMoveWindow(int x, int y, int width, int height)
1209{
1210 if ( !::MoveWindow(GetHwnd(), x, y, width, height, TRUE) )
1211 {
f6bcfd97 1212 wxLogLastError(wxT("MoveWindow"));
b782f2e0
VZ
1213 }
1214}
1215
4438caf4
VZ
1216// set the size of the window: if the dimensions are positive, just use them,
1217// but if any of them is equal to -1, it means that we must find the value for
1218// it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
1219// which case -1 is a valid value for x and y)
1220//
1221// If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
1222// the width/height to best suit our contents, otherwise we reuse the current
1223// width/height
42e69d6b
VZ
1224void wxWindow::DoSetSize(int x, int y, int width, int height, int sizeFlags)
1225{
4438caf4 1226 // get the current size and position...
42e69d6b
VZ
1227 int currentX, currentY;
1228 GetPosition(&currentX, &currentY);
1229 int currentW,currentH;
1230 GetSize(&currentW, &currentH);
a23fd0e1 1231
4438caf4
VZ
1232 // ... and don't do anything (avoiding flicker) if it's already ok
1233 if ( x == currentX && y == currentY &&
1234 width == currentW && height == currentH )
1235 {
42e69d6b 1236 return;
4438caf4 1237 }
a23fd0e1 1238
f8c03547 1239 if ( x == -1 && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE) )
4438caf4 1240 x = currentX;
f8c03547 1241 if ( y == -1 && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE) )
4438caf4 1242 y = currentY;
a23fd0e1 1243
4438caf4 1244 AdjustForParentClientOrigin(x, y, sizeFlags);
a23fd0e1 1245
4438caf4 1246 wxSize size(-1, -1);
42e69d6b 1247 if ( width == -1 )
4438caf4 1248 {
9e2896e5 1249 if ( sizeFlags & wxSIZE_AUTO_WIDTH )
4438caf4
VZ
1250 {
1251 size = DoGetBestSize();
1252 width = size.x;
1253 }
1254 else
1255 {
1256 // just take the current one
1257 width = currentW;
1258 }
1259 }
1260
42e69d6b 1261 if ( height == -1 )
4438caf4 1262 {
9e2896e5 1263 if ( sizeFlags & wxSIZE_AUTO_HEIGHT )
4438caf4
VZ
1264 {
1265 if ( size.x == -1 )
1266 {
b782f2e0 1267 size = DoGetBestSize();
4438caf4
VZ
1268 }
1269 //else: already called DoGetBestSize() above
a23fd0e1 1270
4438caf4
VZ
1271 height = size.y;
1272 }
1273 else
1274 {
1275 // just take the current one
1276 height = currentH;
1277 }
1278 }
1279
b782f2e0 1280 DoMoveWindow(x, y, width, height);
4438caf4
VZ
1281}
1282
42e69d6b
VZ
1283void wxWindow::DoSetClientSize(int width, int height)
1284{
1285 wxWindow *parent = GetParent();
1286 HWND hWnd = GetHwnd();
1287 HWND hParentWnd = (HWND) 0;
1288 if ( parent )
1289 hParentWnd = (HWND) parent->GetHWND();
2bda0e17 1290
42e69d6b
VZ
1291 RECT rect;
1292 ::GetClientRect(hWnd, &rect);
a23fd0e1 1293
42e69d6b
VZ
1294 RECT rect2;
1295 GetWindowRect(hWnd, &rect2);
a23fd0e1 1296
42e69d6b
VZ
1297 // Find the difference between the entire window (title bar and all)
1298 // and the client area; add this to the new client size to move the
1299 // window
1300 int actual_width = rect2.right - rect2.left - rect.right + width;
1301 int actual_height = rect2.bottom - rect2.top - rect.bottom + height;
a23fd0e1 1302
42e69d6b
VZ
1303 // If there's a parent, must subtract the parent's top left corner
1304 // since MoveWindow moves relative to the parent
a23fd0e1 1305
42e69d6b
VZ
1306 POINT point;
1307 point.x = rect2.left;
1308 point.y = rect2.top;
1309 if ( parent )
1310 {
1311 ::ScreenToClient(hParentWnd, &point);
1312 }
387a3b02 1313
b782f2e0 1314 DoMoveWindow(point.x, point.y, actual_width, actual_height);
a23fd0e1 1315
42e69d6b
VZ
1316 wxSizeEvent event(wxSize(width, height), m_windowId);
1317 event.SetEventObject(this);
1318 GetEventHandler()->ProcessEvent(event);
1319}
a23fd0e1 1320
42e69d6b
VZ
1321// For implementation purposes - sometimes decorations make the client area
1322// smaller
1323wxPoint wxWindow::GetClientAreaOrigin() const
1324{
1325 return wxPoint(0, 0);
1326}
a23fd0e1 1327
42e69d6b
VZ
1328// Makes an adjustment to the window position (for example, a frame that has
1329// a toolbar that it manages itself).
1330void wxWindow::AdjustForParentClientOrigin(int& x, int& y, int sizeFlags)
1331{
92049cd4
VZ
1332 // don't do it for the dialogs/frames - they float independently of their
1333 // parent
1334 if ( !IsTopLevel() )
42e69d6b 1335 {
92049cd4
VZ
1336 wxWindow *parent = GetParent();
1337 if ( !(sizeFlags & wxSIZE_NO_ADJUSTMENTS) && parent )
1338 {
1339 wxPoint pt(parent->GetClientAreaOrigin());
1340 x += pt.x; y += pt.y;
1341 }
42e69d6b
VZ
1342 }
1343}
a23fd0e1 1344
42e69d6b
VZ
1345// ---------------------------------------------------------------------------
1346// text metrics
1347// ---------------------------------------------------------------------------
a23fd0e1 1348
42e69d6b
VZ
1349int wxWindow::GetCharHeight() const
1350{
f6bcfd97 1351 return wxGetTextMetrics(this).tmHeight;
42e69d6b 1352}
3eddf563 1353
42e69d6b
VZ
1354int wxWindow::GetCharWidth() const
1355{
f6bcfd97
BP
1356 // +1 is needed because Windows apparently adds it when calculating the
1357 // dialog units size in pixels
1358#if wxDIALOG_UNIT_COMPATIBILITY
1359 return wxGetTextMetrics(this).tmAveCharWidth ;
1360#else
1361 return wxGetTextMetrics(this).tmAveCharWidth + 1;
1362#endif
42e69d6b 1363}
f4621a09 1364
34636400
VZ
1365void wxWindow::GetTextExtent(const wxString& string,
1366 int *x, int *y,
42e69d6b
VZ
1367 int *descent, int *externalLeading,
1368 const wxFont *theFont) const
1369{
1370 const wxFont *fontToUse = theFont;
1371 if ( !fontToUse )
1372 fontToUse = &m_font;
634903fd 1373
42e69d6b
VZ
1374 HWND hWnd = GetHwnd();
1375 HDC dc = ::GetDC(hWnd);
634903fd 1376
42e69d6b
VZ
1377 HFONT fnt = 0;
1378 HFONT hfontOld = 0;
1379 if ( fontToUse && fontToUse->Ok() )
1380 {
1381 fnt = (HFONT)((wxFont *)fontToUse)->GetResourceHandle(); // const_cast
1382 if ( fnt )
1383 hfontOld = (HFONT)SelectObject(dc,fnt);
2bda0e17 1384 }
341c92a8 1385
42e69d6b
VZ
1386 SIZE sizeRect;
1387 TEXTMETRIC tm;
4438caf4 1388 GetTextExtentPoint(dc, string, (int)string.Length(), &sizeRect);
42e69d6b
VZ
1389 GetTextMetrics(dc, &tm);
1390
1391 if ( fontToUse && fnt && hfontOld )
1392 SelectObject(dc, hfontOld);
1393
1394 ReleaseDC(hWnd, dc);
1395
0655ad29
VZ
1396 if ( x )
1397 *x = sizeRect.cx;
1398 if ( y )
1399 *y = sizeRect.cy;
1400 if ( descent )
1401 *descent = tm.tmDescent;
1402 if ( externalLeading )
1403 *externalLeading = tm.tmExternalLeading;
2bda0e17
KB
1404}
1405
c455ab93 1406#if wxUSE_CARET && WXWIN_COMPATIBILITY
42e69d6b
VZ
1407// ---------------------------------------------------------------------------
1408// Caret manipulation
1409// ---------------------------------------------------------------------------
1410
1411void wxWindow::CreateCaret(int w, int h)
2bda0e17 1412{
789295bf 1413 SetCaret(new wxCaret(this, w, h));
2bda0e17
KB
1414}
1415
42e69d6b 1416void wxWindow::CreateCaret(const wxBitmap *WXUNUSED(bitmap))
2bda0e17 1417{
789295bf 1418 wxFAIL_MSG("not implemented");
2bda0e17
KB
1419}
1420
42e69d6b 1421void wxWindow::ShowCaret(bool show)
2bda0e17 1422{
789295bf
VZ
1423 wxCHECK_RET( m_caret, "no caret to show" );
1424
1425 m_caret->Show(show);
2bda0e17
KB
1426}
1427
42e69d6b 1428void wxWindow::DestroyCaret()
2bda0e17 1429{
789295bf 1430 SetCaret(NULL);
2bda0e17
KB
1431}
1432
42e69d6b 1433void wxWindow::SetCaretPos(int x, int y)
2bda0e17 1434{
789295bf
VZ
1435 wxCHECK_RET( m_caret, "no caret to move" );
1436
1437 m_caret->Move(x, y);
2bda0e17
KB
1438}
1439
42e69d6b 1440void wxWindow::GetCaretPos(int *x, int *y) const
2d0a075d 1441{
789295bf
VZ
1442 wxCHECK_RET( m_caret, "no caret to get position of" );
1443
1444 m_caret->GetPosition(x, y);
42e69d6b 1445}
789295bf 1446#endif // wxUSE_CARET
2bda0e17 1447
c50f1fb9
VZ
1448// ---------------------------------------------------------------------------
1449// popup menu
1450// ---------------------------------------------------------------------------
1451
a1665b22 1452bool wxWindow::DoPopupMenu(wxMenu *menu, int x, int y)
c50f1fb9
VZ
1453{
1454 menu->SetInvokingWindow(this);
1455 menu->UpdateUI();
1456
1457 HWND hWnd = GetHwnd();
1458 HMENU hMenu = GetHmenuOf(menu);
1459 POINT point;
1460 point.x = x;
1461 point.y = y;
1462 ::ClientToScreen(hWnd, &point);
1463 wxCurrentPopupMenu = menu;
1464 ::TrackPopupMenu(hMenu, TPM_RIGHTBUTTON, point.x, point.y, 0, hWnd, NULL);
1465 wxYield();
1466 wxCurrentPopupMenu = NULL;
1467
1468 menu->SetInvokingWindow(NULL);
1469
1470 return TRUE;
1471}
1472
42e69d6b
VZ
1473// ===========================================================================
1474// pre/post message processing
1475// ===========================================================================
2bda0e17 1476
42e69d6b
VZ
1477long wxWindow::MSWDefWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam)
1478{
1479 if ( m_oldWndProc )
1480 return ::CallWindowProc(CASTWNDPROC m_oldWndProc, GetHwnd(), (UINT) nMsg, (WPARAM) wParam, (LPARAM) lParam);
1481 else
1482 return ::DefWindowProc(GetHwnd(), nMsg, wParam, lParam);
1483}
2bda0e17 1484
42e69d6b
VZ
1485bool wxWindow::MSWProcessMessage(WXMSG* pMsg)
1486{
1487 if ( m_hWnd != 0 && (GetWindowStyleFlag() & wxTAB_TRAVERSAL) )
2d0a075d 1488 {
42e69d6b
VZ
1489 // intercept dialog navigation keys
1490 MSG *msg = (MSG *)pMsg;
d9317fd4
VZ
1491
1492 // here we try to do all the job which ::IsDialogMessage() usually does
1493 // internally
d9506e77 1494#if 1
42e69d6b
VZ
1495 bool bProcess = TRUE;
1496 if ( msg->message != WM_KEYDOWN )
1497 bProcess = FALSE;
c085e333 1498
42e69d6b
VZ
1499 if ( bProcess && (HIWORD(msg->lParam) & KF_ALTDOWN) == KF_ALTDOWN )
1500 bProcess = FALSE;
a23fd0e1 1501
42e69d6b
VZ
1502 if ( bProcess )
1503 {
3f7bc32b
VZ
1504 bool bCtrlDown = wxIsCtrlDown();
1505 bool bShiftDown = wxIsShiftDown();
a23fd0e1 1506
42e69d6b
VZ
1507 // WM_GETDLGCODE: ask the control if it wants the key for itself,
1508 // don't process it if it's the case (except for Ctrl-Tab/Enter
1509 // combinations which are always processed)
1510 LONG lDlgCode = 0;
1511 if ( !bCtrlDown )
1512 {
1513 lDlgCode = ::SendMessage(msg->hwnd, WM_GETDLGCODE, 0, 0);
1514 }
a23fd0e1 1515
42e69d6b
VZ
1516 bool bForward = TRUE,
1517 bWindowChange = FALSE;
a23fd0e1 1518
9145664b 1519 switch ( msg->wParam )
42e69d6b
VZ
1520 {
1521 case VK_TAB:
319fefa9
VZ
1522 // assume that nobody wants Shift-TAB for himself - if we
1523 // don't do it there is no easy way for a control to grab
1524 // TABs but still let Shift-TAB work as navugation key
1525 if ( (lDlgCode & DLGC_WANTTAB) && !bShiftDown ) {
42e69d6b
VZ
1526 bProcess = FALSE;
1527 }
1528 else {
1529 // Ctrl-Tab cycles thru notebook pages
1530 bWindowChange = bCtrlDown;
319fefa9 1531 bForward = !bShiftDown;
42e69d6b
VZ
1532 }
1533 break;
a23fd0e1 1534
42e69d6b
VZ
1535 case VK_UP:
1536 case VK_LEFT:
1537 if ( (lDlgCode & DLGC_WANTARROWS) || bCtrlDown )
1538 bProcess = FALSE;
1539 else
1540 bForward = FALSE;
1541 break;
a02eb1d2 1542
42e69d6b
VZ
1543 case VK_DOWN:
1544 case VK_RIGHT:
1545 if ( (lDlgCode & DLGC_WANTARROWS) || bCtrlDown )
1546 bProcess = FALSE;
1547 break;
2bda0e17 1548
42e69d6b
VZ
1549 case VK_RETURN:
1550 {
edccf428 1551 if ( (lDlgCode & DLGC_WANTMESSAGE) && !bCtrlDown )
42e69d6b
VZ
1552 {
1553 // control wants to process Enter itself, don't
1554 // call IsDialogMessage() which would interpret
1555 // it
1556 return FALSE;
1557 }
319fefa9
VZ
1558 else if ( lDlgCode & DLGC_BUTTON )
1559 {
3e79ed96
VZ
1560 // let IsDialogMessage() handle this for all
1561 // buttons except the owner-drawn ones which it
1562 // just seems to ignore
1563 long style = ::GetWindowLong(msg->hwnd, GWL_STYLE);
1564 if ( (style & BS_OWNERDRAW) == BS_OWNERDRAW )
1565 {
1566 // emulate the button click
1567 wxWindow *btn = wxFindWinFromHandle((WXHWND)msg->hwnd);
1568 if ( btn )
1569 btn->MSWCommand(BN_CLICKED, 0 /* unused */);
1570 }
1571
319fefa9
VZ
1572 bProcess = FALSE;
1573 }
c50f1fb9
VZ
1574 else
1575 {
1576 wxPanel *panel = wxDynamicCast(this, wxPanel);
1577 wxButton *btn = NULL;
1578 if ( panel )
1579 {
1580 // panel may have a default button which should
1581 // be activated by Enter
1582 btn = panel->GetDefaultItem();
1583 }
1584
73927f8b 1585 if ( btn && btn->IsEnabled() )
c50f1fb9
VZ
1586 {
1587 // if we do have a default button, do press it
1588 btn->MSWCommand(BN_CLICKED, 0 /* unused */);
1589
1590 return TRUE;
1591 }
1592 // else: but if it does not it makes sense to make
1593 // it work like a TAB - and that's what we do.
1594 // Note that Ctrl-Enter always works this way.
1595 }
42e69d6b
VZ
1596 }
1597 break;
2bda0e17 1598
42e69d6b
VZ
1599 default:
1600 bProcess = FALSE;
1601 }
2bda0e17 1602
42e69d6b
VZ
1603 if ( bProcess )
1604 {
1605 wxNavigationKeyEvent event;
1606 event.SetDirection(bForward);
1607 event.SetWindowChange(bWindowChange);
1608 event.SetEventObject(this);
3572173c 1609
42e69d6b 1610 if ( GetEventHandler()->ProcessEvent(event) )
57c0af52
VZ
1611 {
1612 wxButton *btn = wxDynamicCast(FindFocus(), wxButton);
1613 if ( btn )
1614 {
1615 // the button which has focus should be default
1616 btn->SetDefault();
1617 }
1618
42e69d6b 1619 return TRUE;
57c0af52 1620 }
42e69d6b
VZ
1621 }
1622 }
d9317fd4
VZ
1623#else
1624 // let ::IsDialogMessage() do almost everything and handle just the
1625 // things it doesn't here: Ctrl-TAB for switching notebook pages
1626 if ( msg->message == WM_KEYDOWN )
1627 {
1628 // don't process system keys here
1629 if ( !(HIWORD(msg->lParam) & KF_ALTDOWN) )
1630 {
3f7bc32b 1631 if ( (msg->wParam == VK_TAB) && wxIsCtrlDown() )
d9317fd4
VZ
1632 {
1633 // find the first notebook parent and change its page
1634 wxWindow *win = this;
1635 wxNotebook *nbook = NULL;
1636 while ( win && !nbook )
1637 {
1638 nbook = wxDynamicCast(win, wxNotebook);
1639 win = win->GetParent();
1640 }
1641
1642 if ( nbook )
1643 {
3f7bc32b 1644 bool forward = !wxIsShiftDown();
d9317fd4
VZ
1645
1646 nbook->AdvanceSelection(forward);
1647 }
1648 }
1649 }
1650 }
1651#endif // 0
a23fd0e1 1652
42e69d6b 1653 if ( ::IsDialogMessage(GetHwnd(), msg) )
f6bcfd97
BP
1654 {
1655 // IsDialogMessage() did something...
42e69d6b 1656 return TRUE;
f6bcfd97 1657 }
42e69d6b 1658 }
a23fd0e1 1659
42e69d6b
VZ
1660#if wxUSE_TOOLTIPS
1661 if ( m_tooltip )
387a3b02 1662 {
42e69d6b
VZ
1663 // relay mouse move events to the tooltip control
1664 MSG *msg = (MSG *)pMsg;
1665 if ( msg->message == WM_MOUSEMOVE )
1666 m_tooltip->RelayEvent(pMsg);
387a3b02 1667 }
42e69d6b 1668#endif // wxUSE_TOOLTIPS
a23fd0e1 1669
42e69d6b 1670 return FALSE;
387a3b02
JS
1671}
1672
42e69d6b 1673bool wxWindow::MSWTranslateMessage(WXMSG* pMsg)
387a3b02 1674{
c50f1fb9 1675 return m_acceleratorTable.Translate(this, pMsg);
387a3b02
JS
1676}
1677
42e69d6b
VZ
1678// ---------------------------------------------------------------------------
1679// message params unpackers (different for Win16 and Win32)
1680// ---------------------------------------------------------------------------
2bda0e17 1681
42e69d6b 1682#ifdef __WIN32__
c085e333 1683
42e69d6b
VZ
1684void wxWindow::UnpackCommand(WXWPARAM wParam, WXLPARAM lParam,
1685 WORD *id, WXHWND *hwnd, WORD *cmd)
1686{
1687 *id = LOWORD(wParam);
1688 *hwnd = (WXHWND)lParam;
1689 *cmd = HIWORD(wParam);
2bda0e17
KB
1690}
1691
42e69d6b
VZ
1692void wxWindow::UnpackActivate(WXWPARAM wParam, WXLPARAM lParam,
1693 WXWORD *state, WXWORD *minimized, WXHWND *hwnd)
2bda0e17 1694{
42e69d6b
VZ
1695 *state = LOWORD(wParam);
1696 *minimized = HIWORD(wParam);
1697 *hwnd = (WXHWND)lParam;
2bda0e17
KB
1698}
1699
42e69d6b
VZ
1700void wxWindow::UnpackScroll(WXWPARAM wParam, WXLPARAM lParam,
1701 WXWORD *code, WXWORD *pos, WXHWND *hwnd)
2bda0e17 1702{
42e69d6b
VZ
1703 *code = LOWORD(wParam);
1704 *pos = HIWORD(wParam);
1705 *hwnd = (WXHWND)lParam;
1706}
a23fd0e1 1707
42e69d6b
VZ
1708void wxWindow::UnpackCtlColor(WXWPARAM wParam, WXLPARAM lParam,
1709 WXWORD *nCtlColor, WXHDC *hdc, WXHWND *hwnd)
1710{
1711 *nCtlColor = CTLCOLOR_BTN;
1712 *hwnd = (WXHWND)lParam;
1713 *hdc = (WXHDC)wParam;
2bda0e17
KB
1714}
1715
42e69d6b
VZ
1716void wxWindow::UnpackMenuSelect(WXWPARAM wParam, WXLPARAM lParam,
1717 WXWORD *item, WXWORD *flags, WXHMENU *hmenu)
2bda0e17 1718{
42e69d6b
VZ
1719 *item = (WXWORD)wParam;
1720 *flags = HIWORD(wParam);
1721 *hmenu = (WXHMENU)lParam;
1722}
c085e333 1723
42e69d6b 1724#else // Win16
341c92a8 1725
42e69d6b
VZ
1726void wxWindow::UnpackCommand(WXWPARAM wParam, WXLPARAM lParam,
1727 WXWORD *id, WXHWND *hwnd, WXWORD *cmd)
1728{
1729 *id = (WXWORD)wParam;
1730 *hwnd = (WXHWND)LOWORD(lParam);
1731 *cmd = HIWORD(lParam);
2bda0e17
KB
1732}
1733
42e69d6b
VZ
1734void wxWindow::UnpackActivate(WXWPARAM wParam, WXLPARAM lParam,
1735 WXWORD *state, WXWORD *minimized, WXHWND *hwnd)
2bda0e17 1736{
42e69d6b
VZ
1737 *state = (WXWORD)wParam;
1738 *minimized = LOWORD(lParam);
1739 *hwnd = (WXHWND)HIWORD(lParam);
2bda0e17
KB
1740}
1741
42e69d6b
VZ
1742void wxWindow::UnpackScroll(WXWPARAM wParam, WXLPARAM lParam,
1743 WXWORD *code, WXWORD *pos, WXHWND *hwnd)
2bda0e17 1744{
42e69d6b
VZ
1745 *code = (WXWORD)wParam;
1746 *pos = LOWORD(lParam);
1747 *hwnd = (WXHWND)HIWORD(lParam);
1748}
c085e333 1749
42e69d6b
VZ
1750void wxWindow::UnpackCtlColor(WXWPARAM wParam, WXLPARAM lParam,
1751 WXWORD *nCtlColor, WXHDC *hdc, WXHWND *hwnd)
1752{
25889d3c 1753 *hwnd = (WXHWND)LOWORD(lParam);
42e69d6b
VZ
1754 *nCtlColor = (int)HIWORD(lParam);
1755 *hdc = (WXHDC)wParam;
2bda0e17
KB
1756}
1757
42e69d6b
VZ
1758void wxWindow::UnpackMenuSelect(WXWPARAM wParam, WXLPARAM lParam,
1759 WXWORD *item, WXWORD *flags, WXHMENU *hmenu)
2bda0e17 1760{
42e69d6b
VZ
1761 *item = (WXWORD)wParam;
1762 *flags = LOWORD(lParam);
1763 *hmenu = (WXHMENU)HIWORD(lParam);
1764}
2d0a075d 1765
42e69d6b 1766#endif // Win32/16
c085e333 1767
42e69d6b
VZ
1768// ---------------------------------------------------------------------------
1769// Main wxWindows window proc and the window proc for wxWindow
1770// ---------------------------------------------------------------------------
2bda0e17 1771
42e69d6b
VZ
1772// Hook for new window just as it's being created, when the window isn't yet
1773// associated with the handle
1774wxWindow *wxWndHook = NULL;
1775
1776// Main window proc
3135f4a7 1777LRESULT WXDLLEXPORT APIENTRY _EXPORT wxWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
2bda0e17 1778{
42e69d6b
VZ
1779 // trace all messages - useful for the debugging
1780#ifdef __WXDEBUG__
223d09f6 1781 wxLogTrace(wxTraceMessages, wxT("Processing %s(wParam=%8lx, lParam=%8lx)"),
42e69d6b
VZ
1782 wxGetMessageName(message), wParam, lParam);
1783#endif // __WXDEBUG__
2bda0e17 1784
42e69d6b 1785 wxWindow *wnd = wxFindWinFromHandle((WXHWND) hWnd);
c085e333 1786
42e69d6b
VZ
1787 // when we get the first message for the HWND we just created, we associate
1788 // it with wxWindow stored in wxWndHook
1789 if ( !wnd && wxWndHook )
2d0a075d 1790 {
c7527e3f
JS
1791#if 0 // def __WXDEBUG__
1792 char buf[512];
1793 ::GetClassNameA((HWND) hWnd, buf, 512);
1794 wxString className(buf);
1795#endif
1796
42e69d6b
VZ
1797 wxAssociateWinWithHandle(hWnd, wxWndHook);
1798 wnd = wxWndHook;
1799 wxWndHook = NULL;
1800 wnd->SetHWND((WXHWND)hWnd);
2d0a075d 1801 }
2bda0e17 1802
42e69d6b 1803 LRESULT rc;
a23fd0e1 1804
42e69d6b
VZ
1805 // Stop right here if we don't have a valid handle in our wxWindow object.
1806 if ( wnd && !wnd->GetHWND() )
2d0a075d 1807 {
42e69d6b
VZ
1808 // FIXME: why do we do this?
1809 wnd->SetHWND((WXHWND) hWnd);
1810 rc = wnd->MSWDefWindowProc(message, wParam, lParam );
1811 wnd->SetHWND(0);
a23fd0e1
VZ
1812 }
1813 else
1814 {
42e69d6b
VZ
1815 if ( wnd )
1816 rc = wnd->MSWWindowProc(message, wParam, lParam);
1817 else
1818 rc = DefWindowProc( hWnd, message, wParam, lParam );
2d0a075d 1819 }
2bda0e17 1820
42e69d6b 1821 return rc;
f7bd2698
JS
1822}
1823
42e69d6b 1824long wxWindow::MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam)
f7bd2698 1825{
42e69d6b
VZ
1826 // did we process the message?
1827 bool processed = FALSE;
f7bd2698 1828
42e69d6b
VZ
1829 // the return value
1830 union
2bda0e17 1831 {
42e69d6b
VZ
1832 bool allow;
1833 long result;
1834 WXHICON hIcon;
1835 WXHBRUSH hBrush;
1836 } rc;
2bda0e17 1837
42e69d6b
VZ
1838 // for most messages we should return 0 when we do process the message
1839 rc.result = 0;
2bda0e17 1840
42e69d6b 1841 switch ( message )
39136494 1842 {
42e69d6b
VZ
1843 case WM_CREATE:
1844 {
1845 bool mayCreate;
1846 processed = HandleCreate((WXLPCREATESTRUCT)lParam, &mayCreate);
1847 if ( processed )
1848 {
1849 // return 0 to allow window creation
1850 rc.result = mayCreate ? 0 : -1;
1851 }
1852 }
1853 break;
47cbd6da 1854
42e69d6b
VZ
1855 case WM_DESTROY:
1856 processed = HandleDestroy();
1857 break;
1858
1859 case WM_MOVE:
1860 processed = HandleMove(LOWORD(lParam), HIWORD(lParam));
1861 break;
47cbd6da 1862
42e69d6b
VZ
1863 case WM_SIZE:
1864 processed = HandleSize(LOWORD(lParam), HIWORD(lParam), wParam);
1865 break;
47cbd6da 1866
42e69d6b 1867 case WM_ACTIVATE:
341c92a8 1868 {
42e69d6b
VZ
1869 WXWORD state, minimized;
1870 WXHWND hwnd;
1871 UnpackActivate(wParam, lParam, &state, &minimized, &hwnd);
1872
1873 processed = HandleActivate(state, minimized != 0, (WXHWND)hwnd);
341c92a8 1874 }
42e69d6b 1875 break;
341c92a8 1876
42e69d6b
VZ
1877 case WM_SETFOCUS:
1878 processed = HandleSetFocus((WXHWND)(HWND)wParam);
1879 break;
47cbd6da 1880
42e69d6b
VZ
1881 case WM_KILLFOCUS:
1882 processed = HandleKillFocus((WXHWND)(HWND)wParam);
1883 break;
47cbd6da 1884
42e69d6b
VZ
1885 case WM_PAINT:
1886 processed = HandlePaint();
1887 break;
47cbd6da 1888
42e69d6b
VZ
1889 case WM_CLOSE:
1890 // don't let the DefWindowProc() destroy our window - we'll do it
1891 // ourselves in ~wxWindow
1892 processed = TRUE;
1893 rc.result = TRUE;
1894 break;
47cbd6da 1895
42e69d6b
VZ
1896 case WM_SHOWWINDOW:
1897 processed = HandleShow(wParam != 0, (int)lParam);
1898 break;
3a19e16d 1899
42e69d6b 1900 case WM_MOUSEMOVE:
e2b34251
JS
1901 {
1902 short x = LOWORD(lParam);
1903 short y = HIWORD(lParam);
1904
1905 processed = HandleMouseMove(x, y, wParam);
0d0512bd
VZ
1906 }
1907 break;
1908
42e69d6b 1909 case WM_LBUTTONDOWN:
882a8f40 1910 // set focus to this window
4f430439 1911 if (AcceptsFocus())
e63fdcd6 1912 SetFocus();
882a8f40
VZ
1913
1914 // fall through
1915
42e69d6b
VZ
1916 case WM_LBUTTONUP:
1917 case WM_LBUTTONDBLCLK:
1918 case WM_RBUTTONDOWN:
1919 case WM_RBUTTONUP:
1920 case WM_RBUTTONDBLCLK:
1921 case WM_MBUTTONDOWN:
1922 case WM_MBUTTONUP:
1923 case WM_MBUTTONDBLCLK:
1924 {
a1b82138
VZ
1925 short x = LOWORD(lParam);
1926 short y = HIWORD(lParam);
42e69d6b
VZ
1927
1928 processed = HandleMouseEvent(message, x, y, wParam);
2d0a075d 1929 }
42e69d6b 1930 break;
47cbd6da 1931
42e69d6b
VZ
1932 case MM_JOY1MOVE:
1933 case MM_JOY2MOVE:
1934 case MM_JOY1ZMOVE:
1935 case MM_JOY2ZMOVE:
1936 case MM_JOY1BUTTONDOWN:
1937 case MM_JOY2BUTTONDOWN:
1938 case MM_JOY1BUTTONUP:
1939 case MM_JOY2BUTTONUP:
341c92a8 1940 {
42e69d6b
VZ
1941 int x = LOWORD(lParam);
1942 int y = HIWORD(lParam);
47cbd6da 1943
42e69d6b 1944 processed = HandleJoystickEvent(message, x, y, wParam);
341c92a8 1945 }
42e69d6b 1946 break;
47cbd6da 1947
42e69d6b
VZ
1948 case WM_SYSCOMMAND:
1949 processed = HandleSysCommand(wParam, lParam);
1950 break;
2a47d3c1 1951
42e69d6b
VZ
1952 case WM_COMMAND:
1953 {
1954 WORD id, cmd;
1955 WXHWND hwnd;
1956 UnpackCommand(wParam, lParam, &id, &hwnd, &cmd);
47cbd6da 1957
42e69d6b
VZ
1958 processed = HandleCommand(id, cmd, hwnd);
1959 }
1960 break;
7d532b0c 1961
42e69d6b
VZ
1962#ifdef __WIN95__
1963 case WM_NOTIFY:
1964 processed = HandleNotify((int)wParam, lParam, &rc.result);
1965 break;
1966#endif // Win95
2bda0e17 1967
42e69d6b
VZ
1968 // for these messages we must return TRUE if process the message
1969 case WM_DRAWITEM:
1970 case WM_MEASUREITEM:
1971 {
1972 int idCtrl = (UINT)wParam;
1973 if ( message == WM_DRAWITEM )
1974 {
1975 processed = MSWOnDrawItem(idCtrl,
1976 (WXDRAWITEMSTRUCT *)lParam);
1977 }
1978 else
1979 {
1980 processed = MSWOnMeasureItem(idCtrl,
1981 (WXMEASUREITEMSTRUCT *)lParam);
1982 }
57a7b7c1 1983
42e69d6b
VZ
1984 if ( processed )
1985 rc.result = TRUE;
1986 }
1987 break;
1988
9bf84618 1989 case WM_GETDLGCODE:
101f488c 1990 if ( m_lDlgCode )
9bf84618 1991 {
101f488c 1992 rc.result = m_lDlgCode;
9bf84618
VZ
1993 processed = TRUE;
1994 }
101f488c 1995 //else: get the dlg code from the DefWindowProc()
9bf84618
VZ
1996 break;
1997
4004f41e 1998 case WM_SYSKEYDOWN:
42e69d6b
VZ
1999 case WM_KEYDOWN:
2000 // If this has been processed by an event handler,
2001 // return 0 now (we've handled it).
2002 if ( HandleKeyDown((WORD) wParam, lParam) )
2d0a075d 2003 {
42e69d6b
VZ
2004 processed = TRUE;
2005
2d0a075d
JS
2006 break;
2007 }
81d66cf3 2008
42e69d6b
VZ
2009 // we consider these message "not interesting" to OnChar
2010 if ( wParam == VK_SHIFT || wParam == VK_CONTROL )
2011 {
2012 processed = TRUE;
81d66cf3 2013
42e69d6b
VZ
2014 break;
2015 }
debe6624 2016
42e69d6b
VZ
2017 switch ( wParam )
2018 {
2019 // avoid duplicate messages to OnChar for these ASCII keys: they
2020 // will be translated by TranslateMessage() and received in WM_CHAR
2021 case VK_ESCAPE:
2022 case VK_SPACE:
2023 case VK_RETURN:
2024 case VK_BACK:
2025 case VK_TAB:
882a8f40
VZ
2026 case VK_ADD:
2027 case VK_SUBTRACT:
edccf428
VZ
2028 // but set processed to FALSE, not TRUE to still pass them to
2029 // the control's default window proc - otherwise built-in
2030 // keyboard handling won't work
2031 processed = FALSE;
2bda0e17 2032
42e69d6b 2033 break;
2bda0e17 2034
42e69d6b
VZ
2035#ifdef VK_APPS
2036 // special case of VK_APPS: treat it the same as right mouse
2037 // click because both usually pop up a context menu
2038 case VK_APPS:
2039 {
4aff28fc
VZ
2040 WPARAM flags;
2041 int x, y;
2042
2043 TranslateKbdEventToMouse(this, &x, &y, &flags);
2044 processed = HandleMouseEvent(WM_RBUTTONDOWN, x, y, flags);
42e69d6b
VZ
2045 }
2046 break;
2047#endif // VK_APPS
2bda0e17 2048
42e69d6b
VZ
2049 case VK_LEFT:
2050 case VK_RIGHT:
2051 case VK_DOWN:
2052 case VK_UP:
2053 default:
2054 processed = HandleChar((WORD)wParam, lParam);
2055 }
2056 break;
2bda0e17 2057
4004f41e 2058 case WM_SYSKEYUP:
42e69d6b 2059 case WM_KEYUP:
4aff28fc
VZ
2060#ifdef VK_APPS
2061 // special case of VK_APPS: treat it the same as right mouse button
2062 if ( wParam == VK_APPS )
2063 {
2064 WPARAM flags;
2065 int x, y;
2066
2067 TranslateKbdEventToMouse(this, &x, &y, &flags);
2068 processed = HandleMouseEvent(WM_RBUTTONUP, x, y, flags);
2069 }
2070 else
2071#endif // VK_APPS
2072 {
2073 processed = HandleKeyUp((WORD) wParam, lParam);
2074 }
42e69d6b 2075 break;
debe6624 2076
170cbe33 2077 case WM_SYSCHAR:
42e69d6b
VZ
2078 case WM_CHAR: // Always an ASCII character
2079 processed = HandleChar((WORD)wParam, lParam, TRUE);
2080 break;
2bda0e17 2081
42e69d6b
VZ
2082 case WM_HSCROLL:
2083 case WM_VSCROLL:
a23fd0e1 2084 {
42e69d6b
VZ
2085 WXWORD code, pos;
2086 WXHWND hwnd;
2087 UnpackScroll(wParam, lParam, &code, &pos, &hwnd);
2bda0e17 2088
42e69d6b
VZ
2089 processed = MSWOnScroll(message == WM_HSCROLL ? wxHORIZONTAL
2090 : wxVERTICAL,
2091 code, pos, hwnd);
a23fd0e1 2092 }
42e69d6b 2093 break;
a23fd0e1 2094
42e69d6b
VZ
2095 // CTLCOLOR messages are sent by children to query the parent for their
2096 // colors
2097#ifdef __WIN32__
2098 case WM_CTLCOLORMSGBOX:
2099 case WM_CTLCOLOREDIT:
2100 case WM_CTLCOLORLISTBOX:
2101 case WM_CTLCOLORBTN:
2102 case WM_CTLCOLORDLG:
2103 case WM_CTLCOLORSCROLLBAR:
2104 case WM_CTLCOLORSTATIC:
2105#else // Win16
2106 case WM_CTLCOLOR:
2107#endif // Win32/16
a23fd0e1 2108 {
42e69d6b
VZ
2109 WXWORD nCtlColor;
2110 WXHDC hdc;
2111 WXHWND hwnd;
2112 UnpackCtlColor(wParam, lParam, &nCtlColor, &hdc, &hwnd);
2113
2114 processed = HandleCtlColor(&rc.hBrush,
2115 (WXHDC)hdc,
2116 (WXHWND)hwnd,
2117 nCtlColor,
2118 message,
2119 wParam,
2120 lParam);
a23fd0e1 2121 }
42e69d6b 2122 break;
debe6624 2123
42e69d6b
VZ
2124 // the return value for this message is ignored
2125 case WM_SYSCOLORCHANGE:
2126 processed = HandleSysColorChange();
2127 break;
2bda0e17 2128
42e69d6b
VZ
2129 case WM_PALETTECHANGED:
2130 processed = HandlePaletteChanged((WXHWND) (HWND) wParam);
2131 break;
2bda0e17 2132
42e69d6b
VZ
2133 case WM_QUERYNEWPALETTE:
2134 processed = HandleQueryNewPalette();
2135 break;
2bda0e17 2136
42e69d6b
VZ
2137 case WM_ERASEBKGND:
2138 processed = HandleEraseBkgnd((WXHDC)(HDC)wParam);
2139 if ( processed )
2140 {
2141 // we processed the message, i.e. erased the background
2142 rc.result = TRUE;
2143 }
2144 break;
debe6624 2145
42e69d6b
VZ
2146 case WM_DROPFILES:
2147 processed = HandleDropFiles(wParam);
2148 break;
2bda0e17 2149
42e69d6b
VZ
2150 case WM_INITDIALOG:
2151 processed = HandleInitDialog((WXHWND)(HWND)wParam);
a23fd0e1 2152
42e69d6b
VZ
2153 if ( processed )
2154 {
2155 // we never set focus from here
2156 rc.result = FALSE;
2157 }
2158 break;
a23fd0e1 2159
42e69d6b
VZ
2160 case WM_QUERYENDSESSION:
2161 processed = HandleQueryEndSession(lParam, &rc.allow);
2162 break;
2bda0e17 2163
42e69d6b
VZ
2164 case WM_ENDSESSION:
2165 processed = HandleEndSession(wParam != 0, lParam);
2166 break;
2bda0e17 2167
42e69d6b 2168 case WM_GETMINMAXINFO:
25889d3c 2169 processed = HandleGetMinMaxInfo((MINMAXINFO*)lParam);
42e69d6b 2170 break;
debe6624 2171
42e69d6b
VZ
2172 case WM_SETCURSOR:
2173 processed = HandleSetCursor((WXHWND)(HWND)wParam,
2174 LOWORD(lParam), // hit test
2175 HIWORD(lParam)); // mouse msg
2176
2177 if ( processed )
2178 {
2179 // returning TRUE stops the DefWindowProc() from further
2180 // processing this message - exactly what we need because we've
2181 // just set the cursor.
2182 rc.result = TRUE;
2183 }
2184 break;
b96340e6
JS
2185#ifdef __WIN32__
2186 case WM_HELP:
2187 {
2188 HELPINFO* info = (HELPINFO*) lParam;
2189 // Don't yet process menu help events, just windows
2190 if (info->iContextType == HELPINFO_WINDOW)
2191 {
2192 wxWindow* subjectOfHelp = this;
2193 bool eventProcessed = FALSE;
2194 while (subjectOfHelp && !eventProcessed)
2195 {
2196 wxHelpEvent helpEvent(wxEVT_HELP, subjectOfHelp->GetId(), wxPoint(info->MousePos.x, info->MousePos.y) ) ; // info->iCtrlId);
2197 helpEvent.SetEventObject(this);
2198 eventProcessed = GetEventHandler()->ProcessEvent(helpEvent);
2199
2200 // Go up the window hierarchy until the event is handled (or not)
2201 subjectOfHelp = subjectOfHelp->GetParent();
2202 }
2203 processed = eventProcessed;
2204 }
2205 else if (info->iContextType == HELPINFO_MENUITEM)
2206 {
2207 wxHelpEvent helpEvent(wxEVT_HELP, info->iCtrlId) ;
2208 helpEvent.SetEventObject(this);
2209 processed = GetEventHandler()->ProcessEvent(helpEvent);
2210 }
2211 else processed = FALSE;
2212 break;
2213 }
2214#endif
a23fd0e1 2215 }
2d0a075d 2216
42e69d6b 2217 if ( !processed )
2d0a075d 2218 {
42e69d6b 2219#ifdef __WXDEBUG__
223d09f6 2220 wxLogTrace(wxTraceMessages, wxT("Forwarding %s to DefWindowProc."),
42e69d6b
VZ
2221 wxGetMessageName(message));
2222#endif // __WXDEBUG__
2223 rc.result = MSWDefWindowProc(message, wParam, lParam);
a23fd0e1 2224 }
2bda0e17 2225
42e69d6b 2226 return rc.result;
2bda0e17
KB
2227}
2228
42e69d6b
VZ
2229// Dialog window proc
2230LONG APIENTRY _EXPORT
2231wxDlgProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
2bda0e17 2232{
42e69d6b 2233 if ( message == WM_INITDIALOG )
2bda0e17 2234 {
42e69d6b
VZ
2235 // for this message, returning TRUE tells system to set focus to the
2236 // first control in the dialog box
2237 return TRUE;
2d0a075d 2238 }
42e69d6b 2239 else
2d0a075d 2240 {
42e69d6b
VZ
2241 // for all the other ones, FALSE means that we didn't process the
2242 // message
2243 return 0;
2d0a075d 2244 }
2bda0e17
KB
2245}
2246
42e69d6b
VZ
2247wxList *wxWinHandleList = NULL;
2248wxWindow *wxFindWinFromHandle(WXHWND hWnd)
4ce81a75 2249{
42e69d6b
VZ
2250 wxNode *node = wxWinHandleList->Find((long)hWnd);
2251 if ( !node )
2252 return NULL;
2253 return (wxWindow *)node->Data();
2254}
4ce81a75 2255
c7527e3f
JS
2256#if 0 // def __WXDEBUG__
2257static int gs_AssociationCount = 0;
2258#endif
2259
42e69d6b
VZ
2260void wxAssociateWinWithHandle(HWND hWnd, wxWindow *win)
2261{
2262 // adding NULL hWnd is (first) surely a result of an error and
2263 // (secondly) breaks menu command processing
2264 wxCHECK_RET( hWnd != (HWND)NULL,
223d09f6 2265 wxT("attempt to add a NULL hWnd to window list ignored") );
4ce81a75 2266
c7527e3f
JS
2267
2268 wxWindow *oldWin = wxFindWinFromHandle((WXHWND) hWnd);
2269 if ( oldWin && (oldWin != win) )
2270 {
2271 wxString str(win->GetClassInfo()->GetClassName());
f5166ed4 2272 wxLogError(wxT("Bug! Found existing HWND %X for new window of class %s"), (int) hWnd, (const wxChar*) str);
c7527e3f
JS
2273 }
2274 else if (!oldWin)
2275 {
2276#if 0 // def __WXDEBUG__
2277 gs_AssociationCount ++;
2278 wxLogDebug("+ Association %d", gs_AssociationCount);
2279#endif
2280
42e69d6b 2281 wxWinHandleList->Append((long)hWnd, win);
c7527e3f 2282 }
42e69d6b 2283}
4ce81a75 2284
42e69d6b
VZ
2285void wxRemoveHandleAssociation(wxWindow *win)
2286{
c7527e3f
JS
2287#if 0 // def __WXDEBUG__
2288 if (wxWinHandleList->Member(win))
2289 {
2290 wxLogDebug("- Association %d", gs_AssociationCount);
2291 gs_AssociationCount --;
2292 }
2293#endif
42e69d6b 2294 wxWinHandleList->DeleteObject(win);
4ce81a75
JS
2295}
2296
42e69d6b
VZ
2297// Default destroyer - override if you destroy it in some other way
2298// (e.g. with MDI child windows)
2299void wxWindow::MSWDestroyWindow()
4ce81a75 2300{
42e69d6b 2301}
4ce81a75 2302
42e69d6b
VZ
2303void wxWindow::MSWDetachWindowMenu()
2304{
2305 if ( m_hMenu )
4ce81a75 2306 {
aa44b261 2307 wxChar buf[1024];
42e69d6b 2308 HMENU hMenu = (HMENU)m_hMenu;
4ce81a75 2309
42e69d6b 2310 int N = ::GetMenuItemCount(hMenu);
aa44b261 2311 for ( int i = 0; i < N; i++ )
42e69d6b 2312 {
aa44b261 2313 if ( !::GetMenuString(hMenu, i, buf, WXSIZEOF(buf), MF_BYPOSITION) )
42e69d6b 2314 {
223d09f6 2315 wxLogLastError(wxT("GetMenuString"));
4ce81a75 2316
42e69d6b
VZ
2317 continue;
2318 }
4ce81a75 2319
9318daf2 2320 if ( wxStrcmp(buf, _("&Window")) == 0 )
42e69d6b 2321 {
aa44b261
VZ
2322 if ( !::RemoveMenu(hMenu, i, MF_BYPOSITION) )
2323 {
2324 wxLogLastError(wxT("RemoveMenu"));
2325 }
4ce81a75 2326
42e69d6b
VZ
2327 break;
2328 }
2329 }
4ce81a75
JS
2330 }
2331}
2332
42e69d6b
VZ
2333bool wxWindow::MSWCreate(int id,
2334 wxWindow *parent,
837e5743 2335 const wxChar *wclass,
42e69d6b 2336 wxWindow *wx_win,
837e5743 2337 const wxChar *title,
42e69d6b
VZ
2338 int x,
2339 int y,
2340 int width,
2341 int height,
2342 WXDWORD style,
837e5743 2343 const wxChar *dialog_template,
42e69d6b 2344 WXDWORD extendedStyle)
2bda0e17 2345{
42e69d6b
VZ
2346 int x1 = CW_USEDEFAULT;
2347 int y1 = 0;
2348 int width1 = CW_USEDEFAULT;
2349 int height1 = 100;
c085e333 2350
42e69d6b
VZ
2351 // Find parent's size, if it exists, to set up a possible default
2352 // panel size the size of the parent window
2353 RECT parent_rect;
2354 if ( parent )
a23fd0e1 2355 {
42e69d6b 2356 ::GetClientRect((HWND) parent->GetHWND(), &parent_rect);
c085e333 2357
42e69d6b
VZ
2358 width1 = parent_rect.right - parent_rect.left;
2359 height1 = parent_rect.bottom - parent_rect.top;
2360 }
2bda0e17 2361
42e69d6b
VZ
2362 if ( x > -1 ) x1 = x;
2363 if ( y > -1 ) y1 = y;
2364 if ( width > -1 ) width1 = width;
2365 if ( height > -1 ) height1 = height;
c085e333 2366
f6bcfd97
BP
2367 // unfortunately, setting WS_EX_CONTROLPARENT only for some windows in the
2368 // hierarchy with several embedded panels (and not all of them) causes the
2369 // program to hang during the next call to IsDialogMessage() due to the bug
2370 // in this function (at least in Windows NT 4.0, it seems to work ok in
2371 // Win2K)
2372#if 0
8614c467
VZ
2373 // if we have wxTAB_TRAVERSAL style, we want WS_EX_CONTROLPARENT or
2374 // IsDialogMessage() won't work for us
2375 if ( GetWindowStyleFlag() & wxTAB_TRAVERSAL )
2376 {
2377 extendedStyle |= WS_EX_CONTROLPARENT;
2378 }
f6bcfd97 2379#endif // 0
8614c467 2380
b3daa5a3 2381 HWND hParent = parent ? GetHwndOf(parent) : NULL;
c085e333 2382
42e69d6b 2383 wxWndHook = this;
c085e333 2384
42e69d6b
VZ
2385 if ( dialog_template )
2386 {
b3daa5a3
VZ
2387 // for the dialogs without wxDIALOG_NO_PARENT style, use the top level
2388 // app window as parent - this avoids creating modal dialogs without
2389 // parent
2390 if ( !hParent && !(GetWindowStyleFlag() & wxDIALOG_NO_PARENT) )
2391 {
2392 wxWindow *winTop = wxTheApp->GetTopWindow();
2393 if ( winTop )
2394 hParent = GetHwndOf(winTop);
2395 }
2396
42e69d6b
VZ
2397 m_hWnd = (WXHWND)::CreateDialog(wxGetInstance(),
2398 dialog_template,
2399 hParent,
2400 (DLGPROC)wxDlgProc);
2bda0e17 2401
42e69d6b
VZ
2402 if ( m_hWnd == 0 )
2403 {
b3daa5a3
VZ
2404 wxLogError(_("Can't find dialog template '%s'!\nCheck resource include path for finding wx.rc."),
2405 dialog_template);
c085e333 2406
42e69d6b
VZ
2407 return FALSE;
2408 }
b3daa5a3
VZ
2409
2410 if ( extendedStyle != 0 )
c43e86bd
JS
2411 {
2412 ::SetWindowLong(GetHwnd(), GWL_EXSTYLE, extendedStyle);
2413 ::SetWindowPos(GetHwnd(), NULL, 0, 0, 0, 0,
b3daa5a3
VZ
2414 SWP_NOSIZE |
2415 SWP_NOMOVE |
2416 SWP_NOZORDER |
2417 SWP_NOACTIVATE);
c43e86bd 2418 }
b3daa5a3 2419
3723b7b1
JS
2420#if defined(__WIN95__)
2421 // For some reason, the system menu is activated when we use the
2422 // WS_EX_CONTEXTHELP style, so let's set a reasonable icon
2423 if (extendedStyle & WS_EX_CONTEXTHELP)
2424 {
b3daa5a3
VZ
2425 wxFrame *winTop = wxDynamicCast(wxTheApp->GetTopWindow(), wxFrame);
2426 if ( winTop )
3723b7b1 2427 {
b3daa5a3
VZ
2428 wxIcon icon = winTop->GetIcon();
2429 if ( icon.Ok() )
2430 {
2431 ::SendMessage(GetHwnd(), WM_SETICON,
2432 (WPARAM)TRUE,
2433 (LPARAM)GetHiconOf(icon));
2434 }
3723b7b1
JS
2435 }
2436 }
2437#endif // __WIN95__
2438
2439
2440 // JACS: is the following still necessary? The above seems to work.
c085e333 2441
789295bf
VZ
2442 // ::SetWindowLong(GWL_EXSTYLE) doesn't work for the dialogs, so try
2443 // to take care of (at least some) extended style flags ourselves
2444 if ( extendedStyle & WS_EX_TOPMOST )
2445 {
2446 if ( !::SetWindowPos(GetHwnd(), HWND_TOPMOST, 0, 0, 0, 0,
2447 SWP_NOSIZE | SWP_NOMOVE) )
2448 {
223d09f6 2449 wxLogLastError(wxT("SetWindowPos"));
789295bf
VZ
2450 }
2451 }
2452
2453 // move the dialog to its initial position without forcing repainting
2454 if ( !::MoveWindow(GetHwnd(), x1, y1, width1, height1, FALSE) )
2455 {
223d09f6 2456 wxLogLastError(wxT("MoveWindow"));
789295bf 2457 }
42e69d6b 2458 }
b3daa5a3 2459 else // creating a normal window, not a dialog
42e69d6b
VZ
2460 {
2461 int controlId = 0;
2462 if ( style & WS_CHILD )
6fb8177a 2463 {
42e69d6b 2464 controlId = id;
6fb8177a 2465 // all child windows should clip their siblings
f6bcfd97 2466 // style |= /* WS_CLIPSIBLINGS */ ;
6fb8177a 2467 }
42e69d6b 2468
193fe989
VZ
2469 wxString className(wclass);
2470 if ( GetWindowStyleFlag() & wxNO_FULL_REPAINT_ON_RESIZE )
2471 {
223d09f6 2472 className += wxT("NR");
193fe989
VZ
2473 }
2474
42e69d6b 2475 m_hWnd = (WXHWND)CreateWindowEx(extendedStyle,
b782f2e0 2476 className,
223d09f6 2477 title ? title : wxT(""),
42e69d6b
VZ
2478 style,
2479 x1, y1,
2480 width1, height1,
2481 hParent, (HMENU)controlId,
2482 wxGetInstance(),
2483 NULL);
2484
2485 if ( !m_hWnd )
2486 {
f6bcfd97 2487 wxLogError(_("Can't create window of class %s!\nPossible Windows 3.x compatibility problem?"),
42e69d6b 2488 wclass);
2bda0e17 2489
a23fd0e1 2490 return FALSE;
42e69d6b 2491 }
a23fd0e1 2492 }
c085e333 2493
42e69d6b 2494 wxWndHook = NULL;
b3daa5a3 2495
c7527e3f
JS
2496#ifdef __WXDEBUG__
2497 wxNode* node = wxWinHandleList->Member(this);
2498 if (node)
2499 {
2500 HWND hWnd = (HWND) node->GetKeyInteger();
2501 if (hWnd != (HWND) m_hWnd)
2502 {
f5166ed4 2503 wxLogError(wxT("A second HWND association is being added for the same window!"));
c7527e3f
JS
2504 }
2505 }
b3daa5a3
VZ
2506#endif // Debug
2507
c7527e3f 2508 wxAssociateWinWithHandle((HWND) m_hWnd, this);
c085e333 2509
42e69d6b 2510 return TRUE;
2bda0e17
KB
2511}
2512
42e69d6b
VZ
2513// ===========================================================================
2514// MSW message handlers
2515// ===========================================================================
2516
2517// ---------------------------------------------------------------------------
2518// WM_NOTIFY
2519// ---------------------------------------------------------------------------
2520
2521#ifdef __WIN95__
2522// FIXME: VZ: I'm not sure at all that the order of processing is correct
2523bool wxWindow::HandleNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
2bda0e17 2524{
42e69d6b
VZ
2525 LPNMHDR hdr = (LPNMHDR)lParam;
2526 HWND hWnd = hdr->hwndFrom;
2527 wxWindow *win = wxFindWinFromHandle((WXHWND)hWnd);
2528
2529 // is this one of our windows?
2530 if ( win )
564b2609 2531 {
42e69d6b 2532 return win->MSWOnNotify(idCtrl, lParam, result);
564b2609 2533 }
2bda0e17 2534
42e69d6b
VZ
2535 // try all our children
2536 wxWindowList::Node *node = GetChildren().GetFirst();
2537 while ( node )
564b2609 2538 {
42e69d6b
VZ
2539 wxWindow *child = node->GetData();
2540 if ( child->MSWOnNotify(idCtrl, lParam, result) )
2541 {
2542 return TRUE;
42e69d6b 2543 }
2d0a075d 2544
42e69d6b
VZ
2545 node = node->GetNext();
2546 }
2d0a075d 2547
42e69d6b
VZ
2548 // finally try this window too (catches toolbar case)
2549 return MSWOnNotify(idCtrl, lParam, result);
2550}
2d0a075d 2551
42e69d6b
VZ
2552bool wxWindow::MSWOnNotify(int WXUNUSED(idCtrl),
2553 WXLPARAM lParam,
2554 WXLPARAM* WXUNUSED(result))
2555{
2556#if wxUSE_TOOLTIPS
2557 NMHDR* hdr = (NMHDR *)lParam;
a17e237f 2558 if ( (int)hdr->code == TTN_NEEDTEXT && m_tooltip )
42e69d6b
VZ
2559 {
2560 TOOLTIPTEXT *ttt = (TOOLTIPTEXT *)lParam;
837e5743 2561 ttt->lpszText = (wxChar *)m_tooltip->GetTip().c_str();
2d0a075d 2562
42e69d6b
VZ
2563 // processed
2564 return TRUE;
2565 }
2566#endif // wxUSE_TOOLTIPS
2567
2568 return FALSE;
2569}
2570#endif // __WIN95__
2571
2572// ---------------------------------------------------------------------------
2573// end session messages
2574// ---------------------------------------------------------------------------
2d0a075d 2575
42e69d6b
VZ
2576bool wxWindow::HandleQueryEndSession(long logOff, bool *mayEnd)
2577{
2578 wxCloseEvent event(wxEVT_QUERY_END_SESSION, -1);
2579 event.SetEventObject(wxTheApp);
2580 event.SetCanVeto(TRUE);
a17e237f 2581 event.SetLoggingOff(logOff == (long)ENDSESSION_LOGOFF);
2d0a075d 2582
42e69d6b
VZ
2583 bool rc = wxTheApp->ProcessEvent(event);
2584
2585 if ( rc )
2586 {
2587 // we may end only if the app didn't veto session closing (double
2588 // negation...)
2589 *mayEnd = !event.GetVeto();
2d0a075d
JS
2590 }
2591
42e69d6b 2592 return rc;
2bda0e17
KB
2593}
2594
42e69d6b 2595bool wxWindow::HandleEndSession(bool endSession, long logOff)
2bda0e17 2596{
42e69d6b
VZ
2597 // do nothing if the session isn't ending
2598 if ( !endSession )
2599 return FALSE;
a23fd0e1 2600
42e69d6b
VZ
2601 wxCloseEvent event(wxEVT_END_SESSION, -1);
2602 event.SetEventObject(wxTheApp);
2603 event.SetCanVeto(FALSE);
a17e237f 2604 event.SetLoggingOff( (logOff == (long)ENDSESSION_LOGOFF) );
42e69d6b
VZ
2605 if ( (this == wxTheApp->GetTopWindow()) && // Only send once
2606 wxTheApp->ProcessEvent(event))
2607 {
2608 }
2609 return TRUE;
2bda0e17
KB
2610}
2611
42e69d6b
VZ
2612// ---------------------------------------------------------------------------
2613// window creation/destruction
2614// ---------------------------------------------------------------------------
2615
2616bool wxWindow::HandleCreate(WXLPCREATESTRUCT cs, bool *mayCreate)
2bda0e17 2617{
42e69d6b
VZ
2618 // TODO: should generate this event from WM_NCCREATE
2619 wxWindowCreateEvent event(this);
2620 (void)GetEventHandler()->ProcessEvent(event);
a23fd0e1 2621
42e69d6b
VZ
2622 *mayCreate = TRUE;
2623
2624 return TRUE;
2bda0e17
KB
2625}
2626
42e69d6b 2627bool wxWindow::HandleDestroy()
2bda0e17 2628{
42e69d6b
VZ
2629 wxWindowDestroyEvent event(this);
2630 (void)GetEventHandler()->ProcessEvent(event);
2631
2632 // delete our drop target if we've got one
2633#if wxUSE_DRAG_AND_DROP
2634 if ( m_dropTarget != NULL )
2d0a075d 2635 {
42e69d6b
VZ
2636 m_dropTarget->Revoke(m_hWnd);
2637
2638 delete m_dropTarget;
2639 m_dropTarget = NULL;
2d0a075d 2640 }
42e69d6b 2641#endif // wxUSE_DRAG_AND_DROP
2bda0e17 2642
42e69d6b
VZ
2643 // WM_DESTROY handled
2644 return TRUE;
2bda0e17
KB
2645}
2646
42e69d6b
VZ
2647// ---------------------------------------------------------------------------
2648// activation/focus
2649// ---------------------------------------------------------------------------
2650
00c4e897
VZ
2651void wxWindow::OnSetFocus(wxFocusEvent& event)
2652{
2653 // panel wants to track the window which was the last to have focus in it,
2654 // so we want to set ourselves as the window which last had focus
2655 //
2656 // notice that it's also important to do it upwards the tree becaus
2657 // otherwise when the top level panel gets focus, it won't set it back to
2658 // us, but to some other sibling
2659 wxWindow *win = this;
2660 while ( win )
2661 {
2662 wxWindow *parent = win->GetParent();
2663 wxPanel *panel = wxDynamicCast(parent, wxPanel);
2664 if ( panel )
2665 {
2666 panel->SetLastFocus(win);
2667 }
2668
2669 win = parent;
2670 }
2671
2672 wxLogTrace(_T("focus"), _T("%s (0x%08x) gets focus"),
2673 GetClassInfo()->GetClassName(), GetHandle());
2674
2675 event.Skip();
2676}
2677
42e69d6b
VZ
2678bool wxWindow::HandleActivate(int state,
2679 bool WXUNUSED(minimized),
2680 WXHWND WXUNUSED(activate))
2bda0e17 2681{
42e69d6b
VZ
2682 wxActivateEvent event(wxEVT_ACTIVATE,
2683 (state == WA_ACTIVE) || (state == WA_CLICKACTIVE),
2684 m_windowId);
2685 event.SetEventObject(this);
2686
2687 return GetEventHandler()->ProcessEvent(event);
2688}
2689
2690bool wxWindow::HandleSetFocus(WXHWND WXUNUSED(hwnd))
2691{
789295bf 2692#if wxUSE_CARET
42e69d6b 2693 // Deal with caret
789295bf 2694 if ( m_caret )
2d0a075d 2695 {
789295bf 2696 m_caret->OnSetFocus();
2bda0e17 2697 }
789295bf 2698#endif // wxUSE_CARET
42e69d6b 2699
42e69d6b
VZ
2700 wxFocusEvent event(wxEVT_SET_FOCUS, m_windowId);
2701 event.SetEventObject(this);
2702
2703 return GetEventHandler()->ProcessEvent(event);
2bda0e17
KB
2704}
2705
42e69d6b 2706bool wxWindow::HandleKillFocus(WXHWND WXUNUSED(hwnd))
2bda0e17 2707{
789295bf 2708#if wxUSE_CARET
42e69d6b 2709 // Deal with caret
789295bf 2710 if ( m_caret )
2d0a075d 2711 {
789295bf 2712 m_caret->OnKillFocus();
2bda0e17 2713 }
789295bf 2714#endif // wxUSE_CARET
42e69d6b
VZ
2715
2716 wxFocusEvent event(wxEVT_KILL_FOCUS, m_windowId);
2717 event.SetEventObject(this);
2718
2719 return GetEventHandler()->ProcessEvent(event);
2bda0e17
KB
2720}
2721
42e69d6b
VZ
2722// ---------------------------------------------------------------------------
2723// miscellaneous
2724// ---------------------------------------------------------------------------
2725
2726bool wxWindow::HandleShow(bool show, int status)
2bda0e17 2727{
42e69d6b
VZ
2728 wxShowEvent event(GetId(), show);
2729 event.m_eventObject = this;
2730
2731 return GetEventHandler()->ProcessEvent(event);
2bda0e17
KB
2732}
2733
42e69d6b 2734bool wxWindow::HandleInitDialog(WXHWND WXUNUSED(hWndFocus))
2bda0e17 2735{
42e69d6b
VZ
2736 wxInitDialogEvent event(GetId());
2737 event.m_eventObject = this;
2738
2739 return GetEventHandler()->ProcessEvent(event);
2bda0e17
KB
2740}
2741
42e69d6b 2742bool wxWindow::HandleDropFiles(WXWPARAM wParam)
2bda0e17 2743{
42e69d6b
VZ
2744 HDROP hFilesInfo = (HDROP) wParam;
2745 POINT dropPoint;
2746 DragQueryPoint(hFilesInfo, (LPPOINT) &dropPoint);
2747
2748 // Get the total number of files dropped
f6bcfd97
BP
2749 WORD gwFilesDropped = (WORD)::DragQueryFile
2750 (
2751 (HDROP)hFilesInfo,
2752 (UINT)-1,
2753 (LPTSTR)0,
2754 (UINT)0
2755 );
42e69d6b
VZ
2756
2757 wxString *files = new wxString[gwFilesDropped];
2758 int wIndex;
2759 for (wIndex=0; wIndex < (int)gwFilesDropped; wIndex++)
2d0a075d 2760 {
837e5743 2761 DragQueryFile (hFilesInfo, wIndex, (LPTSTR) wxBuffer, 1000);
42e69d6b 2762 files[wIndex] = wxBuffer;
2d0a075d 2763 }
42e69d6b 2764 DragFinish (hFilesInfo);
2bda0e17 2765
42e69d6b
VZ
2766 wxDropFilesEvent event(wxEVT_DROP_FILES, gwFilesDropped, files);
2767 event.m_eventObject = this;
2768 event.m_pos.x = dropPoint.x; event.m_pos.x = dropPoint.y;
2769
2770 bool rc = GetEventHandler()->ProcessEvent(event);
2771
2772 delete[] files;
2773
2774 return rc;
2bda0e17
KB
2775}
2776
42e69d6b
VZ
2777bool wxWindow::HandleSetCursor(WXHWND hWnd,
2778 short nHitTest,
2779 int WXUNUSED(mouseMsg))
2bda0e17 2780{
bfbd6dc1 2781 // the logic is as follows:
43b5058d
VZ
2782 // -1. don't set cursor for non client area, including but not limited to
2783 // the title bar, scrollbars, &c
2784 // 0. allow the user to override default behaviour by using EVT_SET_CURSOR
bfbd6dc1
VZ
2785 // 1. if we have the cursor set it unless wxIsBusy()
2786 // 2. if we're a top level window, set some cursor anyhow
2787 // 3. if wxIsBusy(), set the busy cursor, otherwise the global one
42e69d6b 2788
43b5058d
VZ
2789 if ( nHitTest != HTCLIENT )
2790 {
2791 return FALSE;
2792 }
2793
bfbd6dc1 2794 HCURSOR hcursor = 0;
43b5058d
VZ
2795
2796 // first ask the user code - it may wish to set the cursor in some very
2797 // specific way (for example, depending on the current position)
2798 POINT pt;
669f7a11 2799#ifdef __WIN32__
43b5058d
VZ
2800 if ( !::GetCursorPos(&pt) )
2801 {
f6bcfd97 2802 wxLogLastError(wxT("GetCursorPos"));
43b5058d 2803 }
669f7a11
JS
2804#else
2805 // In WIN16 it doesn't return a value.
2806 ::GetCursorPos(&pt);
2807#endif
43b5058d
VZ
2808
2809 int x = pt.x,
2810 y = pt.y;
2811 ScreenToClient(&x, &y);
2812 wxSetCursorEvent event(x, y);
2813
2814 bool processedEvtSetCursor = GetEventHandler()->ProcessEvent(event);
2815 if ( processedEvtSetCursor && event.HasCursor() )
bfbd6dc1 2816 {
43b5058d 2817 hcursor = GetHcursorOf(event.GetCursor());
bfbd6dc1 2818 }
42e69d6b 2819
43b5058d 2820 if ( !hcursor )
bfbd6dc1 2821 {
43b5058d
VZ
2822 bool isBusy = wxIsBusy();
2823
2824 // the test for processedEvtSetCursor is here to prevent using m_cursor
2825 // if the user code caught EVT_SET_CURSOR() and returned nothing from
2826 // it - this is a way to say that our cursor shouldn't be used for this
2827 // point
2828 if ( !processedEvtSetCursor && m_cursor.Ok() )
bfbd6dc1 2829 {
43b5058d 2830 hcursor = GetHcursorOf(m_cursor);
bfbd6dc1 2831 }
43b5058d
VZ
2832
2833 if ( !GetParent() )
bfbd6dc1 2834 {
43b5058d 2835 if ( isBusy )
42e69d6b 2836 {
43b5058d
VZ
2837 hcursor = wxGetCurrentBusyCursor();
2838 }
2839 else if ( !hcursor )
2840 {
2841 const wxCursor *cursor = wxGetGlobalCursor();
2842 if ( cursor && cursor->Ok() )
2843 {
2844 hcursor = GetHcursorOf(*cursor);
2845 }
42e69d6b
VZ
2846 }
2847 }
2848 }
2849
bfbd6dc1
VZ
2850 if ( hcursor )
2851 {
2852 ::SetCursor(hcursor);
2853
2854 // cursor set, stop here
2855 return TRUE;
2856 }
3ca6a5f0
BP
2857
2858 // pass up the window chain
2859 return FALSE;
2bda0e17
KB
2860}
2861
42e69d6b
VZ
2862// ---------------------------------------------------------------------------
2863// owner drawn stuff
2864// ---------------------------------------------------------------------------
2865
2866bool wxWindow::MSWOnDrawItem(int id, WXDRAWITEMSTRUCT *itemStruct)
2bda0e17 2867{
4286a5b5 2868#if wxUSE_OWNER_DRAWN
42e69d6b
VZ
2869 // is it a menu item?
2870 if ( id == 0 )
2871 {
2872 DRAWITEMSTRUCT *pDrawStruct = (DRAWITEMSTRUCT *)itemStruct;
2873 wxMenuItem *pMenuItem = (wxMenuItem *)(pDrawStruct->itemData);
2874
2875 wxCHECK( pMenuItem->IsKindOf(CLASSINFO(wxMenuItem)), FALSE );
2876
2877 // prepare to call OnDrawItem()
2878 wxDC dc;
2879 dc.SetHDC((WXHDC)pDrawStruct->hDC, FALSE);
2880 wxRect rect(pDrawStruct->rcItem.left, pDrawStruct->rcItem.top,
2881 pDrawStruct->rcItem.right - pDrawStruct->rcItem.left,
2882 pDrawStruct->rcItem.bottom - pDrawStruct->rcItem.top);
2883
2884 return pMenuItem->OnDrawItem
2885 (
2886 dc, rect,
2887 (wxOwnerDrawn::wxODAction)pDrawStruct->itemAction,
2888 (wxOwnerDrawn::wxODStatus)pDrawStruct->itemState
2889 );
2890 }
2891
2892 wxWindow *item = FindItem(id);
2893 if ( item && item->IsKindOf(CLASSINFO(wxControl)) )
2894 {
2895 return ((wxControl *)item)->MSWOnDraw(itemStruct);
2896 }
cd0b1709 2897#endif // USE_OWNER_DRAWN
4286a5b5 2898
cd0b1709 2899 return FALSE;
2bda0e17
KB
2900}
2901
42e69d6b 2902bool wxWindow::MSWOnMeasureItem(int id, WXMEASUREITEMSTRUCT *itemStruct)
2bda0e17 2903{
4286a5b5 2904#if wxUSE_OWNER_DRAWN
42e69d6b
VZ
2905 // is it a menu item?
2906 if ( id == 0 )
2d0a075d 2907 {
42e69d6b
VZ
2908 MEASUREITEMSTRUCT *pMeasureStruct = (MEASUREITEMSTRUCT *)itemStruct;
2909 wxMenuItem *pMenuItem = (wxMenuItem *)(pMeasureStruct->itemData);
2910
2911 wxCHECK( pMenuItem->IsKindOf(CLASSINFO(wxMenuItem)), FALSE );
2912
2913 return pMenuItem->OnMeasureItem(&pMeasureStruct->itemWidth,
2914 &pMeasureStruct->itemHeight);
2d0a075d 2915 }
42e69d6b
VZ
2916
2917 wxWindow *item = FindItem(id);
2918 if ( item && item->IsKindOf(CLASSINFO(wxControl)) )
2919 {
2920 return ((wxControl *)item)->MSWOnMeasure(itemStruct);
2921 }
4286a5b5 2922#endif // owner-drawn menus
42e69d6b 2923 return FALSE;
2bda0e17
KB
2924}
2925
42e69d6b
VZ
2926// ---------------------------------------------------------------------------
2927// colours and palettes
2928// ---------------------------------------------------------------------------
2bda0e17 2929
42e69d6b 2930bool wxWindow::HandleSysColorChange()
2bda0e17 2931{
42e69d6b
VZ
2932 wxSysColourChangedEvent event;
2933 event.SetEventObject(this);
2934
2935 return GetEventHandler()->ProcessEvent(event);
2936}
2937
2938bool wxWindow::HandleCtlColor(WXHBRUSH *brush,
2939 WXHDC pDC,
2940 WXHWND pWnd,
2941 WXUINT nCtlColor,
2942 WXUINT message,
2943 WXWPARAM wParam,
2944 WXLPARAM lParam)
2945{
2946 WXHBRUSH hBrush = 0;
2947
2948 if ( nCtlColor == CTLCOLOR_DLG )
2d0a075d 2949 {
42e69d6b 2950 hBrush = OnCtlColor(pDC, pWnd, nCtlColor, message, wParam, lParam);
2d0a075d
JS
2951 }
2952 else
2953 {
42e69d6b
VZ
2954 wxControl *item = (wxControl *)FindItemByHWND(pWnd, TRUE);
2955 if ( item )
2956 hBrush = item->OnCtlColor(pDC, pWnd, nCtlColor, message, wParam, lParam);
2d0a075d 2957 }
42e69d6b
VZ
2958
2959 if ( hBrush )
2960 *brush = hBrush;
2961
2962 return hBrush != 0;
2bda0e17
KB
2963}
2964
42e69d6b
VZ
2965// Define for each class of dialog and control
2966WXHBRUSH wxWindow::OnCtlColor(WXHDC hDC,
2967 WXHWND hWnd,
2968 WXUINT nCtlColor,
2969 WXUINT message,
2970 WXWPARAM wParam,
2971 WXLPARAM lParam)
2bda0e17 2972{
42e69d6b
VZ
2973 return (WXHBRUSH)0;
2974}
2d0a075d 2975
42e69d6b
VZ
2976bool wxWindow::HandlePaletteChanged(WXHWND hWndPalChange)
2977{
2978 wxPaletteChangedEvent event(GetId());
2979 event.SetEventObject(this);
2980 event.SetChangedWindow(wxFindWinFromHandle(hWndPalChange));
2d0a075d 2981
42e69d6b
VZ
2982 return GetEventHandler()->ProcessEvent(event);
2983}
2984
2985bool wxWindow::HandleQueryNewPalette()
2986{
2987 wxQueryNewPaletteEvent event(GetId());
2988 event.SetEventObject(this);
2989
2990 return GetEventHandler()->ProcessEvent(event) && event.GetPaletteRealized();
2991}
2992
2993// Responds to colour changes: passes event on to children.
2994void wxWindow::OnSysColourChanged(wxSysColourChangedEvent& event)
2995{
2996 wxNode *node = GetChildren().First();
2997 while ( node )
2998 {
2999 // Only propagate to non-top-level windows
3000 wxWindow *win = (wxWindow *)node->Data();
3001 if ( win->GetParent() )
3002 {
3003 wxSysColourChangedEvent event2;
3004 event.m_eventObject = win;
3005 win->GetEventHandler()->ProcessEvent(event2);
564b2609 3006 }
42e69d6b
VZ
3007
3008 node = node->Next();
2bda0e17 3009 }
2bda0e17
KB
3010}
3011
42e69d6b
VZ
3012// ---------------------------------------------------------------------------
3013// painting
3014// ---------------------------------------------------------------------------
3015
3016bool wxWindow::HandlePaint()
2bda0e17 3017{
42e69d6b
VZ
3018#ifdef __WIN32__
3019 HRGN hRegion = ::CreateRectRgn(0, 0, 0, 0); // Dummy call to get a handle
3020 if ( !hRegion )
f6bcfd97 3021 wxLogLastError(wxT("CreateRectRgn"));
42e69d6b 3022 if ( ::GetUpdateRgn(GetHwnd(), hRegion, FALSE) == ERROR )
f6bcfd97 3023 wxLogLastError(wxT("GetUpdateRgn"));
c085e333 3024
42e69d6b
VZ
3025 m_updateRegion = wxRegion((WXHRGN) hRegion);
3026#else
3027 RECT updateRect;
3028 ::GetUpdateRect(GetHwnd(), & updateRect, FALSE);
c085e333 3029
42e69d6b
VZ
3030 m_updateRegion = wxRegion(updateRect.left, updateRect.top,
3031 updateRect.right - updateRect.left,
3032 updateRect.bottom - updateRect.top);
3033#endif
c085e333 3034
42e69d6b
VZ
3035 wxPaintEvent event(m_windowId);
3036 event.SetEventObject(this);
2bda0e17 3037
42e69d6b 3038 return GetEventHandler()->ProcessEvent(event);
2bda0e17
KB
3039}
3040
63da7df7
JS
3041// Can be called from an application's OnPaint handler
3042void wxWindow::OnPaint(wxPaintEvent& event)
3043{
3044 HDC hDC = (HDC) wxPaintDC::FindDCInCache((wxWindow*) event.GetEventObject());
3045 if (hDC != 0)
3046 {
3047 MSWDefWindowProc(WM_PAINT, (WPARAM) hDC, 0);
3048 }
3049}
3050
42e69d6b 3051bool wxWindow::HandleEraseBkgnd(WXHDC hdc)
a23fd0e1 3052{
42e69d6b
VZ
3053 // Prevents flicker when dragging
3054 if ( ::IsIconic(GetHwnd()) )
3055 return TRUE;
a23fd0e1 3056
a23fd0e1 3057 wxDC dc;
c085e333 3058
a23fd0e1 3059 dc.SetHDC(hdc);
564b2609
VZ
3060 dc.SetWindow(this);
3061 dc.BeginDrawing();
c085e333 3062
2bda0e17 3063 wxEraseEvent event(m_windowId, &dc);
42e69d6b 3064 event.SetEventObject(this);
a23fd0e1 3065 bool rc = GetEventHandler()->ProcessEvent(event);
c085e333 3066
a23fd0e1
VZ
3067 dc.EndDrawing();
3068 dc.SelectOldObjects(hdc);
2bda0e17 3069 dc.SetHDC((WXHDC) NULL);
a23fd0e1
VZ
3070
3071 return rc;
2bda0e17
KB
3072}
3073
3074void wxWindow::OnEraseBackground(wxEraseEvent& event)
3075{
2d0a075d 3076 RECT rect;
a23fd0e1 3077 ::GetClientRect(GetHwnd(), &rect);
2bda0e17 3078
42e69d6b
VZ
3079 COLORREF ref = PALETTERGB(m_backgroundColour.Red(),
3080 m_backgroundColour.Green(),
3081 m_backgroundColour.Blue());
ce3ed50d 3082 HBRUSH hBrush = ::CreateSolidBrush(ref);
42e69d6b 3083 if ( !hBrush )
f6bcfd97 3084 wxLogLastError(wxT("CreateSolidBrush"));
42e69d6b
VZ
3085
3086 HDC hdc = (HDC)event.GetDC()->GetHDC();
2bda0e17 3087
42e69d6b
VZ
3088 int mode = ::SetMapMode(hdc, MM_TEXT);
3089
3090 ::FillRect(hdc, &rect, hBrush);
2d0a075d 3091 ::DeleteObject(hBrush);
42e69d6b
VZ
3092 ::SetMapMode(hdc, mode);
3093}
3094
3095// ---------------------------------------------------------------------------
3096// moving and resizing
3097// ---------------------------------------------------------------------------
3098
3099bool wxWindow::HandleMinimize()
3100{
3101 wxIconizeEvent event(m_windowId);
3102 event.SetEventObject(this);
2d0a075d 3103
42e69d6b 3104 return GetEventHandler()->ProcessEvent(event);
2bda0e17
KB
3105}
3106
42e69d6b 3107bool wxWindow::HandleMaximize()
2bda0e17 3108{
42e69d6b
VZ
3109 wxMaximizeEvent event(m_windowId);
3110 event.SetEventObject(this);
c085e333 3111
42e69d6b
VZ
3112 return GetEventHandler()->ProcessEvent(event);
3113}
2bda0e17 3114
42e69d6b
VZ
3115bool wxWindow::HandleMove(int x, int y)
3116{
3117 wxMoveEvent event(wxPoint(x, y), m_windowId);
3118 event.SetEventObject(this);
3119
3120 return GetEventHandler()->ProcessEvent(event);
3121}
3122
3123bool wxWindow::HandleSize(int w, int h, WXUINT WXUNUSED(flag))
3124{
3125 wxSizeEvent event(wxSize(w, h), m_windowId);
3126 event.SetEventObject(this);
3127
3128 return GetEventHandler()->ProcessEvent(event);
3129}
3130
3131bool wxWindow::HandleGetMinMaxInfo(void *mmInfo)
3132{
3133 MINMAXINFO *info = (MINMAXINFO *)mmInfo;
3134
3135 bool rc = FALSE;
3136
3137 if ( m_minWidth != -1 )
2d0a075d 3138 {
42e69d6b
VZ
3139 info->ptMinTrackSize.x = m_minWidth;
3140 rc = TRUE;
2d0a075d 3141 }
2bda0e17 3142
42e69d6b
VZ
3143 if ( m_minHeight != -1 )
3144 {
3145 info->ptMinTrackSize.y = m_minHeight;
3146 rc = TRUE;
3147 }
2bda0e17 3148
42e69d6b
VZ
3149 if ( m_maxWidth != -1 )
3150 {
3151 info->ptMaxTrackSize.x = m_maxWidth;
3152 rc = TRUE;
2d0a075d 3153 }
2bda0e17 3154
42e69d6b
VZ
3155 if ( m_maxHeight != -1 )
3156 {
3157 info->ptMaxTrackSize.y = m_maxHeight;
3158 rc = TRUE;
3159 }
2bda0e17 3160
42e69d6b
VZ
3161 return rc;
3162}
2d0a075d 3163
f6bcfd97
BP
3164// generate an artificial resize event
3165void wxWindow::SendSizeEvent()
3166{
3167 RECT r;
3168#ifdef __WIN16__
3169 ::GetWindowRect(GetHwnd(), &r);
3170#else
3171 if ( !::GetWindowRect(GetHwnd(), &r) )
3172 {
3173 wxLogLastError(_T("GetWindowRect"));
3174 }
3175#endif
3176
3177 (void)::PostMessage(GetHwnd(), WM_SIZE, SIZE_RESTORED,
3178 MAKELPARAM(r.right - r.left, r.bottom - r.top));
3179}
3180
42e69d6b
VZ
3181// ---------------------------------------------------------------------------
3182// command messages
3183// ---------------------------------------------------------------------------
3184
3185bool wxWindow::HandleCommand(WXWORD id, WXWORD cmd, WXHWND control)
3186{
3187 if ( wxCurrentPopupMenu )
3188 {
3189 wxMenu *popupMenu = wxCurrentPopupMenu;
3190 wxCurrentPopupMenu = NULL;
3191
3192 return popupMenu->MSWCommand(cmd, id);
3193 }
3194
2f4ef631 3195 wxWindow *win = (wxWindow*) NULL;
b853f898 3196 if ( cmd == 0 || cmd == 1 ) // menu or accel - use id
42e69d6b 3197 {
b853f898
VZ
3198 // must cast to a signed type before comparing with other ids!
3199 win = FindItem((signed short)id);
3200 }
2f4ef631
JS
3201
3202 if (!win && control)
b853f898
VZ
3203 {
3204 // find it from HWND - this works even with the broken programs using
3205 // the same ids for different controls
42e69d6b
VZ
3206 win = wxFindWinFromHandle(control);
3207 }
3208
3209 if ( win )
b94ae1ea 3210 {
42e69d6b 3211 return win->MSWCommand(cmd, id);
b94ae1ea
VZ
3212 }
3213
3214 // the messages sent from the in-place edit control used by the treectrl
3215 // for label editing have id == 0, but they should _not_ be treated as menu
3216 // messages (they are EN_XXX ones, in fact) so don't translate anything
3217 // coming from a control to wxEVT_COMMAND_MENU_SELECTED
3218 if ( !control )
a84fc80b 3219 {
b94ae1ea
VZ
3220 // If no child window, it may be an accelerator, e.g. for a popup menu
3221 // command
a84fc80b
JS
3222
3223 wxCommandEvent event(wxEVT_COMMAND_MENU_SELECTED);
3224 event.SetEventObject(this);
3225 event.SetId(id);
3226 event.SetInt(id);
b94ae1ea
VZ
3227
3228 return GetEventHandler()->ProcessEvent(event);
a84fc80b 3229 }
42e69d6b
VZ
3230
3231 return FALSE;
2bda0e17
KB
3232}
3233
42e69d6b 3234bool wxWindow::HandleSysCommand(WXWPARAM wParam, WXLPARAM lParam)
2bda0e17 3235{
42e69d6b
VZ
3236 // 4 bits are reserved
3237 switch ( wParam & 0xFFFFFFF0 )
3238 {
3239 case SC_MAXIMIZE:
3240 return HandleMaximize();
2d0a075d 3241
42e69d6b
VZ
3242 case SC_MINIMIZE:
3243 return HandleMinimize();
2d0a075d 3244 }
2bda0e17 3245
42e69d6b
VZ
3246 return FALSE;
3247}
3248
3249// ---------------------------------------------------------------------------
3250// mouse events
3251// ---------------------------------------------------------------------------
3252
3253void wxWindow::InitMouseEvent(wxMouseEvent& event, int x, int y, WXUINT flags)
3254{
3255 event.m_x = x;
3256 event.m_y = y;
3257 event.m_shiftDown = ((flags & MK_SHIFT) != 0);
3258 event.m_controlDown = ((flags & MK_CONTROL) != 0);
3259 event.m_leftDown = ((flags & MK_LBUTTON) != 0);
3260 event.m_middleDown = ((flags & MK_MBUTTON) != 0);
3261 event.m_rightDown = ((flags & MK_RBUTTON) != 0);
b96340e6 3262 event.m_altDown = (::GetKeyState(VK_MENU) & 0x80000000) != 0;
42e69d6b
VZ
3263 event.SetTimestamp(s_currentMsg.time);
3264 event.m_eventObject = this;
3265
3266#if wxUSE_MOUSEEVENT_HACK
3267 m_lastMouseX = x;
3268 m_lastMouseY = y;
3269 m_lastMouseEvent = event.GetEventType();
3270#endif // wxUSE_MOUSEEVENT_HACK
2bda0e17 3271
2bda0e17
KB
3272}
3273
42e69d6b 3274bool wxWindow::HandleMouseEvent(WXUINT msg, int x, int y, WXUINT flags)
2bda0e17 3275{
42e69d6b
VZ
3276 // the mouse events take consecutive IDs from WM_MOUSEFIRST to
3277 // WM_MOUSELAST, so it's enough to substract WM_MOUSEMOVE == WM_MOUSEFIRST
3278 // from the message id and take the value in the table to get wxWin event
3279 // id
3280 static const wxEventType eventsMouse[] =
3281 {
3282 wxEVT_MOTION,
3283 wxEVT_LEFT_DOWN,
3284 wxEVT_LEFT_UP,
3285 wxEVT_LEFT_DCLICK,
3286 wxEVT_RIGHT_DOWN,
3287 wxEVT_RIGHT_UP,
3288 wxEVT_RIGHT_DCLICK,
3289 wxEVT_MIDDLE_DOWN,
3290 wxEVT_MIDDLE_UP,
3291 wxEVT_MIDDLE_DCLICK
3292 };
2bda0e17 3293
42e69d6b
VZ
3294 wxMouseEvent event(eventsMouse[msg - WM_MOUSEMOVE]);
3295 InitMouseEvent(event, x, y, flags);
3296
3297 return GetEventHandler()->ProcessEvent(event);
3298}
3299
3300bool wxWindow::HandleMouseMove(int x, int y, WXUINT flags)
3301{
3302 if ( !m_mouseInWindow )
2bda0e17 3303 {
42e69d6b
VZ
3304 // Generate an ENTER event
3305 m_mouseInWindow = TRUE;
3306
3307 wxMouseEvent event(wxEVT_ENTER_WINDOW);
3308 InitMouseEvent(event, x, y, flags);
3309
3310 (void)GetEventHandler()->ProcessEvent(event);
3311 }
3312
3313#if wxUSE_MOUSEEVENT_HACK
3314 // Window gets a click down message followed by a mouse move message even
3315 // if position isn't changed! We want to discard the trailing move event
3316 // if x and y are the same.
3317 if ( (m_lastMouseEvent == wxEVT_RIGHT_DOWN ||
3318 m_lastMouseEvent == wxEVT_LEFT_DOWN ||
3319 m_lastMouseEvent == wxEVT_MIDDLE_DOWN) &&
3320 (m_lastMouseX == event.m_x && m_lastMouseY == event.m_y) )
3321 {
3322 m_lastMouseEvent = wxEVT_MOTION;
3323
3324 return FALSE;
3325 }
3326#endif // wxUSE_MOUSEEVENT_HACK
3327
3328 return HandleMouseEvent(WM_MOUSEMOVE, x, y, flags);
3329}
3330
3331// ---------------------------------------------------------------------------
3332// keyboard handling
3333// ---------------------------------------------------------------------------
3334
c42404a5
VZ
3335// create the key event of the given type for the given key - used by
3336// HandleChar and HandleKeyDown/Up
3337wxKeyEvent wxWindow::CreateKeyEvent(wxEventType evType,
3338 int id,
3339 WXLPARAM lParam) const
3340{
3341 wxKeyEvent event(evType);
3342 event.SetId(GetId());
3f7bc32b
VZ
3343 event.m_shiftDown = wxIsShiftDown();
3344 event.m_controlDown = wxIsCtrlDown();
c42404a5
VZ
3345 event.m_altDown = (HIWORD(lParam) & KF_ALTDOWN) == KF_ALTDOWN;
3346
3347 event.m_eventObject = (wxWindow *)this; // const_cast
3348 event.m_keyCode = id;
3349 event.SetTimestamp(s_currentMsg.time);
3350
3351 // translate the position to client coords
3352 POINT pt;
3353 GetCursorPos(&pt);
3354 RECT rect;
3355 GetWindowRect(GetHwnd(),&rect);
3356 pt.x -= rect.left;
3357 pt.y -= rect.top;
3358
3359 event.m_x = pt.x;
3360 event.m_y = pt.y;
3361
3362 return event;
3363}
3364
42e69d6b
VZ
3365// isASCII is TRUE only when we're called from WM_CHAR handler and not from
3366// WM_KEYDOWN one
3367bool wxWindow::HandleChar(WXWORD wParam, WXLPARAM lParam, bool isASCII)
3368{
c42404a5
VZ
3369 bool ctrlDown = FALSE;
3370
42e69d6b 3371 int id;
42e69d6b
VZ
3372 if ( isASCII )
3373 {
3374 // If 1 -> 26, translate to CTRL plus a letter.
3375 id = wParam;
3376 if ( (id > 0) && (id < 27) )
2d0a075d 3377 {
42e69d6b
VZ
3378 switch (id)
3379 {
c42404a5 3380 case 13:
42e69d6b
VZ
3381 id = WXK_RETURN;
3382 break;
c42404a5
VZ
3383
3384 case 8:
42e69d6b
VZ
3385 id = WXK_BACK;
3386 break;
c42404a5
VZ
3387
3388 case 9:
42e69d6b
VZ
3389 id = WXK_TAB;
3390 break;
c42404a5
VZ
3391
3392 default:
3393 ctrlDown = TRUE;
42e69d6b 3394 id = id + 96;
42e69d6b 3395 }
2d0a075d 3396 }
2d0a075d 3397 }
c42404a5
VZ
3398 else if ( (id = wxCharCodeMSWToWX(wParam)) == 0 )
3399 {
42e69d6b 3400 // it's ASCII and will be processed here only when called from
c42404a5 3401 // WM_CHAR (i.e. when isASCII = TRUE), don't process it now
42e69d6b
VZ
3402 id = -1;
3403 }
2bda0e17 3404
42e69d6b 3405 if ( id != -1 )
2d0a075d 3406 {
c42404a5
VZ
3407 wxKeyEvent event(CreateKeyEvent(wxEVT_CHAR, id, lParam));
3408 if ( ctrlDown )
3409 {
3410 event.m_controlDown = TRUE;
3411 }
42e69d6b
VZ
3412
3413 if ( GetEventHandler()->ProcessEvent(event) )
3414 return TRUE;
2d0a075d 3415 }
c42404a5
VZ
3416
3417 return FALSE;
2bda0e17
KB
3418}
3419
42e69d6b 3420bool wxWindow::HandleKeyDown(WXWORD wParam, WXLPARAM lParam)
2bda0e17 3421{
c42404a5 3422 int id = wxCharCodeMSWToWX(wParam);
2bda0e17 3423
c42404a5
VZ
3424 if ( !id )
3425 {
3426 // normal ASCII char
42e69d6b
VZ
3427 id = wParam;
3428 }
3429
c42404a5 3430 if ( id != -1 ) // VZ: does this ever happen (FIXME)?
2bda0e17 3431 {
c42404a5 3432 wxKeyEvent event(CreateKeyEvent(wxEVT_KEY_DOWN, id, lParam));
42e69d6b 3433 if ( GetEventHandler()->ProcessEvent(event) )
2d0a075d 3434 {
42e69d6b 3435 return TRUE;
2d0a075d 3436 }
42e69d6b 3437 }
c42404a5
VZ
3438
3439 return FALSE;
2bda0e17
KB
3440}
3441
42e69d6b 3442bool wxWindow::HandleKeyUp(WXWORD wParam, WXLPARAM lParam)
2bda0e17 3443{
c42404a5 3444 int id = wxCharCodeMSWToWX(wParam);
2bda0e17 3445
c42404a5
VZ
3446 if ( !id )
3447 {
3448 // normal ASCII char
42e69d6b 3449 id = wParam;
2d0a075d 3450 }
2bda0e17 3451
c42404a5 3452 if ( id != -1 ) // VZ: does this ever happen (FIXME)?
42e69d6b 3453 {
c42404a5 3454 wxKeyEvent event(CreateKeyEvent(wxEVT_KEY_UP, id, lParam));
42e69d6b
VZ
3455 if ( GetEventHandler()->ProcessEvent(event) )
3456 return TRUE;
42e69d6b 3457 }
c42404a5
VZ
3458
3459 return FALSE;
2bda0e17
KB
3460}
3461
42e69d6b
VZ
3462// ---------------------------------------------------------------------------
3463// joystick
3464// ---------------------------------------------------------------------------
3465
3466bool wxWindow::HandleJoystickEvent(WXUINT msg, int x, int y, WXUINT flags)
2bda0e17 3467{
42e69d6b
VZ
3468 int change = 0;
3469 if ( flags & JOY_BUTTON1CHG )
3470 change = wxJOY_BUTTON1;
3471 if ( flags & JOY_BUTTON2CHG )
3472 change = wxJOY_BUTTON2;
3473 if ( flags & JOY_BUTTON3CHG )
3474 change = wxJOY_BUTTON3;
3475 if ( flags & JOY_BUTTON4CHG )
3476 change = wxJOY_BUTTON4;
2bda0e17 3477
42e69d6b
VZ
3478 int buttons = 0;
3479 if ( flags & JOY_BUTTON1 )
3480 buttons |= wxJOY_BUTTON1;
3481 if ( flags & JOY_BUTTON2 )
3482 buttons |= wxJOY_BUTTON2;
3483 if ( flags & JOY_BUTTON3 )
3484 buttons |= wxJOY_BUTTON3;
3485 if ( flags & JOY_BUTTON4 )
3486 buttons |= wxJOY_BUTTON4;
c085e333 3487
42e69d6b
VZ
3488 // the event ids aren't consecutive so we can't use table based lookup
3489 int joystick;
3490 wxEventType eventType;
3491 switch ( msg )
3492 {
3493 case MM_JOY1MOVE:
3494 joystick = 1;
3495 eventType = wxEVT_JOY_MOVE;
3496 break;
2bda0e17 3497
42e69d6b
VZ
3498 case MM_JOY2MOVE:
3499 joystick = 2;
3500 eventType = wxEVT_JOY_MOVE;
3501 break;
2bda0e17 3502
42e69d6b
VZ
3503 case MM_JOY1ZMOVE:
3504 joystick = 1;
3505 eventType = wxEVT_JOY_ZMOVE;
3506 break;
2bda0e17 3507
42e69d6b
VZ
3508 case MM_JOY2ZMOVE:
3509 joystick = 2;
3510 eventType = wxEVT_JOY_ZMOVE;
3511 break;
2bda0e17 3512
42e69d6b
VZ
3513 case MM_JOY1BUTTONDOWN:
3514 joystick = 1;
3515 eventType = wxEVT_JOY_BUTTON_DOWN;
3516 break;
2bda0e17 3517
42e69d6b
VZ
3518 case MM_JOY2BUTTONDOWN:
3519 joystick = 2;
3520 eventType = wxEVT_JOY_BUTTON_DOWN;
3521 break;
2bda0e17 3522
42e69d6b
VZ
3523 case MM_JOY1BUTTONUP:
3524 joystick = 1;
3525 eventType = wxEVT_JOY_BUTTON_UP;
3526 break;
3527
3528 case MM_JOY2BUTTONUP:
3529 joystick = 2;
3530 eventType = wxEVT_JOY_BUTTON_UP;
3531 break;
3532
3533 default:
223d09f6 3534 wxFAIL_MSG(wxT("no such joystick event"));
2d0a075d 3535
42e69d6b 3536 return FALSE;
2d0a075d 3537 }
2bda0e17 3538
42e69d6b
VZ
3539 wxJoystickEvent event(eventType, buttons, joystick, change);
3540 event.SetPosition(wxPoint(x, y));
3541 event.SetEventObject(this);
c085e333 3542
42e69d6b 3543 return GetEventHandler()->ProcessEvent(event);
2bda0e17
KB
3544}
3545
42e69d6b
VZ
3546// ---------------------------------------------------------------------------
3547// scrolling
3548// ---------------------------------------------------------------------------
3549
3550bool wxWindow::MSWOnScroll(int orientation, WXWORD wParam,
3551 WXWORD pos, WXHWND control)
2bda0e17 3552{
42e69d6b 3553 if ( control )
cc2b7472 3554 {
42e69d6b
VZ
3555 wxWindow *child = wxFindWinFromHandle(control);
3556 if ( child )
3557 return child->MSWOnScroll(orientation, wParam, pos, control);
cc2b7472 3558 }
2bda0e17 3559
9145664b 3560 wxScrollWinEvent event;
42e69d6b
VZ
3561 event.SetPosition(pos);
3562 event.SetOrientation(orientation);
3563 event.m_eventObject = this;
cc2b7472 3564
42e69d6b
VZ
3565 switch ( wParam )
3566 {
3567 case SB_TOP:
9145664b 3568 event.m_eventType = wxEVT_SCROLLWIN_TOP;
42e69d6b 3569 break;
cc2b7472 3570
42e69d6b 3571 case SB_BOTTOM:
9145664b 3572 event.m_eventType = wxEVT_SCROLLWIN_BOTTOM;
42e69d6b 3573 break;
cc2b7472 3574
42e69d6b 3575 case SB_LINEUP:
9145664b 3576 event.m_eventType = wxEVT_SCROLLWIN_LINEUP;
42e69d6b 3577 break;
2bda0e17 3578
42e69d6b 3579 case SB_LINEDOWN:
9145664b 3580 event.m_eventType = wxEVT_SCROLLWIN_LINEDOWN;
42e69d6b 3581 break;
a02eb1d2 3582
42e69d6b 3583 case SB_PAGEUP:
9145664b 3584 event.m_eventType = wxEVT_SCROLLWIN_PAGEUP;
42e69d6b 3585 break;
2bda0e17 3586
42e69d6b 3587 case SB_PAGEDOWN:
9145664b 3588 event.m_eventType = wxEVT_SCROLLWIN_PAGEDOWN;
42e69d6b 3589 break;
2bda0e17 3590
42e69d6b 3591 case SB_THUMBPOSITION:
feda3011 3592 case SB_THUMBTRACK:
f6bcfd97
BP
3593#ifdef __WIN32__
3594 // under Win32, the scrollbar range and position are 32 bit integers,
3595 // but WM_[HV]SCROLL only carry the low 16 bits of them, so we must
3596 // explicitly query the scrollbar for the correct position (this must
3597 // be done only for these two SB_ events as they are the only one
3598 // carrying the scrollbar position)
3599 {
3600 SCROLLINFO scrollInfo;
3601 wxZeroMemory(scrollInfo);
3602 scrollInfo.cbSize = sizeof(SCROLLINFO);
3603 scrollInfo.fMask = SIF_TRACKPOS;
3604
3605 if ( !::GetScrollInfo(GetHwnd(),
3606 orientation == wxHORIZONTAL ? SB_HORZ
3607 : SB_VERT,
3608 &scrollInfo) )
3609 {
3610 wxLogLastError(_T("GetScrollInfo"));
3611 }
3612
3613 event.SetPosition(scrollInfo.nTrackPos);
3614 }
3615#endif // Win32
3616
3617 event.m_eventType = wParam == SB_THUMBPOSITION
3618 ? wxEVT_SCROLLWIN_THUMBRELEASE
3619 : wxEVT_SCROLLWIN_THUMBTRACK;
42e69d6b 3620 break;
c085e333 3621
42e69d6b
VZ
3622 default:
3623 return FALSE;
564b2609 3624 }
2bda0e17 3625
42e69d6b 3626 return GetEventHandler()->ProcessEvent(event);
2bda0e17
KB
3627}
3628
42e69d6b
VZ
3629// ===========================================================================
3630// global functions
3631// ===========================================================================
3632
f68586e5 3633void wxGetCharSize(WXHWND wnd, int *x, int *y, const wxFont *the_font)
2bda0e17 3634{
42e69d6b
VZ
3635 TEXTMETRIC tm;
3636 HDC dc = ::GetDC((HWND) wnd);
3637 HFONT fnt =0;
3638 HFONT was = 0;
3639 if ( the_font )
2d0a075d 3640 {
42e69d6b
VZ
3641 // the_font->UseResource();
3642 // the_font->RealizeResource();
f68586e5 3643 fnt = (HFONT)((wxFont *)the_font)->GetResourceHandle(); // const_cast
42e69d6b
VZ
3644 if ( fnt )
3645 was = (HFONT) SelectObject(dc,fnt);
2d0a075d 3646 }
42e69d6b
VZ
3647 GetTextMetrics(dc, &tm);
3648 if ( the_font && fnt && was )
2d0a075d 3649 {
42e69d6b 3650 SelectObject(dc,was);
2d0a075d 3651 }
42e69d6b 3652 ReleaseDC((HWND)wnd, dc);
0655ad29
VZ
3653
3654 if ( x )
3655 *x = tm.tmAveCharWidth;
3656 if ( y )
3657 *y = tm.tmHeight + tm.tmExternalLeading;
2bda0e17 3658
42e69d6b
VZ
3659 // if ( the_font )
3660 // the_font->ReleaseResource();
3661}
c085e333 3662
42e69d6b
VZ
3663// Returns 0 if was a normal ASCII value, not a special key. This indicates that
3664// the key should be ignored by WM_KEYDOWN and processed by WM_CHAR instead.
3665int wxCharCodeMSWToWX(int keySym)
3666{
f6bcfd97 3667 int id;
42e69d6b
VZ
3668 switch (keySym)
3669 {
f6bcfd97
BP
3670 case VK_CANCEL: id = WXK_CANCEL; break;
3671 case VK_BACK: id = WXK_BACK; break;
3672 case VK_TAB: id = WXK_TAB; break;
3673 case VK_CLEAR: id = WXK_CLEAR; break;
3674 case VK_RETURN: id = WXK_RETURN; break;
3675 case VK_SHIFT: id = WXK_SHIFT; break;
3676 case VK_CONTROL: id = WXK_CONTROL; break;
3677 case VK_MENU : id = WXK_MENU; break;
3678 case VK_PAUSE: id = WXK_PAUSE; break;
3679 case VK_SPACE: id = WXK_SPACE; break;
3680 case VK_ESCAPE: id = WXK_ESCAPE; break;
3681 case VK_PRIOR: id = WXK_PRIOR; break;
3682 case VK_NEXT : id = WXK_NEXT; break;
3683 case VK_END: id = WXK_END; break;
3684 case VK_HOME : id = WXK_HOME; break;
3685 case VK_LEFT : id = WXK_LEFT; break;
3686 case VK_UP: id = WXK_UP; break;
3687 case VK_RIGHT: id = WXK_RIGHT; break;
3688 case VK_DOWN : id = WXK_DOWN; break;
3689 case VK_SELECT: id = WXK_SELECT; break;
3690 case VK_PRINT: id = WXK_PRINT; break;
3691 case VK_EXECUTE: id = WXK_EXECUTE; break;
3692 case VK_INSERT: id = WXK_INSERT; break;
3693 case VK_DELETE: id = WXK_DELETE; break;
3694 case VK_HELP : id = WXK_HELP; break;
3695 case VK_NUMPAD0: id = WXK_NUMPAD0; break;
3696 case VK_NUMPAD1: id = WXK_NUMPAD1; break;
3697 case VK_NUMPAD2: id = WXK_NUMPAD2; break;
3698 case VK_NUMPAD3: id = WXK_NUMPAD3; break;
3699 case VK_NUMPAD4: id = WXK_NUMPAD4; break;
3700 case VK_NUMPAD5: id = WXK_NUMPAD5; break;
3701 case VK_NUMPAD6: id = WXK_NUMPAD6; break;
3702 case VK_NUMPAD7: id = WXK_NUMPAD7; break;
3703 case VK_NUMPAD8: id = WXK_NUMPAD8; break;
3704 case VK_NUMPAD9: id = WXK_NUMPAD9; break;
3705 case VK_MULTIPLY: id = WXK_MULTIPLY; break;
3706 case 0xBB: // VK_OEM_PLUS
3707 case VK_ADD: id = WXK_ADD; break;
3708 case 0xBD: // VK_OEM_MINUS
3709 case VK_SUBTRACT: id = WXK_SUBTRACT; break;
3710 case 0xBE: // VK_OEM_PERIOD
3711 case VK_DECIMAL: id = WXK_DECIMAL; break;
3712 case VK_DIVIDE: id = WXK_DIVIDE; break;
3713 case VK_F1: id = WXK_F1; break;
3714 case VK_F2: id = WXK_F2; break;
3715 case VK_F3: id = WXK_F3; break;
3716 case VK_F4: id = WXK_F4; break;
3717 case VK_F5: id = WXK_F5; break;
3718 case VK_F6: id = WXK_F6; break;
3719 case VK_F7: id = WXK_F7; break;
3720 case VK_F8: id = WXK_F8; break;
3721 case VK_F9: id = WXK_F9; break;
3722 case VK_F10: id = WXK_F10; break;
3723 case VK_F11: id = WXK_F11; break;
3724 case VK_F12: id = WXK_F12; break;
3725 case VK_F13: id = WXK_F13; break;
3726 case VK_F14: id = WXK_F14; break;
3727 case VK_F15: id = WXK_F15; break;
3728 case VK_F16: id = WXK_F16; break;
3729 case VK_F17: id = WXK_F17; break;
3730 case VK_F18: id = WXK_F18; break;
3731 case VK_F19: id = WXK_F19; break;
3732 case VK_F20: id = WXK_F20; break;
3733 case VK_F21: id = WXK_F21; break;
3734 case VK_F22: id = WXK_F22; break;
3735 case VK_F23: id = WXK_F23; break;
3736 case VK_F24: id = WXK_F24; break;
3737 case VK_NUMLOCK: id = WXK_NUMLOCK; break;
3738 case VK_SCROLL: id = WXK_SCROLL; break;
3739 default:
3740 id = 0;
42e69d6b 3741 }
f6bcfd97 3742
42e69d6b 3743 return id;
2bda0e17
KB
3744}
3745
42e69d6b 3746int wxCharCodeWXToMSW(int id, bool *isVirtual)
2bda0e17 3747{
42e69d6b
VZ
3748 *isVirtual = TRUE;
3749 int keySym = 0;
3750 switch (id)
2bda0e17 3751 {
42e69d6b
VZ
3752 case WXK_CANCEL: keySym = VK_CANCEL; break;
3753 case WXK_CLEAR: keySym = VK_CLEAR; break;
3754 case WXK_SHIFT: keySym = VK_SHIFT; break;
3755 case WXK_CONTROL: keySym = VK_CONTROL; break;
3756 case WXK_MENU : keySym = VK_MENU; break;
3757 case WXK_PAUSE: keySym = VK_PAUSE; break;
3758 case WXK_PRIOR: keySym = VK_PRIOR; break;
3759 case WXK_NEXT : keySym = VK_NEXT; break;
3760 case WXK_END: keySym = VK_END; break;
3761 case WXK_HOME : keySym = VK_HOME; break;
3762 case WXK_LEFT : keySym = VK_LEFT; break;
3763 case WXK_UP: keySym = VK_UP; break;
3764 case WXK_RIGHT: keySym = VK_RIGHT; break;
3765 case WXK_DOWN : keySym = VK_DOWN; break;
3766 case WXK_SELECT: keySym = VK_SELECT; break;
3767 case WXK_PRINT: keySym = VK_PRINT; break;
3768 case WXK_EXECUTE: keySym = VK_EXECUTE; break;
3769 case WXK_INSERT: keySym = VK_INSERT; break;
3770 case WXK_DELETE: keySym = VK_DELETE; break;
3771 case WXK_HELP : keySym = VK_HELP; break;
3772 case WXK_NUMPAD0: keySym = VK_NUMPAD0; break;
3773 case WXK_NUMPAD1: keySym = VK_NUMPAD1; break;
3774 case WXK_NUMPAD2: keySym = VK_NUMPAD2; break;
3775 case WXK_NUMPAD3: keySym = VK_NUMPAD3; break;
3776 case WXK_NUMPAD4: keySym = VK_NUMPAD4; break;
3777 case WXK_NUMPAD5: keySym = VK_NUMPAD5; break;
3778 case WXK_NUMPAD6: keySym = VK_NUMPAD6; break;
3779 case WXK_NUMPAD7: keySym = VK_NUMPAD7; break;
3780 case WXK_NUMPAD8: keySym = VK_NUMPAD8; break;
3781 case WXK_NUMPAD9: keySym = VK_NUMPAD9; break;
3782 case WXK_MULTIPLY: keySym = VK_MULTIPLY; break;
3783 case WXK_ADD: keySym = VK_ADD; break;
3784 case WXK_SUBTRACT: keySym = VK_SUBTRACT; break;
3785 case WXK_DECIMAL: keySym = VK_DECIMAL; break;
3786 case WXK_DIVIDE: keySym = VK_DIVIDE; break;
3787 case WXK_F1: keySym = VK_F1; break;
3788 case WXK_F2: keySym = VK_F2; break;
3789 case WXK_F3: keySym = VK_F3; break;
3790 case WXK_F4: keySym = VK_F4; break;
3791 case WXK_F5: keySym = VK_F5; break;
3792 case WXK_F6: keySym = VK_F6; break;
3793 case WXK_F7: keySym = VK_F7; break;
3794 case WXK_F8: keySym = VK_F8; break;
3795 case WXK_F9: keySym = VK_F9; break;
3796 case WXK_F10: keySym = VK_F10; break;
3797 case WXK_F11: keySym = VK_F11; break;
3798 case WXK_F12: keySym = VK_F12; break;
3799 case WXK_F13: keySym = VK_F13; break;
3800 case WXK_F14: keySym = VK_F14; break;
3801 case WXK_F15: keySym = VK_F15; break;
3802 case WXK_F16: keySym = VK_F16; break;
3803 case WXK_F17: keySym = VK_F17; break;
3804 case WXK_F18: keySym = VK_F18; break;
3805 case WXK_F19: keySym = VK_F19; break;
3806 case WXK_F20: keySym = VK_F20; break;
3807 case WXK_F21: keySym = VK_F21; break;
3808 case WXK_F22: keySym = VK_F22; break;
3809 case WXK_F23: keySym = VK_F23; break;
3810 case WXK_F24: keySym = VK_F24; break;
3811 case WXK_NUMLOCK: keySym = VK_NUMLOCK; break;
3812 case WXK_SCROLL: keySym = VK_SCROLL; break;
3813 default:
3814 {
3815 *isVirtual = FALSE;
3816 keySym = id;
3817 break;
3818 }
2bda0e17 3819 }
42e69d6b 3820 return keySym;
2bda0e17
KB
3821}
3822
42e69d6b 3823wxWindow *wxGetActiveWindow()
2bda0e17 3824{
42e69d6b
VZ
3825 HWND hWnd = GetActiveWindow();
3826 if ( hWnd != 0 )
2d0a075d 3827 {
42e69d6b 3828 return wxFindWinFromHandle((WXHWND) hWnd);
2d0a075d 3829 }
42e69d6b 3830 return NULL;
2bda0e17
KB
3831}
3832
8614c467
VZ
3833extern wxWindow *wxGetWindowFromHWND(WXHWND hWnd)
3834{
3835 HWND hwnd = (HWND)hWnd;
3836
3837 // For a radiobutton, we get the radiobox from GWL_USERDATA (which is set
3838 // by code in msw/radiobox.cpp), for all the others we just search up the
3839 // window hierarchy
3840 wxWindow *win = (wxWindow *)NULL;
3841 if ( hwnd )
3842 {
3843 win = wxFindWinFromHandle((WXHWND)hwnd);
3844 if ( !win )
3845 {
4f527e71
VZ
3846 // the radiobox pointer is stored in GWL_USERDATA only under Win32
3847#ifdef __WIN32__
8614c467
VZ
3848 // native radiobuttons return DLGC_RADIOBUTTON here and for any
3849 // wxWindow class which overrides WM_GETDLGCODE processing to
3850 // do it as well, win would be already non NULL
3851 if ( ::SendMessage((HWND)hwnd, WM_GETDLGCODE,
3852 0, 0) & DLGC_RADIOBUTTON )
3853 {
3854 win = (wxWindow *)::GetWindowLong(hwnd, GWL_USERDATA);
3855 }
3856 else
4f527e71 3857#endif // Win32
8614c467
VZ
3858 {
3859 // hwnd is not a wxWindow, try its parent next below
3860 hwnd = ::GetParent(hwnd);
3861 }
3862 }
3863 //else: it's a wxRadioButton, not a radiobutton from wxRadioBox
3864 }
3865
3866 while ( hwnd && !win )
3867 {
3868 win = wxFindWinFromHandle((WXHWND)hwnd);
3869 hwnd = ::GetParent(hwnd);
3870 }
3871
3872 return win;
3873}
3874
42e69d6b
VZ
3875// Windows keyboard hook. Allows interception of e.g. F1, ESCAPE
3876// in active frames and dialogs, regardless of where the focus is.
3877static HHOOK wxTheKeyboardHook = 0;
3878static FARPROC wxTheKeyboardHookProc = 0;
3879int APIENTRY _EXPORT
3880wxKeyboardHook(int nCode, WORD wParam, DWORD lParam);
2bda0e17 3881
42e69d6b 3882void wxSetKeyboardHook(bool doIt)
2bda0e17 3883{
42e69d6b 3884 if ( doIt )
2d0a075d 3885 {
42e69d6b
VZ
3886 wxTheKeyboardHookProc = MakeProcInstance((FARPROC) wxKeyboardHook, wxGetInstance());
3887 wxTheKeyboardHook = SetWindowsHookEx(WH_KEYBOARD, (HOOKPROC) wxTheKeyboardHookProc, wxGetInstance(),
c7527e3f 3888
42e69d6b 3889#if defined(__WIN32__) && !defined(__TWIN32__)
8614c467 3890 GetCurrentThreadId()
42e69d6b
VZ
3891 // (DWORD)GetCurrentProcess()); // This is another possibility. Which is right?
3892#else
8614c467 3893 GetCurrentTask()
42e69d6b 3894#endif
8614c467 3895 );
2d0a075d 3896 }
2d0a075d 3897 else
2d0a075d 3898 {
42e69d6b 3899 UnhookWindowsHookEx(wxTheKeyboardHook);
a17e237f
VZ
3900 // avoids mingw warning about statement with no effect (FreeProcInstance
3901 // doesn't do anything under Win32)
c42404a5 3902#ifndef __GNUC__
42e69d6b 3903 FreeProcInstance(wxTheKeyboardHookProc);
a17e237f 3904#endif
2d0a075d 3905 }
2bda0e17
KB
3906}
3907
42e69d6b
VZ
3908int APIENTRY _EXPORT
3909wxKeyboardHook(int nCode, WORD wParam, DWORD lParam)
2bda0e17 3910{
42e69d6b
VZ
3911 DWORD hiWord = HIWORD(lParam);
3912 if ( nCode != HC_NOREMOVE && ((hiWord & KF_UP) == 0) )
43d811ea 3913 {
32de7d24
VZ
3914 int id = wxCharCodeMSWToWX(wParam);
3915 if ( id != 0 )
43d811ea 3916 {
42e69d6b
VZ
3917 wxKeyEvent event(wxEVT_CHAR_HOOK);
3918 if ( (HIWORD(lParam) & KF_ALTDOWN) == KF_ALTDOWN )
3919 event.m_altDown = TRUE;
c085e333 3920
42e69d6b
VZ
3921 event.m_eventObject = NULL;
3922 event.m_keyCode = id;
3f7bc32b
VZ
3923 event.m_shiftDown = wxIsShiftDown();
3924 event.m_controlDown = wxIsCtrlDown();
42e69d6b 3925 event.SetTimestamp(s_currentMsg.time);
c085e333 3926
42e69d6b 3927 wxWindow *win = wxGetActiveWindow();
32de7d24 3928 wxEvtHandler *handler;
42e69d6b
VZ
3929 if ( win )
3930 {
32de7d24
VZ
3931 handler = win->GetEventHandler();
3932 event.SetId(win->GetId());
42e69d6b
VZ
3933 }
3934 else
3935 {
32de7d24
VZ
3936 handler = wxTheApp;
3937 event.SetId(-1);
3938 }
3939
3940 if ( handler && handler->ProcessEvent(event) )
3941 {
3942 // processed
3943 return 1;
42e69d6b 3944 }
43d811ea
JS
3945 }
3946 }
32de7d24 3947
42e69d6b 3948 return (int)CallNextHookEx(wxTheKeyboardHook, nCode, wParam, lParam);
4fabb575
JS
3949}
3950
b2aef89b 3951#ifdef __WXDEBUG__
f449ef69 3952const char *wxGetMessageName(int message)
47cbd6da 3953{
42e69d6b
VZ
3954 switch ( message )
3955 {
3956 case 0x0000: return "WM_NULL";
3957 case 0x0001: return "WM_CREATE";
3958 case 0x0002: return "WM_DESTROY";
3959 case 0x0003: return "WM_MOVE";
3960 case 0x0005: return "WM_SIZE";
3961 case 0x0006: return "WM_ACTIVATE";
3962 case 0x0007: return "WM_SETFOCUS";
3963 case 0x0008: return "WM_KILLFOCUS";
3964 case 0x000A: return "WM_ENABLE";
3965 case 0x000B: return "WM_SETREDRAW";
9b64e798
VZ
3966 case 0x000C: return "WM_SETTEXT";
3967 case 0x000D: return "WM_GETTEXT";
42e69d6b 3968 case 0x000E: return "WM_GETTEXTLENGTH";
9b64e798 3969 case 0x000F: return "WM_PAINT";
42e69d6b
VZ
3970 case 0x0010: return "WM_CLOSE";
3971 case 0x0011: return "WM_QUERYENDSESSION";
9b64e798 3972 case 0x0012: return "WM_QUIT";
42e69d6b
VZ
3973 case 0x0013: return "WM_QUERYOPEN";
3974 case 0x0014: return "WM_ERASEBKGND";
3975 case 0x0015: return "WM_SYSCOLORCHANGE";
3976 case 0x0016: return "WM_ENDSESSION";
3977 case 0x0017: return "WM_SYSTEMERROR";
3978 case 0x0018: return "WM_SHOWWINDOW";
3979 case 0x0019: return "WM_CTLCOLOR";
3980 case 0x001A: return "WM_WININICHANGE";
3981 case 0x001B: return "WM_DEVMODECHANGE";
3982 case 0x001C: return "WM_ACTIVATEAPP";
3983 case 0x001D: return "WM_FONTCHANGE";
3984 case 0x001E: return "WM_TIMECHANGE";
3985 case 0x001F: return "WM_CANCELMODE";
3986 case 0x0020: return "WM_SETCURSOR";
3987 case 0x0021: return "WM_MOUSEACTIVATE";
3988 case 0x0022: return "WM_CHILDACTIVATE";
3989 case 0x0023: return "WM_QUEUESYNC";
3990 case 0x0024: return "WM_GETMINMAXINFO";
3991 case 0x0026: return "WM_PAINTICON";
3992 case 0x0027: return "WM_ICONERASEBKGND";
3993 case 0x0028: return "WM_NEXTDLGCTL";
3994 case 0x002A: return "WM_SPOOLERSTATUS";
3995 case 0x002B: return "WM_DRAWITEM";
3996 case 0x002C: return "WM_MEASUREITEM";
3997 case 0x002D: return "WM_DELETEITEM";
3998 case 0x002E: return "WM_VKEYTOITEM";
3999 case 0x002F: return "WM_CHARTOITEM";
9b64e798
VZ
4000 case 0x0030: return "WM_SETFONT";
4001 case 0x0031: return "WM_GETFONT";
42e69d6b
VZ
4002 case 0x0037: return "WM_QUERYDRAGICON";
4003 case 0x0039: return "WM_COMPAREITEM";
4004 case 0x0041: return "WM_COMPACTING";
4005 case 0x0044: return "WM_COMMNOTIFY";
4006 case 0x0046: return "WM_WINDOWPOSCHANGING";
4007 case 0x0047: return "WM_WINDOWPOSCHANGED";
4008 case 0x0048: return "WM_POWER";
c085e333 4009
a02eb1d2 4010#ifdef __WIN32__
42e69d6b
VZ
4011 case 0x004A: return "WM_COPYDATA";
4012 case 0x004B: return "WM_CANCELJOURNAL";
4013 case 0x004E: return "WM_NOTIFY";
9b64e798 4014 case 0x0050: return "WM_INPUTLANGCHANGEREQUEST";
42e69d6b
VZ
4015 case 0x0051: return "WM_INPUTLANGCHANGE";
4016 case 0x0052: return "WM_TCARD";
4017 case 0x0053: return "WM_HELP";
4018 case 0x0054: return "WM_USERCHANGED";
9b64e798 4019 case 0x0055: return "WM_NOTIFYFORMAT";
42e69d6b
VZ
4020 case 0x007B: return "WM_CONTEXTMENU";
4021 case 0x007C: return "WM_STYLECHANGING";
4022 case 0x007D: return "WM_STYLECHANGED";
4023 case 0x007E: return "WM_DISPLAYCHANGE";
4024 case 0x007F: return "WM_GETICON";
4025 case 0x0080: return "WM_SETICON";
a02eb1d2 4026#endif //WIN32
c085e333 4027
42e69d6b
VZ
4028 case 0x0081: return "WM_NCCREATE";
4029 case 0x0082: return "WM_NCDESTROY";
4030 case 0x0083: return "WM_NCCALCSIZE";
9b64e798
VZ
4031 case 0x0084: return "WM_NCHITTEST";
4032 case 0x0085: return "WM_NCPAINT";
42e69d6b
VZ
4033 case 0x0086: return "WM_NCACTIVATE";
4034 case 0x0087: return "WM_GETDLGCODE";
4035 case 0x00A0: return "WM_NCMOUSEMOVE";
4036 case 0x00A1: return "WM_NCLBUTTONDOWN";
4037 case 0x00A2: return "WM_NCLBUTTONUP";
4038 case 0x00A3: return "WM_NCLBUTTONDBLCLK";
4039 case 0x00A4: return "WM_NCRBUTTONDOWN";
4040 case 0x00A5: return "WM_NCRBUTTONUP";
4041 case 0x00A6: return "WM_NCRBUTTONDBLCLK";
4042 case 0x00A7: return "WM_NCMBUTTONDOWN";
4043 case 0x00A8: return "WM_NCMBUTTONUP";
4044 case 0x00A9: return "WM_NCMBUTTONDBLCLK";
4045 case 0x0100: return "WM_KEYDOWN";
4046 case 0x0101: return "WM_KEYUP";
4047 case 0x0102: return "WM_CHAR";
4048 case 0x0103: return "WM_DEADCHAR";
4049 case 0x0104: return "WM_SYSKEYDOWN";
4050 case 0x0105: return "WM_SYSKEYUP";
4051 case 0x0106: return "WM_SYSCHAR";
4052 case 0x0107: return "WM_SYSDEADCHAR";
9b64e798 4053 case 0x0108: return "WM_KEYLAST";
c085e333 4054
a02eb1d2 4055#ifdef __WIN32__
42e69d6b
VZ
4056 case 0x010D: return "WM_IME_STARTCOMPOSITION";
4057 case 0x010E: return "WM_IME_ENDCOMPOSITION";
4058 case 0x010F: return "WM_IME_COMPOSITION";
a02eb1d2 4059#endif //WIN32
c085e333 4060
42e69d6b
VZ
4061 case 0x0110: return "WM_INITDIALOG";
4062 case 0x0111: return "WM_COMMAND";
4063 case 0x0112: return "WM_SYSCOMMAND";
4064 case 0x0113: return "WM_TIMER";
4065 case 0x0114: return "WM_HSCROLL";
4066 case 0x0115: return "WM_VSCROLL";
4067 case 0x0116: return "WM_INITMENU";
4068 case 0x0117: return "WM_INITMENUPOPUP";
9b64e798 4069 case 0x011F: return "WM_MENUSELECT";
42e69d6b
VZ
4070 case 0x0120: return "WM_MENUCHAR";
4071 case 0x0121: return "WM_ENTERIDLE";
4072 case 0x0200: return "WM_MOUSEMOVE";
4073 case 0x0201: return "WM_LBUTTONDOWN";
4074 case 0x0202: return "WM_LBUTTONUP";
4075 case 0x0203: return "WM_LBUTTONDBLCLK";
4076 case 0x0204: return "WM_RBUTTONDOWN";
4077 case 0x0205: return "WM_RBUTTONUP";
4078 case 0x0206: return "WM_RBUTTONDBLCLK";
4079 case 0x0207: return "WM_MBUTTONDOWN";
4080 case 0x0208: return "WM_MBUTTONUP";
4081 case 0x0209: return "WM_MBUTTONDBLCLK";
4082 case 0x0210: return "WM_PARENTNOTIFY";
4083 case 0x0211: return "WM_ENTERMENULOOP";
4084 case 0x0212: return "WM_EXITMENULOOP";
c085e333 4085
a02eb1d2 4086#ifdef __WIN32__
42e69d6b
VZ
4087 case 0x0213: return "WM_NEXTMENU";
4088 case 0x0214: return "WM_SIZING";
4089 case 0x0215: return "WM_CAPTURECHANGED";
4090 case 0x0216: return "WM_MOVING";
9b64e798 4091 case 0x0218: return "WM_POWERBROADCAST";
42e69d6b 4092 case 0x0219: return "WM_DEVICECHANGE";
a02eb1d2 4093#endif //WIN32
c085e333 4094
42e69d6b
VZ
4095 case 0x0220: return "WM_MDICREATE";
4096 case 0x0221: return "WM_MDIDESTROY";
4097 case 0x0222: return "WM_MDIACTIVATE";
4098 case 0x0223: return "WM_MDIRESTORE";
9b64e798 4099 case 0x0224: return "WM_MDINEXT";
42e69d6b
VZ
4100 case 0x0225: return "WM_MDIMAXIMIZE";
4101 case 0x0226: return "WM_MDITILE";
4102 case 0x0227: return "WM_MDICASCADE";
4103 case 0x0228: return "WM_MDIICONARRANGE";
4104 case 0x0229: return "WM_MDIGETACTIVE";
4105 case 0x0230: return "WM_MDISETMENU";
4106 case 0x0233: return "WM_DROPFILES";
c085e333 4107
a02eb1d2 4108#ifdef __WIN32__
9b64e798 4109 case 0x0281: return "WM_IME_SETCONTEXT";
42e69d6b
VZ
4110 case 0x0282: return "WM_IME_NOTIFY";
4111 case 0x0283: return "WM_IME_CONTROL";
4112 case 0x0284: return "WM_IME_COMPOSITIONFULL";
9b64e798 4113 case 0x0285: return "WM_IME_SELECT";
42e69d6b
VZ
4114 case 0x0286: return "WM_IME_CHAR";
4115 case 0x0290: return "WM_IME_KEYDOWN";
4116 case 0x0291: return "WM_IME_KEYUP";
a02eb1d2 4117#endif //WIN32
c085e333 4118
9b64e798 4119 case 0x0300: return "WM_CUT";
42e69d6b
VZ
4120 case 0x0301: return "WM_COPY";
4121 case 0x0302: return "WM_PASTE";
4122 case 0x0303: return "WM_CLEAR";
4123 case 0x0304: return "WM_UNDO";
9b64e798 4124 case 0x0305: return "WM_RENDERFORMAT";
42e69d6b
VZ
4125 case 0x0306: return "WM_RENDERALLFORMATS";
4126 case 0x0307: return "WM_DESTROYCLIPBOARD";
4127 case 0x0308: return "WM_DRAWCLIPBOARD";
4128 case 0x0309: return "WM_PAINTCLIPBOARD";
4129 case 0x030A: return "WM_VSCROLLCLIPBOARD";
4130 case 0x030B: return "WM_SIZECLIPBOARD";
4131 case 0x030C: return "WM_ASKCBFORMATNAME";
4132 case 0x030D: return "WM_CHANGECBCHAIN";
4133 case 0x030E: return "WM_HSCROLLCLIPBOARD";
4134 case 0x030F: return "WM_QUERYNEWPALETTE";
4135 case 0x0310: return "WM_PALETTEISCHANGING";
4136 case 0x0311: return "WM_PALETTECHANGED";
c085e333 4137
a02eb1d2 4138#ifdef __WIN32__
2d0a075d
JS
4139 // common controls messages - although they're not strictly speaking
4140 // standard, it's nice to decode them nevertheless
a02eb1d2 4141
2d0a075d 4142 // listview
42e69d6b
VZ
4143 case 0x1000 + 0: return "LVM_GETBKCOLOR";
4144 case 0x1000 + 1: return "LVM_SETBKCOLOR";
9b64e798
VZ
4145 case 0x1000 + 2: return "LVM_GETIMAGELIST";
4146 case 0x1000 + 3: return "LVM_SETIMAGELIST";
4147 case 0x1000 + 4: return "LVM_GETITEMCOUNT";
42e69d6b
VZ
4148 case 0x1000 + 5: return "LVM_GETITEMA";
4149 case 0x1000 + 75: return "LVM_GETITEMW";
4150 case 0x1000 + 6: return "LVM_SETITEMA";
4151 case 0x1000 + 76: return "LVM_SETITEMW";
4152 case 0x1000 + 7: return "LVM_INSERTITEMA";
4153 case 0x1000 + 77: return "LVM_INSERTITEMW";
4154 case 0x1000 + 8: return "LVM_DELETEITEM";
4155 case 0x1000 + 9: return "LVM_DELETEALLITEMS";
4156 case 0x1000 + 10: return "LVM_GETCALLBACKMASK";
4157 case 0x1000 + 11: return "LVM_SETCALLBACKMASK";
4158 case 0x1000 + 12: return "LVM_GETNEXTITEM";
4159 case 0x1000 + 13: return "LVM_FINDITEMA";
4160 case 0x1000 + 83: return "LVM_FINDITEMW";
9b64e798 4161 case 0x1000 + 14: return "LVM_GETITEMRECT";
42e69d6b
VZ
4162 case 0x1000 + 15: return "LVM_SETITEMPOSITION";
4163 case 0x1000 + 16: return "LVM_GETITEMPOSITION";
4164 case 0x1000 + 17: return "LVM_GETSTRINGWIDTHA";
4165 case 0x1000 + 87: return "LVM_GETSTRINGWIDTHW";
9b64e798 4166 case 0x1000 + 18: return "LVM_HITTEST";
42e69d6b
VZ
4167 case 0x1000 + 19: return "LVM_ENSUREVISIBLE";
4168 case 0x1000 + 20: return "LVM_SCROLL";
4169 case 0x1000 + 21: return "LVM_REDRAWITEMS";
4170 case 0x1000 + 22: return "LVM_ARRANGE";
4171 case 0x1000 + 23: return "LVM_EDITLABELA";
4172 case 0x1000 + 118: return "LVM_EDITLABELW";
4173 case 0x1000 + 24: return "LVM_GETEDITCONTROL";
4174 case 0x1000 + 25: return "LVM_GETCOLUMNA";
4175 case 0x1000 + 95: return "LVM_GETCOLUMNW";
4176 case 0x1000 + 26: return "LVM_SETCOLUMNA";
4177 case 0x1000 + 96: return "LVM_SETCOLUMNW";
4178 case 0x1000 + 27: return "LVM_INSERTCOLUMNA";
4179 case 0x1000 + 97: return "LVM_INSERTCOLUMNW";
4180 case 0x1000 + 28: return "LVM_DELETECOLUMN";
4181 case 0x1000 + 29: return "LVM_GETCOLUMNWIDTH";
4182 case 0x1000 + 30: return "LVM_SETCOLUMNWIDTH";
4183 case 0x1000 + 31: return "LVM_GETHEADER";
4184 case 0x1000 + 33: return "LVM_CREATEDRAGIMAGE";
9b64e798 4185 case 0x1000 + 34: return "LVM_GETVIEWRECT";
42e69d6b
VZ
4186 case 0x1000 + 35: return "LVM_GETTEXTCOLOR";
4187 case 0x1000 + 36: return "LVM_SETTEXTCOLOR";
4188 case 0x1000 + 37: return "LVM_GETTEXTBKCOLOR";
4189 case 0x1000 + 38: return "LVM_SETTEXTBKCOLOR";
4190 case 0x1000 + 39: return "LVM_GETTOPINDEX";
4191 case 0x1000 + 40: return "LVM_GETCOUNTPERPAGE";
4192 case 0x1000 + 41: return "LVM_GETORIGIN";
4193 case 0x1000 + 42: return "LVM_UPDATE";
4194 case 0x1000 + 43: return "LVM_SETITEMSTATE";
4195 case 0x1000 + 44: return "LVM_GETITEMSTATE";
4196 case 0x1000 + 45: return "LVM_GETITEMTEXTA";
4197 case 0x1000 + 115: return "LVM_GETITEMTEXTW";
4198 case 0x1000 + 46: return "LVM_SETITEMTEXTA";
4199 case 0x1000 + 116: return "LVM_SETITEMTEXTW";
9b64e798 4200 case 0x1000 + 47: return "LVM_SETITEMCOUNT";
42e69d6b
VZ
4201 case 0x1000 + 48: return "LVM_SORTITEMS";
4202 case 0x1000 + 49: return "LVM_SETITEMPOSITION32";
9b64e798 4203 case 0x1000 + 50: return "LVM_GETSELECTEDCOUNT";
42e69d6b
VZ
4204 case 0x1000 + 51: return "LVM_GETITEMSPACING";
4205 case 0x1000 + 52: return "LVM_GETISEARCHSTRINGA";
4206 case 0x1000 + 117: return "LVM_GETISEARCHSTRINGW";
4207 case 0x1000 + 53: return "LVM_SETICONSPACING";
4208 case 0x1000 + 54: return "LVM_SETEXTENDEDLISTVIEWSTYLE";
4209 case 0x1000 + 55: return "LVM_GETEXTENDEDLISTVIEWSTYLE";
9b64e798
VZ
4210 case 0x1000 + 56: return "LVM_GETSUBITEMRECT";
4211 case 0x1000 + 57: return "LVM_SUBITEMHITTEST";
42e69d6b
VZ
4212 case 0x1000 + 58: return "LVM_SETCOLUMNORDERARRAY";
4213 case 0x1000 + 59: return "LVM_GETCOLUMNORDERARRAY";
4214 case 0x1000 + 60: return "LVM_SETHOTITEM";
4215 case 0x1000 + 61: return "LVM_GETHOTITEM";
4216 case 0x1000 + 62: return "LVM_SETHOTCURSOR";
4217 case 0x1000 + 63: return "LVM_GETHOTCURSOR";
9b64e798 4218 case 0x1000 + 64: return "LVM_APPROXIMATEVIEWRECT";
42e69d6b 4219 case 0x1000 + 65: return "LVM_SETWORKAREA";
c085e333 4220
2d0a075d 4221 // tree view
42e69d6b
VZ
4222 case 0x1100 + 0: return "TVM_INSERTITEMA";
4223 case 0x1100 + 50: return "TVM_INSERTITEMW";
4224 case 0x1100 + 1: return "TVM_DELETEITEM";
4225 case 0x1100 + 2: return "TVM_EXPAND";
9b64e798
VZ
4226 case 0x1100 + 4: return "TVM_GETITEMRECT";
4227 case 0x1100 + 5: return "TVM_GETCOUNT";
4228 case 0x1100 + 6: return "TVM_GETINDENT";
4229 case 0x1100 + 7: return "TVM_SETINDENT";
4230 case 0x1100 + 8: return "TVM_GETIMAGELIST";
4231 case 0x1100 + 9: return "TVM_SETIMAGELIST";
42e69d6b
VZ
4232 case 0x1100 + 10: return "TVM_GETNEXTITEM";
4233 case 0x1100 + 11: return "TVM_SELECTITEM";
4234 case 0x1100 + 12: return "TVM_GETITEMA";
4235 case 0x1100 + 62: return "TVM_GETITEMW";
4236 case 0x1100 + 13: return "TVM_SETITEMA";
4237 case 0x1100 + 63: return "TVM_SETITEMW";
4238 case 0x1100 + 14: return "TVM_EDITLABELA";
4239 case 0x1100 + 65: return "TVM_EDITLABELW";
4240 case 0x1100 + 15: return "TVM_GETEDITCONTROL";
9b64e798
VZ
4241 case 0x1100 + 16: return "TVM_GETVISIBLECOUNT";
4242 case 0x1100 + 17: return "TVM_HITTEST";
42e69d6b
VZ
4243 case 0x1100 + 18: return "TVM_CREATEDRAGIMAGE";
4244 case 0x1100 + 19: return "TVM_SORTCHILDREN";
4245 case 0x1100 + 20: return "TVM_ENSUREVISIBLE";
4246 case 0x1100 + 21: return "TVM_SORTCHILDRENCB";
4247 case 0x1100 + 22: return "TVM_ENDEDITLABELNOW";
4248 case 0x1100 + 23: return "TVM_GETISEARCHSTRINGA";
4249 case 0x1100 + 64: return "TVM_GETISEARCHSTRINGW";
4250 case 0x1100 + 24: return "TVM_SETTOOLTIPS";
4251 case 0x1100 + 25: return "TVM_GETTOOLTIPS";
c085e333 4252
2d0a075d 4253 // header
9b64e798 4254 case 0x1200 + 0: return "HDM_GETITEMCOUNT";
42e69d6b
VZ
4255 case 0x1200 + 1: return "HDM_INSERTITEMA";
4256 case 0x1200 + 10: return "HDM_INSERTITEMW";
4257 case 0x1200 + 2: return "HDM_DELETEITEM";
4258 case 0x1200 + 3: return "HDM_GETITEMA";
4259 case 0x1200 + 11: return "HDM_GETITEMW";
4260 case 0x1200 + 4: return "HDM_SETITEMA";
4261 case 0x1200 + 12: return "HDM_SETITEMW";
9b64e798
VZ
4262 case 0x1200 + 5: return "HDM_LAYOUT";
4263 case 0x1200 + 6: return "HDM_HITTEST";
4264 case 0x1200 + 7: return "HDM_GETITEMRECT";
4265 case 0x1200 + 8: return "HDM_SETIMAGELIST";
4266 case 0x1200 + 9: return "HDM_GETIMAGELIST";
42e69d6b
VZ
4267 case 0x1200 + 15: return "HDM_ORDERTOINDEX";
4268 case 0x1200 + 16: return "HDM_CREATEDRAGIMAGE";
4269 case 0x1200 + 17: return "HDM_GETORDERARRAY";
4270 case 0x1200 + 18: return "HDM_SETORDERARRAY";
4271 case 0x1200 + 19: return "HDM_SETHOTDIVIDER";
c085e333 4272
2d0a075d 4273 // tab control
9b64e798
VZ
4274 case 0x1300 + 2: return "TCM_GETIMAGELIST";
4275 case 0x1300 + 3: return "TCM_SETIMAGELIST";
4276 case 0x1300 + 4: return "TCM_GETITEMCOUNT";
42e69d6b
VZ
4277 case 0x1300 + 5: return "TCM_GETITEMA";
4278 case 0x1300 + 60: return "TCM_GETITEMW";
4279 case 0x1300 + 6: return "TCM_SETITEMA";
4280 case 0x1300 + 61: return "TCM_SETITEMW";
4281 case 0x1300 + 7: return "TCM_INSERTITEMA";
4282 case 0x1300 + 62: return "TCM_INSERTITEMW";
4283 case 0x1300 + 8: return "TCM_DELETEITEM";
4284 case 0x1300 + 9: return "TCM_DELETEALLITEMS";
9b64e798 4285 case 0x1300 + 10: return "TCM_GETITEMRECT";
42e69d6b
VZ
4286 case 0x1300 + 11: return "TCM_GETCURSEL";
4287 case 0x1300 + 12: return "TCM_SETCURSEL";
9b64e798 4288 case 0x1300 + 13: return "TCM_HITTEST";
42e69d6b 4289 case 0x1300 + 14: return "TCM_SETITEMEXTRA";
9b64e798 4290 case 0x1300 + 40: return "TCM_ADJUSTRECT";
42e69d6b
VZ
4291 case 0x1300 + 41: return "TCM_SETITEMSIZE";
4292 case 0x1300 + 42: return "TCM_REMOVEIMAGE";
4293 case 0x1300 + 43: return "TCM_SETPADDING";
9b64e798 4294 case 0x1300 + 44: return "TCM_GETROWCOUNT";
42e69d6b
VZ
4295 case 0x1300 + 45: return "TCM_GETTOOLTIPS";
4296 case 0x1300 + 46: return "TCM_SETTOOLTIPS";
4297 case 0x1300 + 47: return "TCM_GETCURFOCUS";
4298 case 0x1300 + 48: return "TCM_SETCURFOCUS";
4299 case 0x1300 + 49: return "TCM_SETMINTABWIDTH";
4300 case 0x1300 + 50: return "TCM_DESELECTALL";
c085e333 4301
2d0a075d 4302 // toolbar
42e69d6b
VZ
4303 case WM_USER+1: return "TB_ENABLEBUTTON";
4304 case WM_USER+2: return "TB_CHECKBUTTON";
4305 case WM_USER+3: return "TB_PRESSBUTTON";
4306 case WM_USER+4: return "TB_HIDEBUTTON";
4307 case WM_USER+5: return "TB_INDETERMINATE";
4308 case WM_USER+9: return "TB_ISBUTTONENABLED";
4309 case WM_USER+10: return "TB_ISBUTTONCHECKED";
4310 case WM_USER+11: return "TB_ISBUTTONPRESSED";
4311 case WM_USER+12: return "TB_ISBUTTONHIDDEN";
4312 case WM_USER+13: return "TB_ISBUTTONINDETERMINATE";
4313 case WM_USER+17: return "TB_SETSTATE";
4314 case WM_USER+18: return "TB_GETSTATE";
4315 case WM_USER+19: return "TB_ADDBITMAP";
4316 case WM_USER+20: return "TB_ADDBUTTONS";
4317 case WM_USER+21: return "TB_INSERTBUTTON";
4318 case WM_USER+22: return "TB_DELETEBUTTON";
4319 case WM_USER+23: return "TB_GETBUTTON";
9b64e798 4320 case WM_USER+24: return "TB_BUTTONCOUNT";
42e69d6b
VZ
4321 case WM_USER+25: return "TB_COMMANDTOINDEX";
4322 case WM_USER+26: return "TB_SAVERESTOREA";
4323 case WM_USER+76: return "TB_SAVERESTOREW";
4324 case WM_USER+27: return "TB_CUSTOMIZE";
4325 case WM_USER+28: return "TB_ADDSTRINGA";
4326 case WM_USER+77: return "TB_ADDSTRINGW";
9b64e798 4327 case WM_USER+29: return "TB_GETITEMRECT";
42e69d6b
VZ
4328 case WM_USER+30: return "TB_BUTTONSTRUCTSIZE";
4329 case WM_USER+31: return "TB_SETBUTTONSIZE";
4330 case WM_USER+32: return "TB_SETBITMAPSIZE";
4331 case WM_USER+33: return "TB_AUTOSIZE";
4332 case WM_USER+35: return "TB_GETTOOLTIPS";
4333 case WM_USER+36: return "TB_SETTOOLTIPS";
9b64e798 4334 case WM_USER+37: return "TB_SETPARENT";
42e69d6b
VZ
4335 case WM_USER+39: return "TB_SETROWS";
4336 case WM_USER+40: return "TB_GETROWS";
4337 case WM_USER+42: return "TB_SETCMDID";
4338 case WM_USER+43: return "TB_CHANGEBITMAP";
4339 case WM_USER+44: return "TB_GETBITMAP";
4340 case WM_USER+45: return "TB_GETBUTTONTEXTA";
4341 case WM_USER+75: return "TB_GETBUTTONTEXTW";
4342 case WM_USER+46: return "TB_REPLACEBITMAP";
9b64e798
VZ
4343 case WM_USER+47: return "TB_SETINDENT";
4344 case WM_USER+48: return "TB_SETIMAGELIST";
4345 case WM_USER+49: return "TB_GETIMAGELIST";
42e69d6b 4346 case WM_USER+50: return "TB_LOADIMAGES";
9b64e798
VZ
4347 case WM_USER+51: return "TB_GETRECT";
4348 case WM_USER+52: return "TB_SETHOTIMAGELIST";
4349 case WM_USER+53: return "TB_GETHOTIMAGELIST";
4350 case WM_USER+54: return "TB_SETDISABLEDIMAGELIST";
4351 case WM_USER+55: return "TB_GETDISABLEDIMAGELIST";
42e69d6b
VZ
4352 case WM_USER+56: return "TB_SETSTYLE";
4353 case WM_USER+57: return "TB_GETSTYLE";
4354 case WM_USER+58: return "TB_GETBUTTONSIZE";
4355 case WM_USER+59: return "TB_SETBUTTONWIDTH";
4356 case WM_USER+60: return "TB_SETMAXTEXTROWS";
4357 case WM_USER+61: return "TB_GETTEXTROWS";
4358 case WM_USER+41: return "TB_GETBITMAPFLAGS";
c085e333 4359
a02eb1d2 4360#endif //WIN32
c085e333 4361
42e69d6b
VZ
4362 default:
4363 static char s_szBuf[128];
4364 sprintf(s_szBuf, "<unknown message = %d>", message);
4365 return s_szBuf;
4366 }
47cbd6da 4367}
ea57084d 4368#endif //__WXDEBUG__
4aff28fc
VZ
4369
4370static void TranslateKbdEventToMouse(wxWindow *win, int *x, int *y, WPARAM *flags)
4371{
4372 // construct the key mask
4373 WPARAM& fwKeys = *flags;
4374
4375 fwKeys = MK_RBUTTON;
3f7bc32b 4376 if ( wxIsCtrlDown() )
4aff28fc 4377 fwKeys |= MK_CONTROL;
3f7bc32b 4378 if ( wxIsShiftDown() )
4aff28fc
VZ
4379 fwKeys |= MK_SHIFT;
4380
4381 // simulate right mouse button click
4382 DWORD dwPos = ::GetMessagePos();
4383 *x = GET_X_LPARAM(dwPos);
4384 *y = GET_Y_LPARAM(dwPos);
4385
4386 win->ScreenToClient(x, y);
4387}
f6bcfd97
BP
4388
4389static TEXTMETRIC wxGetTextMetrics(const wxWindow *win)
4390{
4391 // prepare the DC
4392 TEXTMETRIC tm;
4393 HWND hwnd = GetHwndOf(win);
4394 HDC hdc = ::GetDC(hwnd);
4395
4396#if !wxDIALOG_UNIT_COMPATIBILITY
4397 // and select the current font into it
4398 HFONT hfont = GetHfontOf(win->GetFont());
4399 if ( hfont )
4400 {
4401 hfont = (HFONT)::SelectObject(hdc, hfont);
4402 }
4403#endif
4404
4405 // finally retrieve the text metrics from it
4406 GetTextMetrics(hdc, &tm);
4407
4408#if !wxDIALOG_UNIT_COMPATIBILITY
4409 // and clean up
4410 if ( hfont )
4411 {
4412 (void)::SelectObject(hdc, hfont);
4413 }
4414#endif
4415
4416 ::ReleaseDC(hwnd, hdc);
4417
4418 return tm;
4419}
3723b7b1
JS
4420
4421// Find the wxWindow at the current mouse position, returning the mouse
4422// position.
4423wxWindow* wxFindWindowAtPointer(wxPoint& pt)
4424{
57591e0e
JS
4425 return wxFindWindowAtPoint(wxGetMousePosition());
4426}
4427
4428wxWindow* wxFindWindowAtPoint(const wxPoint& pt)
4429{
4430 POINT pt2;
4431 pt2.x = pt.x;
4432 pt2.y = pt.y;
4433 HWND hWndHit = ::WindowFromPoint(pt2);
3723b7b1
JS
4434
4435 wxWindow* win = wxFindWinFromHandle((WXHWND) hWndHit) ;
4436 HWND hWnd = hWndHit;
4437
4438 // Try to find a window with a wxWindow associated with it
4439 while (!win && (hWnd != 0))
4440 {
4441 hWnd = ::GetParent(hWnd);
4442 win = wxFindWinFromHandle((WXHWND) hWnd) ;
4443 }
4444 return win;
4445}
4446
4447// Get the current mouse position.
4448wxPoint wxGetMousePosition()
4449{
1772ead0
JS
4450 POINT pt;
4451 GetCursorPos( & pt );
4452 return wxPoint(pt.x, pt.y);
3723b7b1
JS
4453}
4454