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