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