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