]> git.saurik.com Git - wxWidgets.git/blame - src/msw/window.cpp
Major redesign of grid classes:
[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
42e69d6b
VZ
2033 case WM_CHAR: // Always an ASCII character
2034 processed = HandleChar((WORD)wParam, lParam, TRUE);
2035 break;
2bda0e17 2036
42e69d6b
VZ
2037 case WM_HSCROLL:
2038 case WM_VSCROLL:
a23fd0e1 2039 {
42e69d6b
VZ
2040 WXWORD code, pos;
2041 WXHWND hwnd;
2042 UnpackScroll(wParam, lParam, &code, &pos, &hwnd);
2bda0e17 2043
42e69d6b
VZ
2044 processed = MSWOnScroll(message == WM_HSCROLL ? wxHORIZONTAL
2045 : wxVERTICAL,
2046 code, pos, hwnd);
a23fd0e1 2047 }
42e69d6b 2048 break;
a23fd0e1 2049
42e69d6b
VZ
2050 // CTLCOLOR messages are sent by children to query the parent for their
2051 // colors
2052#ifdef __WIN32__
2053 case WM_CTLCOLORMSGBOX:
2054 case WM_CTLCOLOREDIT:
2055 case WM_CTLCOLORLISTBOX:
2056 case WM_CTLCOLORBTN:
2057 case WM_CTLCOLORDLG:
2058 case WM_CTLCOLORSCROLLBAR:
2059 case WM_CTLCOLORSTATIC:
2060#else // Win16
2061 case WM_CTLCOLOR:
2062#endif // Win32/16
a23fd0e1 2063 {
42e69d6b
VZ
2064 WXWORD nCtlColor;
2065 WXHDC hdc;
2066 WXHWND hwnd;
2067 UnpackCtlColor(wParam, lParam, &nCtlColor, &hdc, &hwnd);
2068
2069 processed = HandleCtlColor(&rc.hBrush,
2070 (WXHDC)hdc,
2071 (WXHWND)hwnd,
2072 nCtlColor,
2073 message,
2074 wParam,
2075 lParam);
a23fd0e1 2076 }
42e69d6b 2077 break;
debe6624 2078
42e69d6b
VZ
2079 // the return value for this message is ignored
2080 case WM_SYSCOLORCHANGE:
2081 processed = HandleSysColorChange();
2082 break;
2bda0e17 2083
42e69d6b
VZ
2084 case WM_PALETTECHANGED:
2085 processed = HandlePaletteChanged((WXHWND) (HWND) wParam);
2086 break;
2bda0e17 2087
42e69d6b
VZ
2088 case WM_QUERYNEWPALETTE:
2089 processed = HandleQueryNewPalette();
2090 break;
2bda0e17 2091
42e69d6b
VZ
2092 case WM_ERASEBKGND:
2093 processed = HandleEraseBkgnd((WXHDC)(HDC)wParam);
2094 if ( processed )
2095 {
2096 // we processed the message, i.e. erased the background
2097 rc.result = TRUE;
2098 }
2099 break;
debe6624 2100
42e69d6b
VZ
2101 case WM_DROPFILES:
2102 processed = HandleDropFiles(wParam);
2103 break;
2bda0e17 2104
42e69d6b
VZ
2105 case WM_INITDIALOG:
2106 processed = HandleInitDialog((WXHWND)(HWND)wParam);
a23fd0e1 2107
42e69d6b
VZ
2108 if ( processed )
2109 {
2110 // we never set focus from here
2111 rc.result = FALSE;
2112 }
2113 break;
a23fd0e1 2114
42e69d6b
VZ
2115 case WM_QUERYENDSESSION:
2116 processed = HandleQueryEndSession(lParam, &rc.allow);
2117 break;
2bda0e17 2118
42e69d6b
VZ
2119 case WM_ENDSESSION:
2120 processed = HandleEndSession(wParam != 0, lParam);
2121 break;
2bda0e17 2122
42e69d6b 2123 case WM_GETMINMAXINFO:
25889d3c 2124 processed = HandleGetMinMaxInfo((MINMAXINFO*)lParam);
42e69d6b 2125 break;
debe6624 2126
42e69d6b
VZ
2127 case WM_SETCURSOR:
2128 processed = HandleSetCursor((WXHWND)(HWND)wParam,
2129 LOWORD(lParam), // hit test
2130 HIWORD(lParam)); // mouse msg
2131
2132 if ( processed )
2133 {
2134 // returning TRUE stops the DefWindowProc() from further
2135 // processing this message - exactly what we need because we've
2136 // just set the cursor.
2137 rc.result = TRUE;
2138 }
2139 break;
a23fd0e1 2140 }
2d0a075d 2141
42e69d6b 2142 if ( !processed )
2d0a075d 2143 {
42e69d6b 2144#ifdef __WXDEBUG__
223d09f6 2145 wxLogTrace(wxTraceMessages, wxT("Forwarding %s to DefWindowProc."),
42e69d6b
VZ
2146 wxGetMessageName(message));
2147#endif // __WXDEBUG__
2148 rc.result = MSWDefWindowProc(message, wParam, lParam);
a23fd0e1 2149 }
2bda0e17 2150
42e69d6b 2151 return rc.result;
2bda0e17
KB
2152}
2153
42e69d6b
VZ
2154// Dialog window proc
2155LONG APIENTRY _EXPORT
2156wxDlgProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
2bda0e17 2157{
42e69d6b 2158 if ( message == WM_INITDIALOG )
2bda0e17 2159 {
42e69d6b
VZ
2160 // for this message, returning TRUE tells system to set focus to the
2161 // first control in the dialog box
2162 return TRUE;
2d0a075d 2163 }
42e69d6b 2164 else
2d0a075d 2165 {
42e69d6b
VZ
2166 // for all the other ones, FALSE means that we didn't process the
2167 // message
2168 return 0;
2d0a075d 2169 }
2bda0e17
KB
2170}
2171
42e69d6b
VZ
2172wxList *wxWinHandleList = NULL;
2173wxWindow *wxFindWinFromHandle(WXHWND hWnd)
4ce81a75 2174{
42e69d6b
VZ
2175 wxNode *node = wxWinHandleList->Find((long)hWnd);
2176 if ( !node )
2177 return NULL;
2178 return (wxWindow *)node->Data();
2179}
4ce81a75 2180
c7527e3f
JS
2181#if 0 // def __WXDEBUG__
2182static int gs_AssociationCount = 0;
2183#endif
2184
42e69d6b
VZ
2185void wxAssociateWinWithHandle(HWND hWnd, wxWindow *win)
2186{
2187 // adding NULL hWnd is (first) surely a result of an error and
2188 // (secondly) breaks menu command processing
2189 wxCHECK_RET( hWnd != (HWND)NULL,
223d09f6 2190 wxT("attempt to add a NULL hWnd to window list ignored") );
4ce81a75 2191
c7527e3f
JS
2192
2193 wxWindow *oldWin = wxFindWinFromHandle((WXHWND) hWnd);
2194 if ( oldWin && (oldWin != win) )
2195 {
2196 wxString str(win->GetClassInfo()->GetClassName());
f5166ed4 2197 wxLogError(wxT("Bug! Found existing HWND %X for new window of class %s"), (int) hWnd, (const wxChar*) str);
c7527e3f
JS
2198 }
2199 else if (!oldWin)
2200 {
2201#if 0 // def __WXDEBUG__
2202 gs_AssociationCount ++;
2203 wxLogDebug("+ Association %d", gs_AssociationCount);
2204#endif
2205
42e69d6b 2206 wxWinHandleList->Append((long)hWnd, win);
c7527e3f 2207 }
42e69d6b 2208}
4ce81a75 2209
42e69d6b
VZ
2210void wxRemoveHandleAssociation(wxWindow *win)
2211{
c7527e3f
JS
2212#if 0 // def __WXDEBUG__
2213 if (wxWinHandleList->Member(win))
2214 {
2215 wxLogDebug("- Association %d", gs_AssociationCount);
2216 gs_AssociationCount --;
2217 }
2218#endif
42e69d6b 2219 wxWinHandleList->DeleteObject(win);
4ce81a75
JS
2220}
2221
42e69d6b
VZ
2222// Default destroyer - override if you destroy it in some other way
2223// (e.g. with MDI child windows)
2224void wxWindow::MSWDestroyWindow()
4ce81a75 2225{
42e69d6b 2226}
4ce81a75 2227
42e69d6b
VZ
2228void wxWindow::MSWDetachWindowMenu()
2229{
2230 if ( m_hMenu )
4ce81a75 2231 {
42e69d6b 2232 HMENU hMenu = (HMENU)m_hMenu;
4ce81a75 2233
42e69d6b
VZ
2234 int N = ::GetMenuItemCount(hMenu);
2235 int i;
2236 for (i = 0; i < N; i++)
2237 {
837e5743 2238 wxChar buf[100];
42e69d6b
VZ
2239 int chars = GetMenuString(hMenu, i, buf, 100, MF_BYPOSITION);
2240 if ( !chars )
2241 {
223d09f6 2242 wxLogLastError(wxT("GetMenuString"));
4ce81a75 2243
42e69d6b
VZ
2244 continue;
2245 }
4ce81a75 2246
223d09f6 2247 if ( wxStrcmp(buf, wxT("&Window")) == 0 )
42e69d6b
VZ
2248 {
2249 RemoveMenu(hMenu, i, MF_BYPOSITION);
4ce81a75 2250
42e69d6b
VZ
2251 break;
2252 }
2253 }
4ce81a75
JS
2254 }
2255}
2256
42e69d6b
VZ
2257bool wxWindow::MSWCreate(int id,
2258 wxWindow *parent,
837e5743 2259 const wxChar *wclass,
42e69d6b 2260 wxWindow *wx_win,
837e5743 2261 const wxChar *title,
42e69d6b
VZ
2262 int x,
2263 int y,
2264 int width,
2265 int height,
2266 WXDWORD style,
837e5743 2267 const wxChar *dialog_template,
42e69d6b 2268 WXDWORD extendedStyle)
2bda0e17 2269{
42e69d6b
VZ
2270 int x1 = CW_USEDEFAULT;
2271 int y1 = 0;
2272 int width1 = CW_USEDEFAULT;
2273 int height1 = 100;
c085e333 2274
42e69d6b
VZ
2275 // Find parent's size, if it exists, to set up a possible default
2276 // panel size the size of the parent window
2277 RECT parent_rect;
2278 if ( parent )
a23fd0e1 2279 {
42e69d6b 2280 ::GetClientRect((HWND) parent->GetHWND(), &parent_rect);
c085e333 2281
42e69d6b
VZ
2282 width1 = parent_rect.right - parent_rect.left;
2283 height1 = parent_rect.bottom - parent_rect.top;
2284 }
2bda0e17 2285
42e69d6b
VZ
2286 if ( x > -1 ) x1 = x;
2287 if ( y > -1 ) y1 = y;
2288 if ( width > -1 ) width1 = width;
2289 if ( height > -1 ) height1 = height;
c085e333 2290
f6081a04
JS
2291 // Unfortunately this won't work in WIN16. Unless perhaps
2292 // we define WS_EX_CONTROLPARENT ourselves?
2293#ifndef __WIN16__
8614c467
VZ
2294 // if we have wxTAB_TRAVERSAL style, we want WS_EX_CONTROLPARENT or
2295 // IsDialogMessage() won't work for us
2296 if ( GetWindowStyleFlag() & wxTAB_TRAVERSAL )
2297 {
2298 extendedStyle |= WS_EX_CONTROLPARENT;
2299 }
f6081a04 2300#endif
8614c467 2301
c455ab93 2302 HWND hParent = (HWND)NULL;
42e69d6b
VZ
2303 if ( parent )
2304 hParent = (HWND) parent->GetHWND();
c085e333 2305
42e69d6b 2306 wxWndHook = this;
c085e333 2307
42e69d6b
VZ
2308 if ( dialog_template )
2309 {
2310 m_hWnd = (WXHWND)::CreateDialog(wxGetInstance(),
2311 dialog_template,
2312 hParent,
2313 (DLGPROC)wxDlgProc);
2bda0e17 2314
42e69d6b
VZ
2315 if ( m_hWnd == 0 )
2316 {
2317 wxLogError(_("Can't find dummy dialog template!\n"
2318 "Check resource include path for finding wx.rc."));
c085e333 2319
42e69d6b
VZ
2320 return FALSE;
2321 }
c085e333 2322
789295bf
VZ
2323 // ::SetWindowLong(GWL_EXSTYLE) doesn't work for the dialogs, so try
2324 // to take care of (at least some) extended style flags ourselves
2325 if ( extendedStyle & WS_EX_TOPMOST )
2326 {
2327 if ( !::SetWindowPos(GetHwnd(), HWND_TOPMOST, 0, 0, 0, 0,
2328 SWP_NOSIZE | SWP_NOMOVE) )
2329 {
223d09f6 2330 wxLogLastError(wxT("SetWindowPos"));
789295bf
VZ
2331 }
2332 }
2333
2334 // move the dialog to its initial position without forcing repainting
2335 if ( !::MoveWindow(GetHwnd(), x1, y1, width1, height1, FALSE) )
2336 {
223d09f6 2337 wxLogLastError(wxT("MoveWindow"));
789295bf 2338 }
42e69d6b
VZ
2339 }
2340 else
2341 {
2342 int controlId = 0;
2343 if ( style & WS_CHILD )
2344 controlId = id;
2345
193fe989
VZ
2346 wxString className(wclass);
2347 if ( GetWindowStyleFlag() & wxNO_FULL_REPAINT_ON_RESIZE )
2348 {
223d09f6 2349 className += wxT("NR");
193fe989
VZ
2350 }
2351
42e69d6b 2352 m_hWnd = (WXHWND)CreateWindowEx(extendedStyle,
b782f2e0 2353 className,
223d09f6 2354 title ? title : wxT(""),
42e69d6b
VZ
2355 style,
2356 x1, y1,
2357 width1, height1,
2358 hParent, (HMENU)controlId,
2359 wxGetInstance(),
2360 NULL);
2361
2362 if ( !m_hWnd )
2363 {
2364 wxLogError(_("Can't create window of class %s!\n"
2365 "Possible Windows 3.x compatibility problem?"),
2366 wclass);
2bda0e17 2367
a23fd0e1 2368 return FALSE;
42e69d6b 2369 }
a23fd0e1 2370 }
c085e333 2371
42e69d6b 2372 wxWndHook = NULL;
c7527e3f
JS
2373#ifdef __WXDEBUG__
2374 wxNode* node = wxWinHandleList->Member(this);
2375 if (node)
2376 {
2377 HWND hWnd = (HWND) node->GetKeyInteger();
2378 if (hWnd != (HWND) m_hWnd)
2379 {
f5166ed4 2380 wxLogError(wxT("A second HWND association is being added for the same window!"));
c7527e3f
JS
2381 }
2382 }
2383#endif
2384 wxAssociateWinWithHandle((HWND) m_hWnd, this);
c085e333 2385
42e69d6b 2386 return TRUE;
2bda0e17
KB
2387}
2388
42e69d6b
VZ
2389// ===========================================================================
2390// MSW message handlers
2391// ===========================================================================
2392
2393// ---------------------------------------------------------------------------
2394// WM_NOTIFY
2395// ---------------------------------------------------------------------------
2396
2397#ifdef __WIN95__
2398// FIXME: VZ: I'm not sure at all that the order of processing is correct
2399bool wxWindow::HandleNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
2bda0e17 2400{
42e69d6b
VZ
2401 LPNMHDR hdr = (LPNMHDR)lParam;
2402 HWND hWnd = hdr->hwndFrom;
2403 wxWindow *win = wxFindWinFromHandle((WXHWND)hWnd);
2404
2405 // is this one of our windows?
2406 if ( win )
564b2609 2407 {
42e69d6b 2408 return win->MSWOnNotify(idCtrl, lParam, result);
564b2609 2409 }
2bda0e17 2410
42e69d6b
VZ
2411 // try all our children
2412 wxWindowList::Node *node = GetChildren().GetFirst();
2413 while ( node )
564b2609 2414 {
42e69d6b
VZ
2415 wxWindow *child = node->GetData();
2416 if ( child->MSWOnNotify(idCtrl, lParam, result) )
2417 {
2418 return TRUE;
2d0a075d 2419
42e69d6b
VZ
2420 break;
2421 }
2d0a075d 2422
42e69d6b
VZ
2423 node = node->GetNext();
2424 }
2d0a075d 2425
42e69d6b
VZ
2426 // finally try this window too (catches toolbar case)
2427 return MSWOnNotify(idCtrl, lParam, result);
2428}
2d0a075d 2429
42e69d6b
VZ
2430bool wxWindow::MSWOnNotify(int WXUNUSED(idCtrl),
2431 WXLPARAM lParam,
2432 WXLPARAM* WXUNUSED(result))
2433{
2434#if wxUSE_TOOLTIPS
2435 NMHDR* hdr = (NMHDR *)lParam;
a17e237f 2436 if ( (int)hdr->code == TTN_NEEDTEXT && m_tooltip )
42e69d6b
VZ
2437 {
2438 TOOLTIPTEXT *ttt = (TOOLTIPTEXT *)lParam;
837e5743 2439 ttt->lpszText = (wxChar *)m_tooltip->GetTip().c_str();
2d0a075d 2440
42e69d6b
VZ
2441 // processed
2442 return TRUE;
2443 }
2444#endif // wxUSE_TOOLTIPS
2445
2446 return FALSE;
2447}
2448#endif // __WIN95__
2449
2450// ---------------------------------------------------------------------------
2451// end session messages
2452// ---------------------------------------------------------------------------
2d0a075d 2453
42e69d6b
VZ
2454bool wxWindow::HandleQueryEndSession(long logOff, bool *mayEnd)
2455{
2456 wxCloseEvent event(wxEVT_QUERY_END_SESSION, -1);
2457 event.SetEventObject(wxTheApp);
2458 event.SetCanVeto(TRUE);
a17e237f 2459 event.SetLoggingOff(logOff == (long)ENDSESSION_LOGOFF);
2d0a075d 2460
42e69d6b
VZ
2461 bool rc = wxTheApp->ProcessEvent(event);
2462
2463 if ( rc )
2464 {
2465 // we may end only if the app didn't veto session closing (double
2466 // negation...)
2467 *mayEnd = !event.GetVeto();
2d0a075d
JS
2468 }
2469
42e69d6b 2470 return rc;
2bda0e17
KB
2471}
2472
42e69d6b 2473bool wxWindow::HandleEndSession(bool endSession, long logOff)
2bda0e17 2474{
42e69d6b
VZ
2475 // do nothing if the session isn't ending
2476 if ( !endSession )
2477 return FALSE;
a23fd0e1 2478
42e69d6b
VZ
2479 wxCloseEvent event(wxEVT_END_SESSION, -1);
2480 event.SetEventObject(wxTheApp);
2481 event.SetCanVeto(FALSE);
a17e237f 2482 event.SetLoggingOff( (logOff == (long)ENDSESSION_LOGOFF) );
42e69d6b
VZ
2483 if ( (this == wxTheApp->GetTopWindow()) && // Only send once
2484 wxTheApp->ProcessEvent(event))
2485 {
2486 }
2487 return TRUE;
2bda0e17
KB
2488}
2489
42e69d6b
VZ
2490// ---------------------------------------------------------------------------
2491// window creation/destruction
2492// ---------------------------------------------------------------------------
2493
2494bool wxWindow::HandleCreate(WXLPCREATESTRUCT cs, bool *mayCreate)
2bda0e17 2495{
42e69d6b
VZ
2496 // TODO: should generate this event from WM_NCCREATE
2497 wxWindowCreateEvent event(this);
2498 (void)GetEventHandler()->ProcessEvent(event);
a23fd0e1 2499
42e69d6b
VZ
2500 *mayCreate = TRUE;
2501
2502 return TRUE;
2bda0e17
KB
2503}
2504
42e69d6b 2505bool wxWindow::HandleDestroy()
2bda0e17 2506{
42e69d6b
VZ
2507 wxWindowDestroyEvent event(this);
2508 (void)GetEventHandler()->ProcessEvent(event);
2509
2510 // delete our drop target if we've got one
2511#if wxUSE_DRAG_AND_DROP
2512 if ( m_dropTarget != NULL )
2d0a075d 2513 {
42e69d6b
VZ
2514 m_dropTarget->Revoke(m_hWnd);
2515
2516 delete m_dropTarget;
2517 m_dropTarget = NULL;
2d0a075d 2518 }
42e69d6b 2519#endif // wxUSE_DRAG_AND_DROP
2bda0e17 2520
42e69d6b
VZ
2521 // WM_DESTROY handled
2522 return TRUE;
2bda0e17
KB
2523}
2524
42e69d6b
VZ
2525// ---------------------------------------------------------------------------
2526// activation/focus
2527// ---------------------------------------------------------------------------
2528
00c4e897
VZ
2529void wxWindow::OnSetFocus(wxFocusEvent& event)
2530{
2531 // panel wants to track the window which was the last to have focus in it,
2532 // so we want to set ourselves as the window which last had focus
2533 //
2534 // notice that it's also important to do it upwards the tree becaus
2535 // otherwise when the top level panel gets focus, it won't set it back to
2536 // us, but to some other sibling
2537 wxWindow *win = this;
2538 while ( win )
2539 {
2540 wxWindow *parent = win->GetParent();
2541 wxPanel *panel = wxDynamicCast(parent, wxPanel);
2542 if ( panel )
2543 {
2544 panel->SetLastFocus(win);
2545 }
2546
2547 win = parent;
2548 }
2549
2550 wxLogTrace(_T("focus"), _T("%s (0x%08x) gets focus"),
2551 GetClassInfo()->GetClassName(), GetHandle());
2552
2553 event.Skip();
2554}
2555
42e69d6b
VZ
2556bool wxWindow::HandleActivate(int state,
2557 bool WXUNUSED(minimized),
2558 WXHWND WXUNUSED(activate))
2bda0e17 2559{
42e69d6b
VZ
2560 wxActivateEvent event(wxEVT_ACTIVATE,
2561 (state == WA_ACTIVE) || (state == WA_CLICKACTIVE),
2562 m_windowId);
2563 event.SetEventObject(this);
2564
2565 return GetEventHandler()->ProcessEvent(event);
2566}
2567
2568bool wxWindow::HandleSetFocus(WXHWND WXUNUSED(hwnd))
2569{
789295bf 2570#if wxUSE_CARET
42e69d6b 2571 // Deal with caret
789295bf 2572 if ( m_caret )
2d0a075d 2573 {
789295bf 2574 m_caret->OnSetFocus();
2bda0e17 2575 }
789295bf 2576#endif // wxUSE_CARET
42e69d6b 2577
42e69d6b
VZ
2578 wxFocusEvent event(wxEVT_SET_FOCUS, m_windowId);
2579 event.SetEventObject(this);
2580
2581 return GetEventHandler()->ProcessEvent(event);
2bda0e17
KB
2582}
2583
42e69d6b 2584bool wxWindow::HandleKillFocus(WXHWND WXUNUSED(hwnd))
2bda0e17 2585{
789295bf 2586#if wxUSE_CARET
42e69d6b 2587 // Deal with caret
789295bf 2588 if ( m_caret )
2d0a075d 2589 {
789295bf 2590 m_caret->OnKillFocus();
2bda0e17 2591 }
789295bf 2592#endif // wxUSE_CARET
42e69d6b
VZ
2593
2594 wxFocusEvent event(wxEVT_KILL_FOCUS, m_windowId);
2595 event.SetEventObject(this);
2596
2597 return GetEventHandler()->ProcessEvent(event);
2bda0e17
KB
2598}
2599
42e69d6b
VZ
2600// ---------------------------------------------------------------------------
2601// miscellaneous
2602// ---------------------------------------------------------------------------
2603
2604bool wxWindow::HandleShow(bool show, int status)
2bda0e17 2605{
42e69d6b
VZ
2606 wxShowEvent event(GetId(), show);
2607 event.m_eventObject = this;
2608
2609 return GetEventHandler()->ProcessEvent(event);
2bda0e17
KB
2610}
2611
42e69d6b 2612bool wxWindow::HandleInitDialog(WXHWND WXUNUSED(hWndFocus))
2bda0e17 2613{
42e69d6b
VZ
2614 wxInitDialogEvent event(GetId());
2615 event.m_eventObject = this;
2616
2617 return GetEventHandler()->ProcessEvent(event);
2bda0e17
KB
2618}
2619
42e69d6b 2620bool wxWindow::HandleDropFiles(WXWPARAM wParam)
2bda0e17 2621{
42e69d6b
VZ
2622 HDROP hFilesInfo = (HDROP) wParam;
2623 POINT dropPoint;
2624 DragQueryPoint(hFilesInfo, (LPPOINT) &dropPoint);
2625
2626 // Get the total number of files dropped
2627 WORD gwFilesDropped = (WORD)DragQueryFile ((HDROP)hFilesInfo,
2628 (UINT)-1,
2629 (LPSTR)0,
2630 (UINT)0);
2631
2632 wxString *files = new wxString[gwFilesDropped];
2633 int wIndex;
2634 for (wIndex=0; wIndex < (int)gwFilesDropped; wIndex++)
2d0a075d 2635 {
837e5743 2636 DragQueryFile (hFilesInfo, wIndex, (LPTSTR) wxBuffer, 1000);
42e69d6b 2637 files[wIndex] = wxBuffer;
2d0a075d 2638 }
42e69d6b 2639 DragFinish (hFilesInfo);
2bda0e17 2640
42e69d6b
VZ
2641 wxDropFilesEvent event(wxEVT_DROP_FILES, gwFilesDropped, files);
2642 event.m_eventObject = this;
2643 event.m_pos.x = dropPoint.x; event.m_pos.x = dropPoint.y;
2644
2645 bool rc = GetEventHandler()->ProcessEvent(event);
2646
2647 delete[] files;
2648
2649 return rc;
2bda0e17
KB
2650}
2651
42e69d6b
VZ
2652bool wxWindow::HandleSetCursor(WXHWND hWnd,
2653 short nHitTest,
2654 int WXUNUSED(mouseMsg))
2bda0e17 2655{
42e69d6b
VZ
2656 // don't set cursor for other windows, only for this one: this prevents
2657 // children of this window from getting the same cursor as the parent has
2658 // (don't forget that this message is propagated by default up the window
2659 // parent-child hierarchy)
2660 if ( GetHWND() == hWnd )
2661 {
2662 // don't set cursor when the mouse is not in the client part
2663 if ( nHitTest == HTCLIENT || nHitTest == HTERROR )
2664 {
2665 HCURSOR hcursor = 0;
2666 if ( wxIsBusy() )
2667 {
2668 // from msw\utils.cpp
2669 extern HCURSOR gs_wxBusyCursor;
2670
2671 hcursor = gs_wxBusyCursor;
2672 }
2673 else
2674 {
2675 wxCursor *cursor = NULL;
2676
2677 if ( m_cursor.Ok() )
2678 {
2679 cursor = &m_cursor;
2680 }
2681 else
2682 {
2683 // from msw\data.cpp
2684 extern wxCursor *g_globalCursor;
2685
2686 if ( g_globalCursor && g_globalCursor->Ok() )
2687 cursor = g_globalCursor;
2688 }
2689
2690 if ( cursor )
2691 hcursor = (HCURSOR)cursor->GetHCURSOR();
2692 }
2693
2694 if ( hcursor )
2695 {
2696 ::SetCursor(hcursor);
2697
2698 return TRUE;
2699 }
2700 }
2701 }
2702
2703 return FALSE;
2bda0e17
KB
2704}
2705
42e69d6b
VZ
2706// ---------------------------------------------------------------------------
2707// owner drawn stuff
2708// ---------------------------------------------------------------------------
2709
2710bool wxWindow::MSWOnDrawItem(int id, WXDRAWITEMSTRUCT *itemStruct)
2bda0e17 2711{
4286a5b5 2712#if wxUSE_OWNER_DRAWN
42e69d6b
VZ
2713 // is it a menu item?
2714 if ( id == 0 )
2715 {
2716 DRAWITEMSTRUCT *pDrawStruct = (DRAWITEMSTRUCT *)itemStruct;
2717 wxMenuItem *pMenuItem = (wxMenuItem *)(pDrawStruct->itemData);
2718
2719 wxCHECK( pMenuItem->IsKindOf(CLASSINFO(wxMenuItem)), FALSE );
2720
2721 // prepare to call OnDrawItem()
2722 wxDC dc;
2723 dc.SetHDC((WXHDC)pDrawStruct->hDC, FALSE);
2724 wxRect rect(pDrawStruct->rcItem.left, pDrawStruct->rcItem.top,
2725 pDrawStruct->rcItem.right - pDrawStruct->rcItem.left,
2726 pDrawStruct->rcItem.bottom - pDrawStruct->rcItem.top);
2727
2728 return pMenuItem->OnDrawItem
2729 (
2730 dc, rect,
2731 (wxOwnerDrawn::wxODAction)pDrawStruct->itemAction,
2732 (wxOwnerDrawn::wxODStatus)pDrawStruct->itemState
2733 );
2734 }
2735
2736 wxWindow *item = FindItem(id);
2737 if ( item && item->IsKindOf(CLASSINFO(wxControl)) )
2738 {
2739 return ((wxControl *)item)->MSWOnDraw(itemStruct);
2740 }
cd0b1709 2741#endif // USE_OWNER_DRAWN
4286a5b5 2742
cd0b1709 2743 return FALSE;
2bda0e17
KB
2744}
2745
42e69d6b 2746bool wxWindow::MSWOnMeasureItem(int id, WXMEASUREITEMSTRUCT *itemStruct)
2bda0e17 2747{
4286a5b5 2748#if wxUSE_OWNER_DRAWN
42e69d6b
VZ
2749 // is it a menu item?
2750 if ( id == 0 )
2d0a075d 2751 {
42e69d6b
VZ
2752 MEASUREITEMSTRUCT *pMeasureStruct = (MEASUREITEMSTRUCT *)itemStruct;
2753 wxMenuItem *pMenuItem = (wxMenuItem *)(pMeasureStruct->itemData);
2754
2755 wxCHECK( pMenuItem->IsKindOf(CLASSINFO(wxMenuItem)), FALSE );
2756
2757 return pMenuItem->OnMeasureItem(&pMeasureStruct->itemWidth,
2758 &pMeasureStruct->itemHeight);
2d0a075d 2759 }
42e69d6b
VZ
2760
2761 wxWindow *item = FindItem(id);
2762 if ( item && item->IsKindOf(CLASSINFO(wxControl)) )
2763 {
2764 return ((wxControl *)item)->MSWOnMeasure(itemStruct);
2765 }
4286a5b5 2766#endif // owner-drawn menus
42e69d6b 2767 return FALSE;
2bda0e17
KB
2768}
2769
42e69d6b
VZ
2770// ---------------------------------------------------------------------------
2771// colours and palettes
2772// ---------------------------------------------------------------------------
2bda0e17 2773
42e69d6b 2774bool wxWindow::HandleSysColorChange()
2bda0e17 2775{
42e69d6b
VZ
2776 wxSysColourChangedEvent event;
2777 event.SetEventObject(this);
2778
2779 return GetEventHandler()->ProcessEvent(event);
2780}
2781
2782bool wxWindow::HandleCtlColor(WXHBRUSH *brush,
2783 WXHDC pDC,
2784 WXHWND pWnd,
2785 WXUINT nCtlColor,
2786 WXUINT message,
2787 WXWPARAM wParam,
2788 WXLPARAM lParam)
2789{
2790 WXHBRUSH hBrush = 0;
2791
2792 if ( nCtlColor == CTLCOLOR_DLG )
2d0a075d 2793 {
42e69d6b 2794 hBrush = OnCtlColor(pDC, pWnd, nCtlColor, message, wParam, lParam);
2d0a075d
JS
2795 }
2796 else
2797 {
42e69d6b
VZ
2798 wxControl *item = (wxControl *)FindItemByHWND(pWnd, TRUE);
2799 if ( item )
2800 hBrush = item->OnCtlColor(pDC, pWnd, nCtlColor, message, wParam, lParam);
2d0a075d 2801 }
42e69d6b
VZ
2802
2803 if ( hBrush )
2804 *brush = hBrush;
2805
2806 return hBrush != 0;
2bda0e17
KB
2807}
2808
42e69d6b
VZ
2809// Define for each class of dialog and control
2810WXHBRUSH wxWindow::OnCtlColor(WXHDC hDC,
2811 WXHWND hWnd,
2812 WXUINT nCtlColor,
2813 WXUINT message,
2814 WXWPARAM wParam,
2815 WXLPARAM lParam)
2bda0e17 2816{
42e69d6b
VZ
2817 return (WXHBRUSH)0;
2818}
2d0a075d 2819
42e69d6b
VZ
2820bool wxWindow::HandlePaletteChanged(WXHWND hWndPalChange)
2821{
2822 wxPaletteChangedEvent event(GetId());
2823 event.SetEventObject(this);
2824 event.SetChangedWindow(wxFindWinFromHandle(hWndPalChange));
2d0a075d 2825
42e69d6b
VZ
2826 return GetEventHandler()->ProcessEvent(event);
2827}
2828
2829bool wxWindow::HandleQueryNewPalette()
2830{
2831 wxQueryNewPaletteEvent event(GetId());
2832 event.SetEventObject(this);
2833
2834 return GetEventHandler()->ProcessEvent(event) && event.GetPaletteRealized();
2835}
2836
2837// Responds to colour changes: passes event on to children.
2838void wxWindow::OnSysColourChanged(wxSysColourChangedEvent& event)
2839{
2840 wxNode *node = GetChildren().First();
2841 while ( node )
2842 {
2843 // Only propagate to non-top-level windows
2844 wxWindow *win = (wxWindow *)node->Data();
2845 if ( win->GetParent() )
2846 {
2847 wxSysColourChangedEvent event2;
2848 event.m_eventObject = win;
2849 win->GetEventHandler()->ProcessEvent(event2);
564b2609 2850 }
42e69d6b
VZ
2851
2852 node = node->Next();
2bda0e17 2853 }
2bda0e17
KB
2854}
2855
42e69d6b
VZ
2856// ---------------------------------------------------------------------------
2857// painting
2858// ---------------------------------------------------------------------------
2859
2860bool wxWindow::HandlePaint()
2bda0e17 2861{
42e69d6b
VZ
2862#ifdef __WIN32__
2863 HRGN hRegion = ::CreateRectRgn(0, 0, 0, 0); // Dummy call to get a handle
2864 if ( !hRegion )
2865 wxLogLastError("CreateRectRgn");
2866 if ( ::GetUpdateRgn(GetHwnd(), hRegion, FALSE) == ERROR )
2867 wxLogLastError("GetUpdateRgn");
c085e333 2868
42e69d6b
VZ
2869 m_updateRegion = wxRegion((WXHRGN) hRegion);
2870#else
2871 RECT updateRect;
2872 ::GetUpdateRect(GetHwnd(), & updateRect, FALSE);
c085e333 2873
42e69d6b
VZ
2874 m_updateRegion = wxRegion(updateRect.left, updateRect.top,
2875 updateRect.right - updateRect.left,
2876 updateRect.bottom - updateRect.top);
2877#endif
c085e333 2878
42e69d6b
VZ
2879 wxPaintEvent event(m_windowId);
2880 event.SetEventObject(this);
2bda0e17 2881
42e69d6b 2882 return GetEventHandler()->ProcessEvent(event);
2bda0e17
KB
2883}
2884
42e69d6b 2885bool wxWindow::HandleEraseBkgnd(WXHDC hdc)
a23fd0e1 2886{
42e69d6b
VZ
2887 // Prevents flicker when dragging
2888 if ( ::IsIconic(GetHwnd()) )
2889 return TRUE;
a23fd0e1 2890
a23fd0e1 2891 wxDC dc;
c085e333 2892
a23fd0e1 2893 dc.SetHDC(hdc);
564b2609
VZ
2894 dc.SetWindow(this);
2895 dc.BeginDrawing();
c085e333 2896
2bda0e17 2897 wxEraseEvent event(m_windowId, &dc);
42e69d6b 2898 event.SetEventObject(this);
a23fd0e1 2899 bool rc = GetEventHandler()->ProcessEvent(event);
c085e333 2900
a23fd0e1
VZ
2901 dc.EndDrawing();
2902 dc.SelectOldObjects(hdc);
2bda0e17 2903 dc.SetHDC((WXHDC) NULL);
a23fd0e1
VZ
2904
2905 return rc;
2bda0e17
KB
2906}
2907
2908void wxWindow::OnEraseBackground(wxEraseEvent& event)
2909{
2d0a075d 2910 RECT rect;
a23fd0e1 2911 ::GetClientRect(GetHwnd(), &rect);
2bda0e17 2912
42e69d6b
VZ
2913 COLORREF ref = PALETTERGB(m_backgroundColour.Red(),
2914 m_backgroundColour.Green(),
2915 m_backgroundColour.Blue());
ce3ed50d 2916 HBRUSH hBrush = ::CreateSolidBrush(ref);
42e69d6b
VZ
2917 if ( !hBrush )
2918 wxLogLastError("CreateSolidBrush");
2919
2920 HDC hdc = (HDC)event.GetDC()->GetHDC();
2bda0e17 2921
42e69d6b
VZ
2922 int mode = ::SetMapMode(hdc, MM_TEXT);
2923
2924 ::FillRect(hdc, &rect, hBrush);
2d0a075d 2925 ::DeleteObject(hBrush);
42e69d6b
VZ
2926 ::SetMapMode(hdc, mode);
2927}
2928
2929// ---------------------------------------------------------------------------
2930// moving and resizing
2931// ---------------------------------------------------------------------------
2932
2933bool wxWindow::HandleMinimize()
2934{
2935 wxIconizeEvent event(m_windowId);
2936 event.SetEventObject(this);
2d0a075d 2937
42e69d6b 2938 return GetEventHandler()->ProcessEvent(event);
2bda0e17
KB
2939}
2940
42e69d6b 2941bool wxWindow::HandleMaximize()
2bda0e17 2942{
42e69d6b
VZ
2943 wxMaximizeEvent event(m_windowId);
2944 event.SetEventObject(this);
c085e333 2945
42e69d6b
VZ
2946 return GetEventHandler()->ProcessEvent(event);
2947}
2bda0e17 2948
42e69d6b
VZ
2949bool wxWindow::HandleMove(int x, int y)
2950{
2951 wxMoveEvent event(wxPoint(x, y), m_windowId);
2952 event.SetEventObject(this);
2953
2954 return GetEventHandler()->ProcessEvent(event);
2955}
2956
2957bool wxWindow::HandleSize(int w, int h, WXUINT WXUNUSED(flag))
2958{
2959 wxSizeEvent event(wxSize(w, h), m_windowId);
2960 event.SetEventObject(this);
2961
2962 return GetEventHandler()->ProcessEvent(event);
2963}
2964
2965bool wxWindow::HandleGetMinMaxInfo(void *mmInfo)
2966{
2967 MINMAXINFO *info = (MINMAXINFO *)mmInfo;
2968
2969 bool rc = FALSE;
2970
2971 if ( m_minWidth != -1 )
2d0a075d 2972 {
42e69d6b
VZ
2973 info->ptMinTrackSize.x = m_minWidth;
2974 rc = TRUE;
2d0a075d 2975 }
2bda0e17 2976
42e69d6b
VZ
2977 if ( m_minHeight != -1 )
2978 {
2979 info->ptMinTrackSize.y = m_minHeight;
2980 rc = TRUE;
2981 }
2bda0e17 2982
42e69d6b
VZ
2983 if ( m_maxWidth != -1 )
2984 {
2985 info->ptMaxTrackSize.x = m_maxWidth;
2986 rc = TRUE;
2d0a075d 2987 }
2bda0e17 2988
42e69d6b
VZ
2989 if ( m_maxHeight != -1 )
2990 {
2991 info->ptMaxTrackSize.y = m_maxHeight;
2992 rc = TRUE;
2993 }
2bda0e17 2994
42e69d6b
VZ
2995 return rc;
2996}
2d0a075d 2997
42e69d6b
VZ
2998// ---------------------------------------------------------------------------
2999// command messages
3000// ---------------------------------------------------------------------------
3001
3002bool wxWindow::HandleCommand(WXWORD id, WXWORD cmd, WXHWND control)
3003{
3004 if ( wxCurrentPopupMenu )
3005 {
3006 wxMenu *popupMenu = wxCurrentPopupMenu;
3007 wxCurrentPopupMenu = NULL;
3008
3009 return popupMenu->MSWCommand(cmd, id);
3010 }
3011
b853f898
VZ
3012 wxWindow *win;
3013 if ( cmd == 0 || cmd == 1 ) // menu or accel - use id
42e69d6b 3014 {
b853f898
VZ
3015 // must cast to a signed type before comparing with other ids!
3016 win = FindItem((signed short)id);
3017 }
3018 else
3019 {
3020 // find it from HWND - this works even with the broken programs using
3021 // the same ids for different controls
42e69d6b
VZ
3022 win = wxFindWinFromHandle(control);
3023 }
3024
3025 if ( win )
3026 return win->MSWCommand(cmd, id);
a84fc80b
JS
3027 else
3028 {
3029 // If no child window, it may be an accelerator, e.g. for
3030 // a popup menu command.
3031
3032 wxCommandEvent event(wxEVT_COMMAND_MENU_SELECTED);
3033 event.SetEventObject(this);
3034 event.SetId(id);
3035 event.SetInt(id);
3036 return ProcessEvent(event);
3037 }
42e69d6b
VZ
3038
3039 return FALSE;
2bda0e17
KB
3040}
3041
42e69d6b 3042bool wxWindow::HandleSysCommand(WXWPARAM wParam, WXLPARAM lParam)
2bda0e17 3043{
42e69d6b
VZ
3044 // 4 bits are reserved
3045 switch ( wParam & 0xFFFFFFF0 )
3046 {
3047 case SC_MAXIMIZE:
3048 return HandleMaximize();
2d0a075d 3049
42e69d6b
VZ
3050 case SC_MINIMIZE:
3051 return HandleMinimize();
2d0a075d 3052 }
2bda0e17 3053
42e69d6b
VZ
3054 return FALSE;
3055}
3056
3057// ---------------------------------------------------------------------------
3058// mouse events
3059// ---------------------------------------------------------------------------
3060
3061void wxWindow::InitMouseEvent(wxMouseEvent& event, int x, int y, WXUINT flags)
3062{
3063 event.m_x = x;
3064 event.m_y = y;
3065 event.m_shiftDown = ((flags & MK_SHIFT) != 0);
3066 event.m_controlDown = ((flags & MK_CONTROL) != 0);
3067 event.m_leftDown = ((flags & MK_LBUTTON) != 0);
3068 event.m_middleDown = ((flags & MK_MBUTTON) != 0);
3069 event.m_rightDown = ((flags & MK_RBUTTON) != 0);
3070 event.SetTimestamp(s_currentMsg.time);
3071 event.m_eventObject = this;
3072
3073#if wxUSE_MOUSEEVENT_HACK
3074 m_lastMouseX = x;
3075 m_lastMouseY = y;
3076 m_lastMouseEvent = event.GetEventType();
3077#endif // wxUSE_MOUSEEVENT_HACK
2bda0e17 3078
2bda0e17
KB
3079}
3080
42e69d6b 3081bool wxWindow::HandleMouseEvent(WXUINT msg, int x, int y, WXUINT flags)
2bda0e17 3082{
42e69d6b
VZ
3083 // the mouse events take consecutive IDs from WM_MOUSEFIRST to
3084 // WM_MOUSELAST, so it's enough to substract WM_MOUSEMOVE == WM_MOUSEFIRST
3085 // from the message id and take the value in the table to get wxWin event
3086 // id
3087 static const wxEventType eventsMouse[] =
3088 {
3089 wxEVT_MOTION,
3090 wxEVT_LEFT_DOWN,
3091 wxEVT_LEFT_UP,
3092 wxEVT_LEFT_DCLICK,
3093 wxEVT_RIGHT_DOWN,
3094 wxEVT_RIGHT_UP,
3095 wxEVT_RIGHT_DCLICK,
3096 wxEVT_MIDDLE_DOWN,
3097 wxEVT_MIDDLE_UP,
3098 wxEVT_MIDDLE_DCLICK
3099 };
2bda0e17 3100
42e69d6b
VZ
3101 wxMouseEvent event(eventsMouse[msg - WM_MOUSEMOVE]);
3102 InitMouseEvent(event, x, y, flags);
3103
3104 return GetEventHandler()->ProcessEvent(event);
3105}
3106
3107bool wxWindow::HandleMouseMove(int x, int y, WXUINT flags)
3108{
3109 if ( !m_mouseInWindow )
2bda0e17 3110 {
42e69d6b
VZ
3111 // Generate an ENTER event
3112 m_mouseInWindow = TRUE;
3113
3114 wxMouseEvent event(wxEVT_ENTER_WINDOW);
3115 InitMouseEvent(event, x, y, flags);
3116
3117 (void)GetEventHandler()->ProcessEvent(event);
3118 }
3119
3120#if wxUSE_MOUSEEVENT_HACK
3121 // Window gets a click down message followed by a mouse move message even
3122 // if position isn't changed! We want to discard the trailing move event
3123 // if x and y are the same.
3124 if ( (m_lastMouseEvent == wxEVT_RIGHT_DOWN ||
3125 m_lastMouseEvent == wxEVT_LEFT_DOWN ||
3126 m_lastMouseEvent == wxEVT_MIDDLE_DOWN) &&
3127 (m_lastMouseX == event.m_x && m_lastMouseY == event.m_y) )
3128 {
3129 m_lastMouseEvent = wxEVT_MOTION;
3130
3131 return FALSE;
3132 }
3133#endif // wxUSE_MOUSEEVENT_HACK
3134
3135 return HandleMouseEvent(WM_MOUSEMOVE, x, y, flags);
3136}
3137
3138// ---------------------------------------------------------------------------
3139// keyboard handling
3140// ---------------------------------------------------------------------------
3141
3142// isASCII is TRUE only when we're called from WM_CHAR handler and not from
3143// WM_KEYDOWN one
3144bool wxWindow::HandleChar(WXWORD wParam, WXLPARAM lParam, bool isASCII)
3145{
3146 int id;
3147 bool tempControlDown = FALSE;
3148 if ( isASCII )
3149 {
3150 // If 1 -> 26, translate to CTRL plus a letter.
3151 id = wParam;
3152 if ( (id > 0) && (id < 27) )
2d0a075d 3153 {
42e69d6b
VZ
3154 switch (id)
3155 {
3156 case 13:
3157 {
3158 id = WXK_RETURN;
3159 break;
3160 }
3161 case 8:
3162 {
3163 id = WXK_BACK;
3164 break;
3165 }
3166 case 9:
3167 {
3168 id = WXK_TAB;
3169 break;
3170 }
3171 default:
3172 {
3173 tempControlDown = TRUE;
3174 id = id + 96;
3175 }
3176 }
2d0a075d 3177 }
2d0a075d 3178 }
42e69d6b
VZ
3179 else if ( (id = wxCharCodeMSWToWX(wParam)) == 0 ) {
3180 // it's ASCII and will be processed here only when called from
3181 // WM_CHAR (i.e. when isASCII = TRUE)
3182 id = -1;
3183 }
2bda0e17 3184
42e69d6b 3185 if ( id != -1 )
2d0a075d 3186 {
42e69d6b
VZ
3187 wxKeyEvent event(wxEVT_CHAR);
3188 event.m_shiftDown = (::GetKeyState(VK_SHIFT)&0x100?TRUE:FALSE);
3189 event.m_controlDown = (::GetKeyState(VK_CONTROL)&0x100?TRUE:FALSE);
3190 if ( (HIWORD(lParam) & KF_ALTDOWN) == KF_ALTDOWN )
3191 event.m_altDown = TRUE;
3192
3193 event.m_eventObject = this;
3194 event.m_keyCode = id;
3195 event.SetTimestamp(s_currentMsg.time);
3196
3197 POINT pt;
3198 GetCursorPos(&pt);
3199 RECT rect;
3200 GetWindowRect(GetHwnd(),&rect);
3201 pt.x -= rect.left;
3202 pt.y -= rect.top;
3203
3204 event.m_x = pt.x; event.m_y = pt.y;
3205
3206 if ( GetEventHandler()->ProcessEvent(event) )
3207 return TRUE;
3208 else
3209 return FALSE;
2d0a075d
JS
3210 }
3211 else
42e69d6b 3212 return FALSE;
2bda0e17
KB
3213}
3214
42e69d6b 3215bool wxWindow::HandleKeyDown(WXWORD wParam, WXLPARAM lParam)
2bda0e17 3216{
42e69d6b 3217 int id;
2bda0e17 3218
42e69d6b
VZ
3219 if ( (id = wxCharCodeMSWToWX(wParam)) == 0 ) {
3220 id = wParam;
3221 }
3222
3223 if ( id != -1 )
2bda0e17 3224 {
42e69d6b
VZ
3225 wxKeyEvent event(wxEVT_KEY_DOWN);
3226 event.m_shiftDown = (::GetKeyState(VK_SHIFT)&0x100?TRUE:FALSE);
3227 event.m_controlDown = (::GetKeyState(VK_CONTROL)&0x100?TRUE:FALSE);
3228 if ( (HIWORD(lParam) & KF_ALTDOWN) == KF_ALTDOWN )
3229 event.m_altDown = TRUE;
3230
3231 event.m_eventObject = this;
3232 event.m_keyCode = id;
3233 event.SetTimestamp(s_currentMsg.time);
3234
3235 POINT pt;
3236 GetCursorPos(&pt);
3237 RECT rect;
3238 GetWindowRect(GetHwnd(),&rect);
3239 pt.x -= rect.left;
3240 pt.y -= rect.top;
3241
3242 event.m_x = pt.x; event.m_y = pt.y;
3243
3244 if ( GetEventHandler()->ProcessEvent(event) )
2d0a075d 3245 {
42e69d6b 3246 return TRUE;
2d0a075d 3247 }
42e69d6b 3248 else return FALSE;
2d0a075d
JS
3249 }
3250 else
42e69d6b
VZ
3251 {
3252 return FALSE;
3253 }
2bda0e17
KB
3254}
3255
42e69d6b 3256bool wxWindow::HandleKeyUp(WXWORD wParam, WXLPARAM lParam)
2bda0e17 3257{
42e69d6b 3258 int id;
2bda0e17 3259
42e69d6b
VZ
3260 if ( (id = wxCharCodeMSWToWX(wParam)) == 0 ) {
3261 id = wParam;
2d0a075d 3262 }
2bda0e17 3263
42e69d6b
VZ
3264 if ( id != -1 )
3265 {
3266 wxKeyEvent event(wxEVT_KEY_UP);
3267 event.m_shiftDown = (::GetKeyState(VK_SHIFT)&0x100?TRUE:FALSE);
3268 event.m_controlDown = (::GetKeyState(VK_CONTROL)&0x100?TRUE:FALSE);
3269 if ( (HIWORD(lParam) & KF_ALTDOWN) == KF_ALTDOWN )
3270 event.m_altDown = TRUE;
2bda0e17 3271
42e69d6b
VZ
3272 event.m_eventObject = this;
3273 event.m_keyCode = id;
3274 event.SetTimestamp(s_currentMsg.time);
2d0a075d 3275
42e69d6b
VZ
3276 POINT pt;
3277 GetCursorPos(&pt);
3278 RECT rect;
3279 GetWindowRect(GetHwnd(),&rect);
3280 pt.x -= rect.left;
3281 pt.y -= rect.top;
3282
3283 event.m_x = pt.x; event.m_y = pt.y;
3284
3285 if ( GetEventHandler()->ProcessEvent(event) )
3286 return TRUE;
3287 else
3288 return FALSE;
3289 }
3290 else
3291 return FALSE;
2bda0e17
KB
3292}
3293
42e69d6b
VZ
3294// ---------------------------------------------------------------------------
3295// joystick
3296// ---------------------------------------------------------------------------
3297
3298bool wxWindow::HandleJoystickEvent(WXUINT msg, int x, int y, WXUINT flags)
2bda0e17 3299{
42e69d6b
VZ
3300 int change = 0;
3301 if ( flags & JOY_BUTTON1CHG )
3302 change = wxJOY_BUTTON1;
3303 if ( flags & JOY_BUTTON2CHG )
3304 change = wxJOY_BUTTON2;
3305 if ( flags & JOY_BUTTON3CHG )
3306 change = wxJOY_BUTTON3;
3307 if ( flags & JOY_BUTTON4CHG )
3308 change = wxJOY_BUTTON4;
2bda0e17 3309
42e69d6b
VZ
3310 int buttons = 0;
3311 if ( flags & JOY_BUTTON1 )
3312 buttons |= wxJOY_BUTTON1;
3313 if ( flags & JOY_BUTTON2 )
3314 buttons |= wxJOY_BUTTON2;
3315 if ( flags & JOY_BUTTON3 )
3316 buttons |= wxJOY_BUTTON3;
3317 if ( flags & JOY_BUTTON4 )
3318 buttons |= wxJOY_BUTTON4;
c085e333 3319
42e69d6b
VZ
3320 // the event ids aren't consecutive so we can't use table based lookup
3321 int joystick;
3322 wxEventType eventType;
3323 switch ( msg )
3324 {
3325 case MM_JOY1MOVE:
3326 joystick = 1;
3327 eventType = wxEVT_JOY_MOVE;
3328 break;
2bda0e17 3329
42e69d6b
VZ
3330 case MM_JOY2MOVE:
3331 joystick = 2;
3332 eventType = wxEVT_JOY_MOVE;
3333 break;
2bda0e17 3334
42e69d6b
VZ
3335 case MM_JOY1ZMOVE:
3336 joystick = 1;
3337 eventType = wxEVT_JOY_ZMOVE;
3338 break;
2bda0e17 3339
42e69d6b
VZ
3340 case MM_JOY2ZMOVE:
3341 joystick = 2;
3342 eventType = wxEVT_JOY_ZMOVE;
3343 break;
2bda0e17 3344
42e69d6b
VZ
3345 case MM_JOY1BUTTONDOWN:
3346 joystick = 1;
3347 eventType = wxEVT_JOY_BUTTON_DOWN;
3348 break;
2bda0e17 3349
42e69d6b
VZ
3350 case MM_JOY2BUTTONDOWN:
3351 joystick = 2;
3352 eventType = wxEVT_JOY_BUTTON_DOWN;
3353 break;
2bda0e17 3354
42e69d6b
VZ
3355 case MM_JOY1BUTTONUP:
3356 joystick = 1;
3357 eventType = wxEVT_JOY_BUTTON_UP;
3358 break;
3359
3360 case MM_JOY2BUTTONUP:
3361 joystick = 2;
3362 eventType = wxEVT_JOY_BUTTON_UP;
3363 break;
3364
3365 default:
223d09f6 3366 wxFAIL_MSG(wxT("no such joystick event"));
2d0a075d 3367
42e69d6b 3368 return FALSE;
2d0a075d 3369 }
2bda0e17 3370
42e69d6b
VZ
3371 wxJoystickEvent event(eventType, buttons, joystick, change);
3372 event.SetPosition(wxPoint(x, y));
3373 event.SetEventObject(this);
c085e333 3374
42e69d6b 3375 return GetEventHandler()->ProcessEvent(event);
2bda0e17
KB
3376}
3377
42e69d6b
VZ
3378// ---------------------------------------------------------------------------
3379// scrolling
3380// ---------------------------------------------------------------------------
3381
3382bool wxWindow::MSWOnScroll(int orientation, WXWORD wParam,
3383 WXWORD pos, WXHWND control)
2bda0e17 3384{
42e69d6b 3385 if ( control )
cc2b7472 3386 {
42e69d6b
VZ
3387 wxWindow *child = wxFindWinFromHandle(control);
3388 if ( child )
3389 return child->MSWOnScroll(orientation, wParam, pos, control);
cc2b7472 3390 }
2bda0e17 3391
9145664b 3392 wxScrollWinEvent event;
42e69d6b
VZ
3393 event.SetPosition(pos);
3394 event.SetOrientation(orientation);
3395 event.m_eventObject = this;
cc2b7472 3396
42e69d6b
VZ
3397 switch ( wParam )
3398 {
3399 case SB_TOP:
9145664b 3400 event.m_eventType = wxEVT_SCROLLWIN_TOP;
42e69d6b 3401 break;
cc2b7472 3402
42e69d6b 3403 case SB_BOTTOM:
9145664b 3404 event.m_eventType = wxEVT_SCROLLWIN_BOTTOM;
42e69d6b 3405 break;
cc2b7472 3406
42e69d6b 3407 case SB_LINEUP:
9145664b 3408 event.m_eventType = wxEVT_SCROLLWIN_LINEUP;
42e69d6b 3409 break;
2bda0e17 3410
42e69d6b 3411 case SB_LINEDOWN:
9145664b 3412 event.m_eventType = wxEVT_SCROLLWIN_LINEDOWN;
42e69d6b 3413 break;
a02eb1d2 3414
42e69d6b 3415 case SB_PAGEUP:
9145664b 3416 event.m_eventType = wxEVT_SCROLLWIN_PAGEUP;
42e69d6b 3417 break;
2bda0e17 3418
42e69d6b 3419 case SB_PAGEDOWN:
9145664b 3420 event.m_eventType = wxEVT_SCROLLWIN_PAGEDOWN;
42e69d6b 3421 break;
2bda0e17 3422
42e69d6b 3423 case SB_THUMBPOSITION:
feda3011
GRG
3424 event.m_isScrolling = FALSE;
3425 /* fall-through */
3426
3427 case SB_THUMBTRACK:
9145664b 3428 event.m_eventType = wxEVT_SCROLLWIN_THUMBTRACK;
42e69d6b 3429 break;
c085e333 3430
42e69d6b
VZ
3431 default:
3432 return FALSE;
564b2609 3433 }
2bda0e17 3434
42e69d6b 3435 return GetEventHandler()->ProcessEvent(event);
2bda0e17
KB
3436}
3437
42e69d6b
VZ
3438// ===========================================================================
3439// global functions
3440// ===========================================================================
3441
f68586e5 3442void wxGetCharSize(WXHWND wnd, int *x, int *y, const wxFont *the_font)
2bda0e17 3443{
42e69d6b
VZ
3444 TEXTMETRIC tm;
3445 HDC dc = ::GetDC((HWND) wnd);
3446 HFONT fnt =0;
3447 HFONT was = 0;
3448 if ( the_font )
2d0a075d 3449 {
42e69d6b
VZ
3450 // the_font->UseResource();
3451 // the_font->RealizeResource();
f68586e5 3452 fnt = (HFONT)((wxFont *)the_font)->GetResourceHandle(); // const_cast
42e69d6b
VZ
3453 if ( fnt )
3454 was = (HFONT) SelectObject(dc,fnt);
2d0a075d 3455 }
42e69d6b
VZ
3456 GetTextMetrics(dc, &tm);
3457 if ( the_font && fnt && was )
2d0a075d 3458 {
42e69d6b 3459 SelectObject(dc,was);
2d0a075d 3460 }
42e69d6b 3461 ReleaseDC((HWND)wnd, dc);
0655ad29
VZ
3462
3463 if ( x )
3464 *x = tm.tmAveCharWidth;
3465 if ( y )
3466 *y = tm.tmHeight + tm.tmExternalLeading;
2bda0e17 3467
42e69d6b
VZ
3468 // if ( the_font )
3469 // the_font->ReleaseResource();
3470}
c085e333 3471
42e69d6b
VZ
3472// Returns 0 if was a normal ASCII value, not a special key. This indicates that
3473// the key should be ignored by WM_KEYDOWN and processed by WM_CHAR instead.
3474int wxCharCodeMSWToWX(int keySym)
3475{
3476 int id = 0;
3477 switch (keySym)
3478 {
3479 case VK_CANCEL: id = WXK_CANCEL; break;
3480 case VK_BACK: id = WXK_BACK; break;
3481 case VK_TAB: id = WXK_TAB; break;
3482 case VK_CLEAR: id = WXK_CLEAR; break;
3483 case VK_RETURN: id = WXK_RETURN; break;
3484 case VK_SHIFT: id = WXK_SHIFT; break;
3485 case VK_CONTROL: id = WXK_CONTROL; break;
3486 case VK_MENU : id = WXK_MENU; break;
3487 case VK_PAUSE: id = WXK_PAUSE; break;
3488 case VK_SPACE: id = WXK_SPACE; break;
3489 case VK_ESCAPE: id = WXK_ESCAPE; break;
3490 case VK_PRIOR: id = WXK_PRIOR; break;
3491 case VK_NEXT : id = WXK_NEXT; break;
3492 case VK_END: id = WXK_END; break;
3493 case VK_HOME : id = WXK_HOME; break;
3494 case VK_LEFT : id = WXK_LEFT; break;
3495 case VK_UP: id = WXK_UP; break;
3496 case VK_RIGHT: id = WXK_RIGHT; break;
3497 case VK_DOWN : id = WXK_DOWN; break;
3498 case VK_SELECT: id = WXK_SELECT; break;
3499 case VK_PRINT: id = WXK_PRINT; break;
3500 case VK_EXECUTE: id = WXK_EXECUTE; break;
3501 case VK_INSERT: id = WXK_INSERT; break;
3502 case VK_DELETE: id = WXK_DELETE; break;
3503 case VK_HELP : id = WXK_HELP; break;
3504 case VK_NUMPAD0: id = WXK_NUMPAD0; break;
3505 case VK_NUMPAD1: id = WXK_NUMPAD1; break;
3506 case VK_NUMPAD2: id = WXK_NUMPAD2; break;
3507 case VK_NUMPAD3: id = WXK_NUMPAD3; break;
3508 case VK_NUMPAD4: id = WXK_NUMPAD4; break;
3509 case VK_NUMPAD5: id = WXK_NUMPAD5; break;
3510 case VK_NUMPAD6: id = WXK_NUMPAD6; break;
3511 case VK_NUMPAD7: id = WXK_NUMPAD7; break;
3512 case VK_NUMPAD8: id = WXK_NUMPAD8; break;
3513 case VK_NUMPAD9: id = WXK_NUMPAD9; break;
3514 case VK_MULTIPLY: id = WXK_MULTIPLY; break;
3515 case VK_ADD: id = WXK_ADD; break;
3516 case VK_SUBTRACT: id = WXK_SUBTRACT; break;
3517 case VK_DECIMAL: id = WXK_DECIMAL; break;
3518 case VK_DIVIDE: id = WXK_DIVIDE; break;
3519 case VK_F1: id = WXK_F1; break;
3520 case VK_F2: id = WXK_F2; break;
3521 case VK_F3: id = WXK_F3; break;
3522 case VK_F4: id = WXK_F4; break;
3523 case VK_F5: id = WXK_F5; break;
3524 case VK_F6: id = WXK_F6; break;
3525 case VK_F7: id = WXK_F7; break;
3526 case VK_F8: id = WXK_F8; break;
3527 case VK_F9: id = WXK_F9; break;
3528 case VK_F10: id = WXK_F10; break;
3529 case VK_F11: id = WXK_F11; break;
3530 case VK_F12: id = WXK_F12; break;
3531 case VK_F13: id = WXK_F13; break;
3532 case VK_F14: id = WXK_F14; break;
3533 case VK_F15: id = WXK_F15; break;
3534 case VK_F16: id = WXK_F16; break;
3535 case VK_F17: id = WXK_F17; break;
3536 case VK_F18: id = WXK_F18; break;
3537 case VK_F19: id = WXK_F19; break;
3538 case VK_F20: id = WXK_F20; break;
3539 case VK_F21: id = WXK_F21; break;
3540 case VK_F22: id = WXK_F22; break;
3541 case VK_F23: id = WXK_F23; break;
3542 case VK_F24: id = WXK_F24; break;
3543 case VK_NUMLOCK: id = WXK_NUMLOCK; break;
3544 case VK_SCROLL: id = WXK_SCROLL; break;
3545 default:
3546 {
3547 return 0;
3548 }
3549 }
3550 return id;
2bda0e17
KB
3551}
3552
42e69d6b 3553int wxCharCodeWXToMSW(int id, bool *isVirtual)
2bda0e17 3554{
42e69d6b
VZ
3555 *isVirtual = TRUE;
3556 int keySym = 0;
3557 switch (id)
2bda0e17 3558 {
42e69d6b
VZ
3559 case WXK_CANCEL: keySym = VK_CANCEL; break;
3560 case WXK_CLEAR: keySym = VK_CLEAR; break;
3561 case WXK_SHIFT: keySym = VK_SHIFT; break;
3562 case WXK_CONTROL: keySym = VK_CONTROL; break;
3563 case WXK_MENU : keySym = VK_MENU; break;
3564 case WXK_PAUSE: keySym = VK_PAUSE; break;
3565 case WXK_PRIOR: keySym = VK_PRIOR; break;
3566 case WXK_NEXT : keySym = VK_NEXT; break;
3567 case WXK_END: keySym = VK_END; break;
3568 case WXK_HOME : keySym = VK_HOME; break;
3569 case WXK_LEFT : keySym = VK_LEFT; break;
3570 case WXK_UP: keySym = VK_UP; break;
3571 case WXK_RIGHT: keySym = VK_RIGHT; break;
3572 case WXK_DOWN : keySym = VK_DOWN; break;
3573 case WXK_SELECT: keySym = VK_SELECT; break;
3574 case WXK_PRINT: keySym = VK_PRINT; break;
3575 case WXK_EXECUTE: keySym = VK_EXECUTE; break;
3576 case WXK_INSERT: keySym = VK_INSERT; break;
3577 case WXK_DELETE: keySym = VK_DELETE; break;
3578 case WXK_HELP : keySym = VK_HELP; break;
3579 case WXK_NUMPAD0: keySym = VK_NUMPAD0; break;
3580 case WXK_NUMPAD1: keySym = VK_NUMPAD1; break;
3581 case WXK_NUMPAD2: keySym = VK_NUMPAD2; break;
3582 case WXK_NUMPAD3: keySym = VK_NUMPAD3; break;
3583 case WXK_NUMPAD4: keySym = VK_NUMPAD4; break;
3584 case WXK_NUMPAD5: keySym = VK_NUMPAD5; break;
3585 case WXK_NUMPAD6: keySym = VK_NUMPAD6; break;
3586 case WXK_NUMPAD7: keySym = VK_NUMPAD7; break;
3587 case WXK_NUMPAD8: keySym = VK_NUMPAD8; break;
3588 case WXK_NUMPAD9: keySym = VK_NUMPAD9; break;
3589 case WXK_MULTIPLY: keySym = VK_MULTIPLY; break;
3590 case WXK_ADD: keySym = VK_ADD; break;
3591 case WXK_SUBTRACT: keySym = VK_SUBTRACT; break;
3592 case WXK_DECIMAL: keySym = VK_DECIMAL; break;
3593 case WXK_DIVIDE: keySym = VK_DIVIDE; break;
3594 case WXK_F1: keySym = VK_F1; break;
3595 case WXK_F2: keySym = VK_F2; break;
3596 case WXK_F3: keySym = VK_F3; break;
3597 case WXK_F4: keySym = VK_F4; break;
3598 case WXK_F5: keySym = VK_F5; break;
3599 case WXK_F6: keySym = VK_F6; break;
3600 case WXK_F7: keySym = VK_F7; break;
3601 case WXK_F8: keySym = VK_F8; break;
3602 case WXK_F9: keySym = VK_F9; break;
3603 case WXK_F10: keySym = VK_F10; break;
3604 case WXK_F11: keySym = VK_F11; break;
3605 case WXK_F12: keySym = VK_F12; break;
3606 case WXK_F13: keySym = VK_F13; break;
3607 case WXK_F14: keySym = VK_F14; break;
3608 case WXK_F15: keySym = VK_F15; break;
3609 case WXK_F16: keySym = VK_F16; break;
3610 case WXK_F17: keySym = VK_F17; break;
3611 case WXK_F18: keySym = VK_F18; break;
3612 case WXK_F19: keySym = VK_F19; break;
3613 case WXK_F20: keySym = VK_F20; break;
3614 case WXK_F21: keySym = VK_F21; break;
3615 case WXK_F22: keySym = VK_F22; break;
3616 case WXK_F23: keySym = VK_F23; break;
3617 case WXK_F24: keySym = VK_F24; break;
3618 case WXK_NUMLOCK: keySym = VK_NUMLOCK; break;
3619 case WXK_SCROLL: keySym = VK_SCROLL; break;
3620 default:
3621 {
3622 *isVirtual = FALSE;
3623 keySym = id;
3624 break;
3625 }
2bda0e17 3626 }
42e69d6b 3627 return keySym;
2bda0e17
KB
3628}
3629
42e69d6b 3630wxWindow *wxGetActiveWindow()
2bda0e17 3631{
42e69d6b
VZ
3632 HWND hWnd = GetActiveWindow();
3633 if ( hWnd != 0 )
2d0a075d 3634 {
42e69d6b 3635 return wxFindWinFromHandle((WXHWND) hWnd);
2d0a075d 3636 }
42e69d6b 3637 return NULL;
2bda0e17
KB
3638}
3639
8614c467
VZ
3640extern wxWindow *wxGetWindowFromHWND(WXHWND hWnd)
3641{
3642 HWND hwnd = (HWND)hWnd;
3643
3644 // For a radiobutton, we get the radiobox from GWL_USERDATA (which is set
3645 // by code in msw/radiobox.cpp), for all the others we just search up the
3646 // window hierarchy
3647 wxWindow *win = (wxWindow *)NULL;
3648 if ( hwnd )
3649 {
3650 win = wxFindWinFromHandle((WXHWND)hwnd);
3651 if ( !win )
3652 {
4f527e71
VZ
3653 // the radiobox pointer is stored in GWL_USERDATA only under Win32
3654#ifdef __WIN32__
8614c467
VZ
3655 // native radiobuttons return DLGC_RADIOBUTTON here and for any
3656 // wxWindow class which overrides WM_GETDLGCODE processing to
3657 // do it as well, win would be already non NULL
3658 if ( ::SendMessage((HWND)hwnd, WM_GETDLGCODE,
3659 0, 0) & DLGC_RADIOBUTTON )
3660 {
3661 win = (wxWindow *)::GetWindowLong(hwnd, GWL_USERDATA);
3662 }
3663 else
4f527e71 3664#endif // Win32
8614c467
VZ
3665 {
3666 // hwnd is not a wxWindow, try its parent next below
3667 hwnd = ::GetParent(hwnd);
3668 }
3669 }
3670 //else: it's a wxRadioButton, not a radiobutton from wxRadioBox
3671 }
3672
3673 while ( hwnd && !win )
3674 {
3675 win = wxFindWinFromHandle((WXHWND)hwnd);
3676 hwnd = ::GetParent(hwnd);
3677 }
3678
3679 return win;
3680}
3681
42e69d6b
VZ
3682// Windows keyboard hook. Allows interception of e.g. F1, ESCAPE
3683// in active frames and dialogs, regardless of where the focus is.
3684static HHOOK wxTheKeyboardHook = 0;
3685static FARPROC wxTheKeyboardHookProc = 0;
3686int APIENTRY _EXPORT
3687wxKeyboardHook(int nCode, WORD wParam, DWORD lParam);
2bda0e17 3688
42e69d6b 3689void wxSetKeyboardHook(bool doIt)
2bda0e17 3690{
42e69d6b 3691 if ( doIt )
2d0a075d 3692 {
42e69d6b
VZ
3693 wxTheKeyboardHookProc = MakeProcInstance((FARPROC) wxKeyboardHook, wxGetInstance());
3694 wxTheKeyboardHook = SetWindowsHookEx(WH_KEYBOARD, (HOOKPROC) wxTheKeyboardHookProc, wxGetInstance(),
c7527e3f 3695
42e69d6b 3696#if defined(__WIN32__) && !defined(__TWIN32__)
8614c467 3697 GetCurrentThreadId()
42e69d6b
VZ
3698 // (DWORD)GetCurrentProcess()); // This is another possibility. Which is right?
3699#else
8614c467 3700 GetCurrentTask()
42e69d6b 3701#endif
8614c467 3702 );
2d0a075d 3703 }
2d0a075d 3704 else
2d0a075d 3705 {
42e69d6b 3706 UnhookWindowsHookEx(wxTheKeyboardHook);
a17e237f
VZ
3707 // avoids mingw warning about statement with no effect (FreeProcInstance
3708 // doesn't do anything under Win32)
3709#ifndef __GNUWIN32__
42e69d6b 3710 FreeProcInstance(wxTheKeyboardHookProc);
a17e237f 3711#endif
2d0a075d 3712 }
2bda0e17
KB
3713}
3714
42e69d6b
VZ
3715int APIENTRY _EXPORT
3716wxKeyboardHook(int nCode, WORD wParam, DWORD lParam)
2bda0e17 3717{
42e69d6b
VZ
3718 DWORD hiWord = HIWORD(lParam);
3719 if ( nCode != HC_NOREMOVE && ((hiWord & KF_UP) == 0) )
43d811ea 3720 {
42e69d6b
VZ
3721 int id;
3722 if ( (id = wxCharCodeMSWToWX(wParam)) != 0 )
43d811ea 3723 {
42e69d6b
VZ
3724 wxKeyEvent event(wxEVT_CHAR_HOOK);
3725 if ( (HIWORD(lParam) & KF_ALTDOWN) == KF_ALTDOWN )
3726 event.m_altDown = TRUE;
c085e333 3727
42e69d6b
VZ
3728 event.m_eventObject = NULL;
3729 event.m_keyCode = id;
3730 /* begin Albert's fix for control and shift key 26.5 */
3731 event.m_shiftDown = (::GetKeyState(VK_SHIFT)&0x100?TRUE:FALSE);
3732 event.m_controlDown = (::GetKeyState(VK_CONTROL)&0x100?TRUE:FALSE);
3733 /* end Albert's fix for control and shift key 26.5 */
3734 event.SetTimestamp(s_currentMsg.time);
c085e333 3735
42e69d6b
VZ
3736 wxWindow *win = wxGetActiveWindow();
3737 if ( win )
3738 {
3739 if ( win->GetEventHandler()->ProcessEvent(event) )
3740 return 1;
3741 }
3742 else
3743 {
3744 if ( wxTheApp && wxTheApp->ProcessEvent(event) )
3745 return 1;
3746 }
43d811ea
JS
3747 }
3748 }
42e69d6b 3749 return (int)CallNextHookEx(wxTheKeyboardHook, nCode, wParam, lParam);
4fabb575
JS
3750}
3751
b2aef89b 3752#ifdef __WXDEBUG__
f449ef69 3753const char *wxGetMessageName(int message)
47cbd6da 3754{
42e69d6b
VZ
3755 switch ( message )
3756 {
3757 case 0x0000: return "WM_NULL";
3758 case 0x0001: return "WM_CREATE";
3759 case 0x0002: return "WM_DESTROY";
3760 case 0x0003: return "WM_MOVE";
3761 case 0x0005: return "WM_SIZE";
3762 case 0x0006: return "WM_ACTIVATE";
3763 case 0x0007: return "WM_SETFOCUS";
3764 case 0x0008: return "WM_KILLFOCUS";
3765 case 0x000A: return "WM_ENABLE";
3766 case 0x000B: return "WM_SETREDRAW";
9b64e798
VZ
3767 case 0x000C: return "WM_SETTEXT";
3768 case 0x000D: return "WM_GETTEXT";
42e69d6b 3769 case 0x000E: return "WM_GETTEXTLENGTH";
9b64e798 3770 case 0x000F: return "WM_PAINT";
42e69d6b
VZ
3771 case 0x0010: return "WM_CLOSE";
3772 case 0x0011: return "WM_QUERYENDSESSION";
9b64e798 3773 case 0x0012: return "WM_QUIT";
42e69d6b
VZ
3774 case 0x0013: return "WM_QUERYOPEN";
3775 case 0x0014: return "WM_ERASEBKGND";
3776 case 0x0015: return "WM_SYSCOLORCHANGE";
3777 case 0x0016: return "WM_ENDSESSION";
3778 case 0x0017: return "WM_SYSTEMERROR";
3779 case 0x0018: return "WM_SHOWWINDOW";
3780 case 0x0019: return "WM_CTLCOLOR";
3781 case 0x001A: return "WM_WININICHANGE";
3782 case 0x001B: return "WM_DEVMODECHANGE";
3783 case 0x001C: return "WM_ACTIVATEAPP";
3784 case 0x001D: return "WM_FONTCHANGE";
3785 case 0x001E: return "WM_TIMECHANGE";
3786 case 0x001F: return "WM_CANCELMODE";
3787 case 0x0020: return "WM_SETCURSOR";
3788 case 0x0021: return "WM_MOUSEACTIVATE";
3789 case 0x0022: return "WM_CHILDACTIVATE";
3790 case 0x0023: return "WM_QUEUESYNC";
3791 case 0x0024: return "WM_GETMINMAXINFO";
3792 case 0x0026: return "WM_PAINTICON";
3793 case 0x0027: return "WM_ICONERASEBKGND";
3794 case 0x0028: return "WM_NEXTDLGCTL";
3795 case 0x002A: return "WM_SPOOLERSTATUS";
3796 case 0x002B: return "WM_DRAWITEM";
3797 case 0x002C: return "WM_MEASUREITEM";
3798 case 0x002D: return "WM_DELETEITEM";
3799 case 0x002E: return "WM_VKEYTOITEM";
3800 case 0x002F: return "WM_CHARTOITEM";
9b64e798
VZ
3801 case 0x0030: return "WM_SETFONT";
3802 case 0x0031: return "WM_GETFONT";
42e69d6b
VZ
3803 case 0x0037: return "WM_QUERYDRAGICON";
3804 case 0x0039: return "WM_COMPAREITEM";
3805 case 0x0041: return "WM_COMPACTING";
3806 case 0x0044: return "WM_COMMNOTIFY";
3807 case 0x0046: return "WM_WINDOWPOSCHANGING";
3808 case 0x0047: return "WM_WINDOWPOSCHANGED";
3809 case 0x0048: return "WM_POWER";
c085e333 3810
a02eb1d2 3811#ifdef __WIN32__
42e69d6b
VZ
3812 case 0x004A: return "WM_COPYDATA";
3813 case 0x004B: return "WM_CANCELJOURNAL";
3814 case 0x004E: return "WM_NOTIFY";
9b64e798 3815 case 0x0050: return "WM_INPUTLANGCHANGEREQUEST";
42e69d6b
VZ
3816 case 0x0051: return "WM_INPUTLANGCHANGE";
3817 case 0x0052: return "WM_TCARD";
3818 case 0x0053: return "WM_HELP";
3819 case 0x0054: return "WM_USERCHANGED";
9b64e798 3820 case 0x0055: return "WM_NOTIFYFORMAT";
42e69d6b
VZ
3821 case 0x007B: return "WM_CONTEXTMENU";
3822 case 0x007C: return "WM_STYLECHANGING";
3823 case 0x007D: return "WM_STYLECHANGED";
3824 case 0x007E: return "WM_DISPLAYCHANGE";
3825 case 0x007F: return "WM_GETICON";
3826 case 0x0080: return "WM_SETICON";
a02eb1d2 3827#endif //WIN32
c085e333 3828
42e69d6b
VZ
3829 case 0x0081: return "WM_NCCREATE";
3830 case 0x0082: return "WM_NCDESTROY";
3831 case 0x0083: return "WM_NCCALCSIZE";
9b64e798
VZ
3832 case 0x0084: return "WM_NCHITTEST";
3833 case 0x0085: return "WM_NCPAINT";
42e69d6b
VZ
3834 case 0x0086: return "WM_NCACTIVATE";
3835 case 0x0087: return "WM_GETDLGCODE";
3836 case 0x00A0: return "WM_NCMOUSEMOVE";
3837 case 0x00A1: return "WM_NCLBUTTONDOWN";
3838 case 0x00A2: return "WM_NCLBUTTONUP";
3839 case 0x00A3: return "WM_NCLBUTTONDBLCLK";
3840 case 0x00A4: return "WM_NCRBUTTONDOWN";
3841 case 0x00A5: return "WM_NCRBUTTONUP";
3842 case 0x00A6: return "WM_NCRBUTTONDBLCLK";
3843 case 0x00A7: return "WM_NCMBUTTONDOWN";
3844 case 0x00A8: return "WM_NCMBUTTONUP";
3845 case 0x00A9: return "WM_NCMBUTTONDBLCLK";
3846 case 0x0100: return "WM_KEYDOWN";
3847 case 0x0101: return "WM_KEYUP";
3848 case 0x0102: return "WM_CHAR";
3849 case 0x0103: return "WM_DEADCHAR";
3850 case 0x0104: return "WM_SYSKEYDOWN";
3851 case 0x0105: return "WM_SYSKEYUP";
3852 case 0x0106: return "WM_SYSCHAR";
3853 case 0x0107: return "WM_SYSDEADCHAR";
9b64e798 3854 case 0x0108: return "WM_KEYLAST";
c085e333 3855
a02eb1d2 3856#ifdef __WIN32__
42e69d6b
VZ
3857 case 0x010D: return "WM_IME_STARTCOMPOSITION";
3858 case 0x010E: return "WM_IME_ENDCOMPOSITION";
3859 case 0x010F: return "WM_IME_COMPOSITION";
a02eb1d2 3860#endif //WIN32
c085e333 3861
42e69d6b
VZ
3862 case 0x0110: return "WM_INITDIALOG";
3863 case 0x0111: return "WM_COMMAND";
3864 case 0x0112: return "WM_SYSCOMMAND";
3865 case 0x0113: return "WM_TIMER";
3866 case 0x0114: return "WM_HSCROLL";
3867 case 0x0115: return "WM_VSCROLL";
3868 case 0x0116: return "WM_INITMENU";
3869 case 0x0117: return "WM_INITMENUPOPUP";
9b64e798 3870 case 0x011F: return "WM_MENUSELECT";
42e69d6b
VZ
3871 case 0x0120: return "WM_MENUCHAR";
3872 case 0x0121: return "WM_ENTERIDLE";
3873 case 0x0200: return "WM_MOUSEMOVE";
3874 case 0x0201: return "WM_LBUTTONDOWN";
3875 case 0x0202: return "WM_LBUTTONUP";
3876 case 0x0203: return "WM_LBUTTONDBLCLK";
3877 case 0x0204: return "WM_RBUTTONDOWN";
3878 case 0x0205: return "WM_RBUTTONUP";
3879 case 0x0206: return "WM_RBUTTONDBLCLK";
3880 case 0x0207: return "WM_MBUTTONDOWN";
3881 case 0x0208: return "WM_MBUTTONUP";
3882 case 0x0209: return "WM_MBUTTONDBLCLK";
3883 case 0x0210: return "WM_PARENTNOTIFY";
3884 case 0x0211: return "WM_ENTERMENULOOP";
3885 case 0x0212: return "WM_EXITMENULOOP";
c085e333 3886
a02eb1d2 3887#ifdef __WIN32__
42e69d6b
VZ
3888 case 0x0213: return "WM_NEXTMENU";
3889 case 0x0214: return "WM_SIZING";
3890 case 0x0215: return "WM_CAPTURECHANGED";
3891 case 0x0216: return "WM_MOVING";
9b64e798 3892 case 0x0218: return "WM_POWERBROADCAST";
42e69d6b 3893 case 0x0219: return "WM_DEVICECHANGE";
a02eb1d2 3894#endif //WIN32
c085e333 3895
42e69d6b
VZ
3896 case 0x0220: return "WM_MDICREATE";
3897 case 0x0221: return "WM_MDIDESTROY";
3898 case 0x0222: return "WM_MDIACTIVATE";
3899 case 0x0223: return "WM_MDIRESTORE";
9b64e798 3900 case 0x0224: return "WM_MDINEXT";
42e69d6b
VZ
3901 case 0x0225: return "WM_MDIMAXIMIZE";
3902 case 0x0226: return "WM_MDITILE";
3903 case 0x0227: return "WM_MDICASCADE";
3904 case 0x0228: return "WM_MDIICONARRANGE";
3905 case 0x0229: return "WM_MDIGETACTIVE";
3906 case 0x0230: return "WM_MDISETMENU";
3907 case 0x0233: return "WM_DROPFILES";
c085e333 3908
a02eb1d2 3909#ifdef __WIN32__
9b64e798 3910 case 0x0281: return "WM_IME_SETCONTEXT";
42e69d6b
VZ
3911 case 0x0282: return "WM_IME_NOTIFY";
3912 case 0x0283: return "WM_IME_CONTROL";
3913 case 0x0284: return "WM_IME_COMPOSITIONFULL";
9b64e798 3914 case 0x0285: return "WM_IME_SELECT";
42e69d6b
VZ
3915 case 0x0286: return "WM_IME_CHAR";
3916 case 0x0290: return "WM_IME_KEYDOWN";
3917 case 0x0291: return "WM_IME_KEYUP";
a02eb1d2 3918#endif //WIN32
c085e333 3919
9b64e798 3920 case 0x0300: return "WM_CUT";
42e69d6b
VZ
3921 case 0x0301: return "WM_COPY";
3922 case 0x0302: return "WM_PASTE";
3923 case 0x0303: return "WM_CLEAR";
3924 case 0x0304: return "WM_UNDO";
9b64e798 3925 case 0x0305: return "WM_RENDERFORMAT";
42e69d6b
VZ
3926 case 0x0306: return "WM_RENDERALLFORMATS";
3927 case 0x0307: return "WM_DESTROYCLIPBOARD";
3928 case 0x0308: return "WM_DRAWCLIPBOARD";
3929 case 0x0309: return "WM_PAINTCLIPBOARD";
3930 case 0x030A: return "WM_VSCROLLCLIPBOARD";
3931 case 0x030B: return "WM_SIZECLIPBOARD";
3932 case 0x030C: return "WM_ASKCBFORMATNAME";
3933 case 0x030D: return "WM_CHANGECBCHAIN";
3934 case 0x030E: return "WM_HSCROLLCLIPBOARD";
3935 case 0x030F: return "WM_QUERYNEWPALETTE";
3936 case 0x0310: return "WM_PALETTEISCHANGING";
3937 case 0x0311: return "WM_PALETTECHANGED";
c085e333 3938
a02eb1d2 3939#ifdef __WIN32__
2d0a075d
JS
3940 // common controls messages - although they're not strictly speaking
3941 // standard, it's nice to decode them nevertheless
a02eb1d2 3942
2d0a075d 3943 // listview
42e69d6b
VZ
3944 case 0x1000 + 0: return "LVM_GETBKCOLOR";
3945 case 0x1000 + 1: return "LVM_SETBKCOLOR";
9b64e798
VZ
3946 case 0x1000 + 2: return "LVM_GETIMAGELIST";
3947 case 0x1000 + 3: return "LVM_SETIMAGELIST";
3948 case 0x1000 + 4: return "LVM_GETITEMCOUNT";
42e69d6b
VZ
3949 case 0x1000 + 5: return "LVM_GETITEMA";
3950 case 0x1000 + 75: return "LVM_GETITEMW";
3951 case 0x1000 + 6: return "LVM_SETITEMA";
3952 case 0x1000 + 76: return "LVM_SETITEMW";
3953 case 0x1000 + 7: return "LVM_INSERTITEMA";
3954 case 0x1000 + 77: return "LVM_INSERTITEMW";
3955 case 0x1000 + 8: return "LVM_DELETEITEM";
3956 case 0x1000 + 9: return "LVM_DELETEALLITEMS";
3957 case 0x1000 + 10: return "LVM_GETCALLBACKMASK";
3958 case 0x1000 + 11: return "LVM_SETCALLBACKMASK";
3959 case 0x1000 + 12: return "LVM_GETNEXTITEM";
3960 case 0x1000 + 13: return "LVM_FINDITEMA";
3961 case 0x1000 + 83: return "LVM_FINDITEMW";
9b64e798 3962 case 0x1000 + 14: return "LVM_GETITEMRECT";
42e69d6b
VZ
3963 case 0x1000 + 15: return "LVM_SETITEMPOSITION";
3964 case 0x1000 + 16: return "LVM_GETITEMPOSITION";
3965 case 0x1000 + 17: return "LVM_GETSTRINGWIDTHA";
3966 case 0x1000 + 87: return "LVM_GETSTRINGWIDTHW";
9b64e798 3967 case 0x1000 + 18: return "LVM_HITTEST";
42e69d6b
VZ
3968 case 0x1000 + 19: return "LVM_ENSUREVISIBLE";
3969 case 0x1000 + 20: return "LVM_SCROLL";
3970 case 0x1000 + 21: return "LVM_REDRAWITEMS";
3971 case 0x1000 + 22: return "LVM_ARRANGE";
3972 case 0x1000 + 23: return "LVM_EDITLABELA";
3973 case 0x1000 + 118: return "LVM_EDITLABELW";
3974 case 0x1000 + 24: return "LVM_GETEDITCONTROL";
3975 case 0x1000 + 25: return "LVM_GETCOLUMNA";
3976 case 0x1000 + 95: return "LVM_GETCOLUMNW";
3977 case 0x1000 + 26: return "LVM_SETCOLUMNA";
3978 case 0x1000 + 96: return "LVM_SETCOLUMNW";
3979 case 0x1000 + 27: return "LVM_INSERTCOLUMNA";
3980 case 0x1000 + 97: return "LVM_INSERTCOLUMNW";
3981 case 0x1000 + 28: return "LVM_DELETECOLUMN";
3982 case 0x1000 + 29: return "LVM_GETCOLUMNWIDTH";
3983 case 0x1000 + 30: return "LVM_SETCOLUMNWIDTH";
3984 case 0x1000 + 31: return "LVM_GETHEADER";
3985 case 0x1000 + 33: return "LVM_CREATEDRAGIMAGE";
9b64e798 3986 case 0x1000 + 34: return "LVM_GETVIEWRECT";
42e69d6b
VZ
3987 case 0x1000 + 35: return "LVM_GETTEXTCOLOR";
3988 case 0x1000 + 36: return "LVM_SETTEXTCOLOR";
3989 case 0x1000 + 37: return "LVM_GETTEXTBKCOLOR";
3990 case 0x1000 + 38: return "LVM_SETTEXTBKCOLOR";
3991 case 0x1000 + 39: return "LVM_GETTOPINDEX";
3992 case 0x1000 + 40: return "LVM_GETCOUNTPERPAGE";
3993 case 0x1000 + 41: return "LVM_GETORIGIN";
3994 case 0x1000 + 42: return "LVM_UPDATE";
3995 case 0x1000 + 43: return "LVM_SETITEMSTATE";
3996 case 0x1000 + 44: return "LVM_GETITEMSTATE";
3997 case 0x1000 + 45: return "LVM_GETITEMTEXTA";
3998 case 0x1000 + 115: return "LVM_GETITEMTEXTW";
3999 case 0x1000 + 46: return "LVM_SETITEMTEXTA";
4000 case 0x1000 + 116: return "LVM_SETITEMTEXTW";
9b64e798 4001 case 0x1000 + 47: return "LVM_SETITEMCOUNT";
42e69d6b
VZ
4002 case 0x1000 + 48: return "LVM_SORTITEMS";
4003 case 0x1000 + 49: return "LVM_SETITEMPOSITION32";
9b64e798 4004 case 0x1000 + 50: return "LVM_GETSELECTEDCOUNT";
42e69d6b
VZ
4005 case 0x1000 + 51: return "LVM_GETITEMSPACING";
4006 case 0x1000 + 52: return "LVM_GETISEARCHSTRINGA";
4007 case 0x1000 + 117: return "LVM_GETISEARCHSTRINGW";
4008 case 0x1000 + 53: return "LVM_SETICONSPACING";
4009 case 0x1000 + 54: return "LVM_SETEXTENDEDLISTVIEWSTYLE";
4010 case 0x1000 + 55: return "LVM_GETEXTENDEDLISTVIEWSTYLE";
9b64e798
VZ
4011 case 0x1000 + 56: return "LVM_GETSUBITEMRECT";
4012 case 0x1000 + 57: return "LVM_SUBITEMHITTEST";
42e69d6b
VZ
4013 case 0x1000 + 58: return "LVM_SETCOLUMNORDERARRAY";
4014 case 0x1000 + 59: return "LVM_GETCOLUMNORDERARRAY";
4015 case 0x1000 + 60: return "LVM_SETHOTITEM";
4016 case 0x1000 + 61: return "LVM_GETHOTITEM";
4017 case 0x1000 + 62: return "LVM_SETHOTCURSOR";
4018 case 0x1000 + 63: return "LVM_GETHOTCURSOR";
9b64e798 4019 case 0x1000 + 64: return "LVM_APPROXIMATEVIEWRECT";
42e69d6b 4020 case 0x1000 + 65: return "LVM_SETWORKAREA";
c085e333 4021
2d0a075d 4022 // tree view
42e69d6b
VZ
4023 case 0x1100 + 0: return "TVM_INSERTITEMA";
4024 case 0x1100 + 50: return "TVM_INSERTITEMW";
4025 case 0x1100 + 1: return "TVM_DELETEITEM";
4026 case 0x1100 + 2: return "TVM_EXPAND";
9b64e798
VZ
4027 case 0x1100 + 4: return "TVM_GETITEMRECT";
4028 case 0x1100 + 5: return "TVM_GETCOUNT";
4029 case 0x1100 + 6: return "TVM_GETINDENT";
4030 case 0x1100 + 7: return "TVM_SETINDENT";
4031 case 0x1100 + 8: return "TVM_GETIMAGELIST";
4032 case 0x1100 + 9: return "TVM_SETIMAGELIST";
42e69d6b
VZ
4033 case 0x1100 + 10: return "TVM_GETNEXTITEM";
4034 case 0x1100 + 11: return "TVM_SELECTITEM";
4035 case 0x1100 + 12: return "TVM_GETITEMA";
4036 case 0x1100 + 62: return "TVM_GETITEMW";
4037 case 0x1100 + 13: return "TVM_SETITEMA";
4038 case 0x1100 + 63: return "TVM_SETITEMW";
4039 case 0x1100 + 14: return "TVM_EDITLABELA";
4040 case 0x1100 + 65: return "TVM_EDITLABELW";
4041 case 0x1100 + 15: return "TVM_GETEDITCONTROL";
9b64e798
VZ
4042 case 0x1100 + 16: return "TVM_GETVISIBLECOUNT";
4043 case 0x1100 + 17: return "TVM_HITTEST";
42e69d6b
VZ
4044 case 0x1100 + 18: return "TVM_CREATEDRAGIMAGE";
4045 case 0x1100 + 19: return "TVM_SORTCHILDREN";
4046 case 0x1100 + 20: return "TVM_ENSUREVISIBLE";
4047 case 0x1100 + 21: return "TVM_SORTCHILDRENCB";
4048 case 0x1100 + 22: return "TVM_ENDEDITLABELNOW";
4049 case 0x1100 + 23: return "TVM_GETISEARCHSTRINGA";
4050 case 0x1100 + 64: return "TVM_GETISEARCHSTRINGW";
4051 case 0x1100 + 24: return "TVM_SETTOOLTIPS";
4052 case 0x1100 + 25: return "TVM_GETTOOLTIPS";
c085e333 4053
2d0a075d 4054 // header
9b64e798 4055 case 0x1200 + 0: return "HDM_GETITEMCOUNT";
42e69d6b
VZ
4056 case 0x1200 + 1: return "HDM_INSERTITEMA";
4057 case 0x1200 + 10: return "HDM_INSERTITEMW";
4058 case 0x1200 + 2: return "HDM_DELETEITEM";
4059 case 0x1200 + 3: return "HDM_GETITEMA";
4060 case 0x1200 + 11: return "HDM_GETITEMW";
4061 case 0x1200 + 4: return "HDM_SETITEMA";
4062 case 0x1200 + 12: return "HDM_SETITEMW";
9b64e798
VZ
4063 case 0x1200 + 5: return "HDM_LAYOUT";
4064 case 0x1200 + 6: return "HDM_HITTEST";
4065 case 0x1200 + 7: return "HDM_GETITEMRECT";
4066 case 0x1200 + 8: return "HDM_SETIMAGELIST";
4067 case 0x1200 + 9: return "HDM_GETIMAGELIST";
42e69d6b
VZ
4068 case 0x1200 + 15: return "HDM_ORDERTOINDEX";
4069 case 0x1200 + 16: return "HDM_CREATEDRAGIMAGE";
4070 case 0x1200 + 17: return "HDM_GETORDERARRAY";
4071 case 0x1200 + 18: return "HDM_SETORDERARRAY";
4072 case 0x1200 + 19: return "HDM_SETHOTDIVIDER";
c085e333 4073
2d0a075d 4074 // tab control
9b64e798
VZ
4075 case 0x1300 + 2: return "TCM_GETIMAGELIST";
4076 case 0x1300 + 3: return "TCM_SETIMAGELIST";
4077 case 0x1300 + 4: return "TCM_GETITEMCOUNT";
42e69d6b
VZ
4078 case 0x1300 + 5: return "TCM_GETITEMA";
4079 case 0x1300 + 60: return "TCM_GETITEMW";
4080 case 0x1300 + 6: return "TCM_SETITEMA";
4081 case 0x1300 + 61: return "TCM_SETITEMW";
4082 case 0x1300 + 7: return "TCM_INSERTITEMA";
4083 case 0x1300 + 62: return "TCM_INSERTITEMW";
4084 case 0x1300 + 8: return "TCM_DELETEITEM";
4085 case 0x1300 + 9: return "TCM_DELETEALLITEMS";
9b64e798 4086 case 0x1300 + 10: return "TCM_GETITEMRECT";
42e69d6b
VZ
4087 case 0x1300 + 11: return "TCM_GETCURSEL";
4088 case 0x1300 + 12: return "TCM_SETCURSEL";
9b64e798 4089 case 0x1300 + 13: return "TCM_HITTEST";
42e69d6b 4090 case 0x1300 + 14: return "TCM_SETITEMEXTRA";
9b64e798 4091 case 0x1300 + 40: return "TCM_ADJUSTRECT";
42e69d6b
VZ
4092 case 0x1300 + 41: return "TCM_SETITEMSIZE";
4093 case 0x1300 + 42: return "TCM_REMOVEIMAGE";
4094 case 0x1300 + 43: return "TCM_SETPADDING";
9b64e798 4095 case 0x1300 + 44: return "TCM_GETROWCOUNT";
42e69d6b
VZ
4096 case 0x1300 + 45: return "TCM_GETTOOLTIPS";
4097 case 0x1300 + 46: return "TCM_SETTOOLTIPS";
4098 case 0x1300 + 47: return "TCM_GETCURFOCUS";
4099 case 0x1300 + 48: return "TCM_SETCURFOCUS";
4100 case 0x1300 + 49: return "TCM_SETMINTABWIDTH";
4101 case 0x1300 + 50: return "TCM_DESELECTALL";
c085e333 4102
2d0a075d 4103 // toolbar
42e69d6b
VZ
4104 case WM_USER+1: return "TB_ENABLEBUTTON";
4105 case WM_USER+2: return "TB_CHECKBUTTON";
4106 case WM_USER+3: return "TB_PRESSBUTTON";
4107 case WM_USER+4: return "TB_HIDEBUTTON";
4108 case WM_USER+5: return "TB_INDETERMINATE";
4109 case WM_USER+9: return "TB_ISBUTTONENABLED";
4110 case WM_USER+10: return "TB_ISBUTTONCHECKED";
4111 case WM_USER+11: return "TB_ISBUTTONPRESSED";
4112 case WM_USER+12: return "TB_ISBUTTONHIDDEN";
4113 case WM_USER+13: return "TB_ISBUTTONINDETERMINATE";
4114 case WM_USER+17: return "TB_SETSTATE";
4115 case WM_USER+18: return "TB_GETSTATE";
4116 case WM_USER+19: return "TB_ADDBITMAP";
4117 case WM_USER+20: return "TB_ADDBUTTONS";
4118 case WM_USER+21: return "TB_INSERTBUTTON";
4119 case WM_USER+22: return "TB_DELETEBUTTON";
4120 case WM_USER+23: return "TB_GETBUTTON";
9b64e798 4121 case WM_USER+24: return "TB_BUTTONCOUNT";
42e69d6b
VZ
4122 case WM_USER+25: return "TB_COMMANDTOINDEX";
4123 case WM_USER+26: return "TB_SAVERESTOREA";
4124 case WM_USER+76: return "TB_SAVERESTOREW";
4125 case WM_USER+27: return "TB_CUSTOMIZE";
4126 case WM_USER+28: return "TB_ADDSTRINGA";
4127 case WM_USER+77: return "TB_ADDSTRINGW";
9b64e798 4128 case WM_USER+29: return "TB_GETITEMRECT";
42e69d6b
VZ
4129 case WM_USER+30: return "TB_BUTTONSTRUCTSIZE";
4130 case WM_USER+31: return "TB_SETBUTTONSIZE";
4131 case WM_USER+32: return "TB_SETBITMAPSIZE";
4132 case WM_USER+33: return "TB_AUTOSIZE";
4133 case WM_USER+35: return "TB_GETTOOLTIPS";
4134 case WM_USER+36: return "TB_SETTOOLTIPS";
9b64e798 4135 case WM_USER+37: return "TB_SETPARENT";
42e69d6b
VZ
4136 case WM_USER+39: return "TB_SETROWS";
4137 case WM_USER+40: return "TB_GETROWS";
4138 case WM_USER+42: return "TB_SETCMDID";
4139 case WM_USER+43: return "TB_CHANGEBITMAP";
4140 case WM_USER+44: return "TB_GETBITMAP";
4141 case WM_USER+45: return "TB_GETBUTTONTEXTA";
4142 case WM_USER+75: return "TB_GETBUTTONTEXTW";
4143 case WM_USER+46: return "TB_REPLACEBITMAP";
9b64e798
VZ
4144 case WM_USER+47: return "TB_SETINDENT";
4145 case WM_USER+48: return "TB_SETIMAGELIST";
4146 case WM_USER+49: return "TB_GETIMAGELIST";
42e69d6b 4147 case WM_USER+50: return "TB_LOADIMAGES";
9b64e798
VZ
4148 case WM_USER+51: return "TB_GETRECT";
4149 case WM_USER+52: return "TB_SETHOTIMAGELIST";
4150 case WM_USER+53: return "TB_GETHOTIMAGELIST";
4151 case WM_USER+54: return "TB_SETDISABLEDIMAGELIST";
4152 case WM_USER+55: return "TB_GETDISABLEDIMAGELIST";
42e69d6b
VZ
4153 case WM_USER+56: return "TB_SETSTYLE";
4154 case WM_USER+57: return "TB_GETSTYLE";
4155 case WM_USER+58: return "TB_GETBUTTONSIZE";
4156 case WM_USER+59: return "TB_SETBUTTONWIDTH";
4157 case WM_USER+60: return "TB_SETMAXTEXTROWS";
4158 case WM_USER+61: return "TB_GETTEXTROWS";
4159 case WM_USER+41: return "TB_GETBITMAPFLAGS";
c085e333 4160
a02eb1d2 4161#endif //WIN32
c085e333 4162
42e69d6b
VZ
4163 default:
4164 static char s_szBuf[128];
4165 sprintf(s_szBuf, "<unknown message = %d>", message);
4166 return s_szBuf;
4167 }
47cbd6da 4168}
ea57084d 4169#endif //__WXDEBUG__