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