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