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