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