]> git.saurik.com Git - wxWidgets.git/blob - src/msw/window.cpp
a9f4e8312e3e79235a3d16a45b5c6ffc368fe3f9
[wxWidgets.git] / src / msw / window.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/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
9 // Licence: wxWindows licence
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 "wx/msw/wrapwin.h"
33 #include "wx/window.h"
34 #include "wx/accel.h"
35 #include "wx/setup.h"
36 #include "wx/menu.h"
37 #include "wx/dc.h"
38 #include "wx/dcclient.h"
39 #include "wx/dcmemory.h"
40 #include "wx/utils.h"
41 #include "wx/app.h"
42 #include "wx/layout.h"
43 #include "wx/dialog.h"
44 #include "wx/frame.h"
45 #include "wx/listbox.h"
46 #include "wx/button.h"
47 #include "wx/msgdlg.h"
48 #include "wx/settings.h"
49 #include "wx/statbox.h"
50 #endif
51
52 #if wxUSE_OWNER_DRAWN
53 #include "wx/ownerdrw.h"
54 #endif
55
56 #if wxUSE_DRAG_AND_DROP
57 #include "wx/dnd.h"
58 #endif
59
60 #if wxUSE_ACCESSIBILITY
61 #include "wx/access.h"
62 #include <ole2.h>
63 #include <oleacc.h>
64 #ifndef WM_GETOBJECT
65 #define WM_GETOBJECT 0x003D
66 #endif
67 #ifndef OBJID_CLIENT
68 #define OBJID_CLIENT 0xFFFFFFFC
69 #endif
70 #endif
71
72 #include "wx/menuitem.h"
73 #include "wx/log.h"
74
75 #include "wx/msw/private.h"
76
77 #if wxUSE_TOOLTIPS
78 #include "wx/tooltip.h"
79 #endif
80
81 #if wxUSE_CARET
82 #include "wx/caret.h"
83 #endif // wxUSE_CARET
84
85 #if wxUSE_SPINCTRL
86 #include "wx/spinctrl.h"
87 #endif // wxUSE_SPINCTRL
88
89 #include "wx/intl.h"
90 #include "wx/log.h"
91
92 #include "wx/textctrl.h"
93 #include "wx/notebook.h"
94
95 #include <string.h>
96
97 #if (!defined(__GNUWIN32_OLD__) && !defined(__WXMICROWIN__) && !defined(__WXWINCE__)) || defined(__CYGWIN10__)
98 #include <shellapi.h>
99 #include <mmsystem.h>
100 #endif
101
102 #ifdef __WIN32__
103 #include <windowsx.h>
104 #endif
105
106 #if (!defined(__GNUWIN32_OLD__) && !defined(__WXMICROWIN__) && !defined(__WXWINCE__)) || defined(__CYGWIN10__)
107 #ifdef __WIN95__
108 #include <commctrl.h>
109 #endif
110 #elif !defined(__WXMICROWIN__) && !defined(__WXWINCE__) // broken compiler
111 #include "wx/msw/gnuwin32/extra.h"
112 #endif
113
114 #if defined(__GNUG__)
115 #include "wx/msw/missing.h"
116 #endif
117
118 #if defined(__WXWINCE__)
119 #include "wx/msw/wince/missing.h"
120 #endif
121
122 // ----------------------------------------------------------------------------
123 // standard constants not available with all compilers/headers
124 // ----------------------------------------------------------------------------
125
126 // This didn't appear in mingw until 2.95.2
127 #ifndef SIF_TRACKPOS
128 #define SIF_TRACKPOS 16
129 #endif
130
131 #if wxUSE_MOUSEWHEEL
132 #ifndef WM_MOUSEWHEEL
133 #define WM_MOUSEWHEEL 0x020A
134 #endif
135 #ifndef WHEEL_DELTA
136 #define WHEEL_DELTA 120
137 #endif
138 #ifndef SPI_GETWHEELSCROLLLINES
139 #define SPI_GETWHEELSCROLLLINES 104
140 #endif
141 #endif // wxUSE_MOUSEWHEEL
142
143 #ifndef VK_OEM_1
144 #define VK_OEM_1 0xBA
145 #define VK_OEM_2 0xBF
146 #define VK_OEM_3 0xC0
147 #define VK_OEM_4 0xDB
148 #define VK_OEM_5 0xDC
149 #define VK_OEM_6 0xDD
150 #define VK_OEM_7 0xDE
151 #endif
152
153 #ifndef VK_OEM_COMMA
154 #define VK_OEM_PLUS 0xBB
155 #define VK_OEM_COMMA 0xBC
156 #define VK_OEM_MINUS 0xBD
157 #define VK_OEM_PERIOD 0xBE
158 #endif
159
160 // ---------------------------------------------------------------------------
161 // global variables
162 // ---------------------------------------------------------------------------
163
164 // the last Windows message we got (FIXME-MT)
165 extern MSG s_currentMsg;
166
167 #if wxUSE_MENUS_NATIVE
168 wxMenu *wxCurrentPopupMenu = NULL;
169 #endif // wxUSE_MENUS_NATIVE
170
171 extern const wxChar *wxCanvasClassName;
172
173 // true if we had already created the std colour map, used by
174 // wxGetStdColourMap() and wxWindow::OnSysColourChanged() (FIXME-MT)
175 static bool gs_hasStdCmap = FALSE;
176
177 // ---------------------------------------------------------------------------
178 // private functions
179 // ---------------------------------------------------------------------------
180
181 // the window proc for all our windows
182 LRESULT WXDLLEXPORT APIENTRY _EXPORT wxWndProc(HWND hWnd, UINT message,
183 WPARAM wParam, LPARAM lParam);
184
185
186 #ifdef __WXDEBUG__
187 const char *wxGetMessageName(int message);
188 #endif //__WXDEBUG__
189
190 void wxRemoveHandleAssociation(wxWindowMSW *win);
191 extern void wxAssociateWinWithHandle(HWND hWnd, wxWindowMSW *win);
192 wxWindow *wxFindWinFromHandle(WXHWND hWnd);
193
194 // this magical function is used to translate VK_APPS key presses to right
195 // mouse clicks
196 static void TranslateKbdEventToMouse(wxWindowMSW *win,
197 int *x, int *y, WPARAM *flags);
198
199 // get the text metrics for the current font
200 static TEXTMETRIC wxGetTextMetrics(const wxWindowMSW *win);
201
202 // find the window for the mouse event at the specified position
203 static wxWindowMSW *FindWindowForMouseEvent(wxWindowMSW *win, int *x, int *y); //TW:REQ:Univ
204
205 // wrapper around BringWindowToTop() API
206 static inline void wxBringWindowToTop(HWND hwnd)
207 {
208 #ifdef __WXMICROWIN__
209 // It seems that MicroWindows brings the _parent_ of the window to the top,
210 // which can be the wrong one.
211
212 // activate (set focus to) specified window
213 ::SetFocus(hwnd);
214 #endif
215
216 // raise top level parent to top of z order
217 if (!::SetWindowPos(hwnd, HWND_TOP, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE))
218 {
219 wxLogLastError(_T("SetWindowPos"));
220 }
221 }
222
223 // ---------------------------------------------------------------------------
224 // event tables
225 // ---------------------------------------------------------------------------
226
227 // in wxUniv/MSW this class is abstract because it doesn't have DoPopupMenu()
228 // method
229 #ifdef __WXUNIVERSAL__
230 IMPLEMENT_ABSTRACT_CLASS(wxWindowMSW, wxWindowBase)
231 #else // __WXMSW__
232 #if wxUSE_EXTENDED_RTTI
233 IMPLEMENT_DYNAMIC_CLASS_XTI(wxWindow, wxWindowBase,"wx/window.h")
234
235 WX_BEGIN_PROPERTIES_TABLE(wxWindow)
236 WX_PROPERTY( Parent,wxWindow*, NULL, GetParent, )
237 WX_PROPERTY( Id,wxWindowID, SetId, GetId, -1 )
238 WX_PROPERTY( Title,wxString, SetTitle, GetTitle, wxT("") )
239 WX_PROPERTY( Label,wxString, SetLabel, GetLabel, wxT("") )
240 WX_PROPERTY( Position,wxPoint, NULL , GetPosition, wxDefaultPosition )
241 WX_PROPERTY( Size,wxSize, SetSize, GetSize, wxDefaultSize )
242 WX_END_PROPERTIES_TABLE()
243
244 WX_BEGIN_HANDLERS_TABLE(wxWindow)
245 WX_END_HANDLERS_TABLE()
246
247 WX_CONSTRUCTOR_DUMMY(wxWindow)
248 #else
249 IMPLEMENT_DYNAMIC_CLASS(wxWindow, wxWindowBase)
250 #endif
251 #endif // __WXUNIVERSAL__/__WXMSW__
252
253 BEGIN_EVENT_TABLE(wxWindowMSW, wxWindowBase)
254 EVT_ERASE_BACKGROUND(wxWindowMSW::OnEraseBackground)
255 EVT_SYS_COLOUR_CHANGED(wxWindowMSW::OnSysColourChanged)
256 EVT_INIT_DIALOG(wxWindowMSW::OnInitDialog)
257 END_EVENT_TABLE()
258
259 // ===========================================================================
260 // implementation
261 // ===========================================================================
262
263 // ---------------------------------------------------------------------------
264 // wxWindow utility functions
265 // ---------------------------------------------------------------------------
266
267 // Find an item given the MS Windows id
268 wxWindow *wxWindowMSW::FindItem(long id) const
269 {
270 #if wxUSE_CONTROLS
271 wxControl *item = wxDynamicCastThis(wxControl);
272 if ( item )
273 {
274 // is it we or one of our "internal" children?
275 if ( item->GetId() == id
276 #ifndef __WXUNIVERSAL__
277 || (item->GetSubcontrols().Index(id) != wxNOT_FOUND)
278 #endif // __WXUNIVERSAL__
279 )
280 {
281 return item;
282 }
283 }
284 #endif // wxUSE_CONTROLS
285
286 wxWindowList::compatibility_iterator current = GetChildren().GetFirst();
287 while (current)
288 {
289 wxWindow *childWin = current->GetData();
290
291 wxWindow *wnd = childWin->FindItem(id);
292 if ( wnd )
293 return wnd;
294
295 current = current->GetNext();
296 }
297
298 return NULL;
299 }
300
301 // Find an item given the MS Windows handle
302 wxWindow *wxWindowMSW::FindItemByHWND(WXHWND hWnd, bool controlOnly) const
303 {
304 wxWindowList::compatibility_iterator current = GetChildren().GetFirst();
305 while (current)
306 {
307 wxWindow *parent = current->GetData();
308
309 // Do a recursive search.
310 wxWindow *wnd = parent->FindItemByHWND(hWnd);
311 if ( wnd )
312 return wnd;
313
314 if ( !controlOnly
315 #if wxUSE_CONTROLS
316 || parent->IsKindOf(CLASSINFO(wxControl))
317 #endif // wxUSE_CONTROLS
318 )
319 {
320 wxWindow *item = current->GetData();
321 if ( item->GetHWND() == hWnd )
322 return item;
323 else
324 {
325 if ( item->ContainsHWND(hWnd) )
326 return item;
327 }
328 }
329
330 current = current->GetNext();
331 }
332 return NULL;
333 }
334
335 // Default command handler
336 bool wxWindowMSW::MSWCommand(WXUINT WXUNUSED(param), WXWORD WXUNUSED(id))
337 {
338 return FALSE;
339 }
340
341 // ----------------------------------------------------------------------------
342 // constructors and such
343 // ----------------------------------------------------------------------------
344
345 void wxWindowMSW::Init()
346 {
347 // generic
348 InitBase();
349
350 // MSW specific
351 m_isBeingDeleted = FALSE;
352 m_oldWndProc = NULL;
353 m_mouseInWindow = FALSE;
354 m_lastKeydownProcessed = FALSE;
355
356 m_childrenDisabled = NULL;
357
358 // wxWnd
359 m_hMenu = 0;
360
361 m_hWnd = 0;
362
363 m_xThumbSize = 0;
364 m_yThumbSize = 0;
365
366 // as all windows are created with WS_VISIBLE style...
367 m_isShown = TRUE;
368
369 #if wxUSE_MOUSEEVENT_HACK
370 m_lastMouseX =
371 m_lastMouseY = -1;
372 m_lastMouseEvent = -1;
373 #endif // wxUSE_MOUSEEVENT_HACK
374 }
375
376 // Destructor
377 wxWindowMSW::~wxWindowMSW()
378 {
379 m_isBeingDeleted = TRUE;
380
381 #ifndef __WXUNIVERSAL__
382 // VS: make sure there's no wxFrame with last focus set to us:
383 for ( wxWindow *win = GetParent(); win; win = win->GetParent() )
384 {
385 wxTopLevelWindow *frame = wxDynamicCast(win, wxTopLevelWindow);
386 if ( frame )
387 {
388 if ( frame->GetLastFocus() == this )
389 {
390 frame->SetLastFocus(NULL);
391 }
392 break;
393 }
394 }
395 #endif // __WXUNIVERSAL__
396
397 // VS: destroy children first and _then_ detach *this from its parent.
398 // If we'd do it the other way around, children wouldn't be able
399 // find their parent frame (see above).
400 DestroyChildren();
401
402 if ( m_parent )
403 m_parent->RemoveChild(this);
404
405 if ( m_hWnd )
406 {
407 // VZ: test temp removed to understand what really happens here
408 //if (::IsWindow(GetHwnd()))
409 {
410 if ( !::DestroyWindow(GetHwnd()) )
411 wxLogLastError(wxT("DestroyWindow"));
412 }
413
414 // remove hWnd <-> wxWindow association
415 wxRemoveHandleAssociation(this);
416 }
417
418 delete m_childrenDisabled;
419 }
420
421 // real construction (Init() must have been called before!)
422 bool wxWindowMSW::Create(wxWindow *parent,
423 wxWindowID id,
424 const wxPoint& pos,
425 const wxSize& size,
426 long style,
427 const wxString& name)
428 {
429 wxCHECK_MSG( parent, FALSE, wxT("can't create wxWindow without parent") );
430
431 if ( !CreateBase(parent, id, pos, size, style, wxDefaultValidator, name) )
432 return FALSE;
433
434 parent->AddChild(this);
435
436 WXDWORD exstyle;
437 DWORD msflags = MSWGetCreateWindowFlags(&exstyle);
438
439 #ifdef __WXUNIVERSAL__
440 // no borders, we draw them ourselves
441 exstyle &= ~(WS_EX_DLGMODALFRAME |
442 WS_EX_STATICEDGE |
443 WS_EX_CLIENTEDGE |
444 WS_EX_WINDOWEDGE);
445 msflags &= ~WS_BORDER;
446 #endif // wxUniversal
447
448 // all windows are created visible by default except popup ones (which are
449 // like the wxTopLevelWindows in this aspect)
450 if ( style & wxPOPUP_WINDOW )
451 {
452 msflags &= ~WS_VISIBLE;
453 m_isShown = FALSE;
454 }
455 else
456 {
457 msflags |= WS_VISIBLE;
458 }
459
460 return MSWCreate(wxCanvasClassName, NULL, pos, size, msflags, exstyle);
461 }
462
463 // ---------------------------------------------------------------------------
464 // basic operations
465 // ---------------------------------------------------------------------------
466
467 void wxWindowMSW::SetFocus()
468 {
469 HWND hWnd = GetHwnd();
470 wxCHECK_RET( hWnd, _T("can't set focus to invalid window") );
471
472 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
473 ::SetLastError(0);
474 #endif
475
476 if ( !::SetFocus(hWnd) )
477 {
478 #if defined(__WXDEBUG__) && !defined(__WXMICROWIN__)
479 // was there really an error?
480 DWORD dwRes = ::GetLastError();
481 if ( dwRes )
482 {
483 HWND hwndFocus = ::GetFocus();
484 if ( hwndFocus != hWnd )
485 {
486 wxLogApiError(_T("SetFocus"), dwRes);
487 }
488 }
489 #endif // Debug
490 }
491 }
492
493 void wxWindowMSW::SetFocusFromKbd()
494 {
495 // when the focus is given to the control with DLGC_HASSETSEL style from
496 // keyboard its contents should be entirely selected: this is what
497 // ::IsDialogMessage() does and so we should do it as well to provide the
498 // same LNF as the native programs
499 if ( ::SendMessage(GetHwnd(), WM_GETDLGCODE, 0, 0) & DLGC_HASSETSEL )
500 {
501 ::SendMessage(GetHwnd(), EM_SETSEL, 0, -1);
502 }
503
504 // do this after (maybe) setting the selection as like this when
505 // wxEVT_SET_FOCUS handler is called, the selection would have been already
506 // set correctly -- this may be important
507 wxWindowBase::SetFocusFromKbd();
508 }
509
510 // Get the window with the focus
511 wxWindow *wxWindowBase::FindFocus()
512 {
513 HWND hWnd = ::GetFocus();
514 if ( hWnd )
515 {
516 return wxGetWindowFromHWND((WXHWND)hWnd);
517 }
518
519 return NULL;
520 }
521
522 bool wxWindowMSW::Enable(bool enable)
523 {
524 if ( !wxWindowBase::Enable(enable) )
525 return FALSE;
526
527 HWND hWnd = GetHwnd();
528 if ( hWnd )
529 ::EnableWindow(hWnd, (BOOL)enable);
530
531 // the logic below doesn't apply to the top level windows -- otherwise
532 // showing a modal dialog would result in total greying out (and ungreying
533 // out later) of everything which would be really ugly
534 if ( IsTopLevel() )
535 return TRUE;
536
537 // when the parent is disabled, all of its children should be disabled as
538 // well but when it is enabled back, only those of the children which
539 // hadn't been already disabled in the beginning should be enabled again,
540 // so we have to keep the list of those children
541 for ( wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
542 node;
543 node = node->GetNext() )
544 {
545 wxWindow *child = node->GetData();
546 if ( child->IsTopLevel() )
547 {
548 // the logic below doesn't apply to top level children
549 continue;
550 }
551
552 if ( enable )
553 {
554 // enable the child back unless it had been disabled before us
555 if ( !m_childrenDisabled || !m_childrenDisabled->Find(child) )
556 child->Enable();
557 }
558 else // we're being disabled
559 {
560 if ( child->IsEnabled() )
561 {
562 // disable it as children shouldn't stay enabled while the
563 // parent is not
564 child->Disable();
565 }
566 else // child already disabled, remember it
567 {
568 // have we created the list of disabled children already?
569 if ( !m_childrenDisabled )
570 m_childrenDisabled = new wxWindowList;
571
572 m_childrenDisabled->Append(child);
573 }
574 }
575 }
576
577 if ( enable && m_childrenDisabled )
578 {
579 // we don't need this list any more, don't keep unused memory
580 delete m_childrenDisabled;
581 m_childrenDisabled = NULL;
582 }
583
584 return TRUE;
585 }
586
587 bool wxWindowMSW::Show(bool show)
588 {
589 if ( !wxWindowBase::Show(show) )
590 return FALSE;
591
592 HWND hWnd = GetHwnd();
593 int cshow = show ? SW_SHOW : SW_HIDE;
594 ::ShowWindow(hWnd, cshow);
595
596 if ( show && IsTopLevel() )
597 {
598 wxBringWindowToTop(hWnd);
599 }
600
601 return TRUE;
602 }
603
604 // Raise the window to the top of the Z order
605 void wxWindowMSW::Raise()
606 {
607 wxBringWindowToTop(GetHwnd());
608 }
609
610 // Lower the window to the bottom of the Z order
611 void wxWindowMSW::Lower()
612 {
613 ::SetWindowPos(GetHwnd(), HWND_BOTTOM, 0, 0, 0, 0,
614 SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE);
615 }
616
617 void wxWindowMSW::SetTitle( const wxString& title)
618 {
619 SetWindowText(GetHwnd(), title.c_str());
620 }
621
622 wxString wxWindowMSW::GetTitle() const
623 {
624 return wxGetWindowText(GetHWND());
625 }
626
627 void wxWindowMSW::DoCaptureMouse()
628 {
629 HWND hWnd = GetHwnd();
630 if ( hWnd )
631 {
632 ::SetCapture(hWnd);
633 }
634 }
635
636 void wxWindowMSW::DoReleaseMouse()
637 {
638 if ( !::ReleaseCapture() )
639 {
640 wxLogLastError(_T("ReleaseCapture"));
641 }
642 }
643
644 /* static */ wxWindow *wxWindowBase::GetCapture()
645 {
646 HWND hwnd = ::GetCapture();
647 return hwnd ? wxFindWinFromHandle((WXHWND)hwnd) : (wxWindow *)NULL;
648 }
649
650 bool wxWindowMSW::SetFont(const wxFont& font)
651 {
652 if ( !wxWindowBase::SetFont(font) )
653 {
654 // nothing to do
655 return FALSE;
656 }
657
658 HWND hWnd = GetHwnd();
659 if ( hWnd != 0 )
660 {
661 WXHANDLE hFont = m_font.GetResourceHandle();
662
663 wxASSERT_MSG( hFont, wxT("should have valid font") );
664
665 ::SendMessage(hWnd, WM_SETFONT, (WPARAM)hFont, MAKELPARAM(TRUE, 0));
666 }
667
668 return TRUE;
669 }
670 bool wxWindowMSW::SetCursor(const wxCursor& cursor)
671 {
672 if ( !wxWindowBase::SetCursor(cursor) )
673 {
674 // no change
675 return FALSE;
676 }
677
678 if ( m_cursor.Ok() )
679 {
680 HWND hWnd = GetHwnd();
681
682 // Change the cursor NOW if we're within the correct window
683 POINT point;
684 ::GetCursorPos(&point);
685
686 RECT rect = wxGetWindowRect(hWnd);
687
688 if ( ::PtInRect(&rect, point) && !wxIsBusy() )
689 ::SetCursor(GetHcursorOf(m_cursor));
690 }
691
692 return TRUE;
693 }
694
695 void wxWindowMSW::WarpPointer (int x, int y)
696 {
697 ClientToScreen(&x, &y);
698
699 if ( !::SetCursorPos(x, y) )
700 {
701 wxLogLastError(_T("SetCursorPos"));
702 }
703 }
704
705 #if WXWIN_COMPATIBILITY
706 void wxWindowMSW::MSWDeviceToLogical (float *x, float *y) const
707 {
708 }
709 #endif // WXWIN_COMPATIBILITY
710
711 // ---------------------------------------------------------------------------
712 // scrolling stuff
713 // ---------------------------------------------------------------------------
714
715 // convert wxHORIZONTAL/wxVERTICAL to SB_HORZ/SB_VERT
716 static inline int wxDirToWinStyle(int orient)
717 {
718 return orient == wxHORIZONTAL ? SB_HORZ : SB_VERT;
719 }
720
721 #if WXWIN_COMPATIBILITY
722 void wxWindowMSW::SetScrollRange(int orient, int range, bool refresh)
723 {
724 int range1 = range;
725
726 // Try to adjust the range to cope with page size > 1
727 // - a Windows API quirk
728 int pageSize = GetScrollPage(orient);
729 if ( pageSize > 1 && range > 0)
730 {
731 range1 += (pageSize - 1);
732 }
733
734 WinStruct<SCROLLINFO> info;
735 info.nPage = pageSize; // Have to set this, or scrollbar goes awry
736 info.nMin = 0;
737 info.nMax = range1;
738 info.fMask = SIF_RANGE | SIF_PAGE;
739
740 HWND hWnd = GetHwnd();
741 if ( hWnd )
742 ::SetScrollInfo(hWnd, wxDirToWinStyle(orient), &info, refresh);
743 }
744
745 void wxWindowMSW::SetScrollPage(int orient, int page, bool refresh)
746 {
747 WinStruct<SCROLLINFO> info;
748 info.nPage = page;
749 info.fMask = SIF_PAGE;
750
751 HWND hWnd = GetHwnd();
752 if ( hWnd )
753 ::SetScrollInfo(hWnd, wxDirToWinStyle(orient), &info, refresh);
754 }
755
756 int wxWindowMSW::GetScrollPage(int orient) const
757 {
758 return orient == wxHORIZONTAL ? m_xThumbSize : m_yThumbSize;
759 }
760
761 #endif // WXWIN_COMPATIBILITY
762
763 inline int GetScrollPosition(HWND hWnd, int wOrient)
764 {
765 #ifdef __WXMICROWIN__
766 return ::GetScrollPosWX(hWnd, wOrient);
767 #else
768 SCROLLINFO scrollInfo;
769 scrollInfo.cbSize = sizeof(SCROLLINFO);
770 scrollInfo.fMask = SIF_POS;
771 if ( !::GetScrollInfo(hWnd,
772 wOrient,
773 &scrollInfo) )
774 {
775 wxLogLastError(_T("GetScrollInfo"));
776 }
777 return scrollInfo.nPos;
778 // return ::GetScrollPos(hWnd, wOrient);
779 #endif
780 }
781
782 int wxWindowMSW::GetScrollPos(int orient) const
783 {
784 HWND hWnd = GetHwnd();
785 wxCHECK_MSG( hWnd, 0, _T("no HWND in GetScrollPos") );
786
787 return GetScrollPosition(hWnd, orient == wxHORIZONTAL ? SB_HORZ : SB_VERT);
788 }
789
790 // This now returns the whole range, not just the number
791 // of positions that we can scroll.
792 int wxWindowMSW::GetScrollRange(int orient) const
793 {
794 int maxPos;
795 HWND hWnd = GetHwnd();
796 if ( !hWnd )
797 return 0;
798 #if 0
799 ::GetScrollRange(hWnd, orient == wxHORIZONTAL ? SB_HORZ : SB_VERT,
800 &minPos, &maxPos);
801 #endif
802 SCROLLINFO scrollInfo;
803 scrollInfo.fMask = SIF_RANGE;
804 if ( !::GetScrollInfo(hWnd,
805 orient == wxHORIZONTAL ? SB_HORZ : SB_VERT,
806 &scrollInfo) )
807 {
808 wxLogLastError(_T("GetScrollInfo"));
809 }
810 maxPos = scrollInfo.nMax;
811
812 // undo "range - 1" done in SetScrollbar()
813 return maxPos + 1;
814 }
815
816 int wxWindowMSW::GetScrollThumb(int orient) const
817 {
818 return orient == wxHORIZONTAL ? m_xThumbSize : m_yThumbSize;
819 }
820
821 void wxWindowMSW::SetScrollPos(int orient, int pos, bool refresh)
822 {
823 HWND hWnd = GetHwnd();
824 wxCHECK_RET( hWnd, _T("SetScrollPos: no HWND") );
825
826 WinStruct<SCROLLINFO> info;
827 info.nPage = 0;
828 info.nMin = 0;
829 info.nPos = pos;
830 info.fMask = SIF_POS;
831 if ( HasFlag(wxALWAYS_SHOW_SB) )
832 {
833 // disable scrollbar instead of removing it then
834 info.fMask |= SIF_DISABLENOSCROLL;
835 }
836
837 ::SetScrollInfo(hWnd, orient == wxHORIZONTAL ? SB_HORZ : SB_VERT,
838 &info, refresh);
839 }
840
841 // New function that will replace some of the above.
842 void wxWindowMSW::SetScrollbar(int orient,
843 int pos,
844 int pageSize,
845 int range,
846 bool refresh)
847 {
848 WinStruct<SCROLLINFO> info;
849 info.nPage = pageSize;
850 info.nMin = 0; // range is nMax - nMin + 1
851 info.nMax = range - 1; // as both nMax and nMax are inclusive
852 info.nPos = pos;
853 info.fMask = SIF_RANGE | SIF_PAGE | SIF_POS;
854 if ( HasFlag(wxALWAYS_SHOW_SB) )
855 {
856 // disable scrollbar instead of removing it then
857 info.fMask |= SIF_DISABLENOSCROLL;
858 }
859
860 HWND hWnd = GetHwnd();
861 if ( hWnd )
862 {
863 ::SetScrollInfo(hWnd, orient == wxHORIZONTAL ? SB_HORZ : SB_VERT,
864 &info, refresh);
865 }
866
867 *(orient == wxHORIZONTAL ? &m_xThumbSize : &m_yThumbSize) = pageSize;
868 }
869
870 void wxWindowMSW::ScrollWindow(int dx, int dy, const wxRect *prect)
871 {
872 RECT rect;
873 RECT *pr;
874 if ( prect )
875 {
876 rect.left = prect->x;
877 rect.top = prect->y;
878 rect.right = prect->x + prect->width;
879 rect.bottom = prect->y + prect->height;
880 pr = &rect;
881 }
882 else
883 {
884 pr = NULL;
885 }
886
887 #ifdef __WXWINCE__
888 // FIXME: is this the exact equivalent of the line below?
889 ::ScrollWindowEx(GetHwnd(), dx, dy, pr, pr, 0, 0, SW_ERASE|SW_INVALIDATE);
890 #else
891 ::ScrollWindow(GetHwnd(), dx, dy, pr, pr);
892 #endif
893 }
894
895 static bool ScrollVertically(HWND hwnd, int kind, int count)
896 {
897 int posStart = GetScrollPosition(hwnd, SB_VERT);
898
899 int pos = posStart;
900 for ( int n = 0; n < count; n++ )
901 {
902 ::SendMessage(hwnd, WM_VSCROLL, kind, 0);
903
904 int posNew = GetScrollPosition(hwnd, SB_VERT);
905 if ( posNew == pos )
906 {
907 // don't bother to continue, we're already at top/bottom
908 break;
909 }
910
911 pos = posNew;
912 }
913
914 return pos != posStart;
915 }
916
917 bool wxWindowMSW::ScrollLines(int lines)
918 {
919 bool down = lines > 0;
920
921 return ScrollVertically(GetHwnd(),
922 down ? SB_LINEDOWN : SB_LINEUP,
923 down ? lines : -lines);
924 }
925
926 bool wxWindowMSW::ScrollPages(int pages)
927 {
928 bool down = pages > 0;
929
930 return ScrollVertically(GetHwnd(),
931 down ? SB_PAGEDOWN : SB_PAGEUP,
932 down ? pages : -pages);
933 }
934
935 // ---------------------------------------------------------------------------
936 // subclassing
937 // ---------------------------------------------------------------------------
938
939 void wxWindowMSW::SubclassWin(WXHWND hWnd)
940 {
941 wxASSERT_MSG( !m_oldWndProc, wxT("subclassing window twice?") );
942
943 HWND hwnd = (HWND)hWnd;
944 wxCHECK_RET( ::IsWindow(hwnd), wxT("invalid HWND in SubclassWin") );
945
946 wxAssociateWinWithHandle(hwnd, this);
947
948 m_oldWndProc = (WXFARPROC)::GetWindowLong((HWND)hWnd, GWL_WNDPROC);
949
950 // we don't need to subclass the window of our own class (in the Windows
951 // sense of the word)
952 if ( !wxCheckWindowWndProc(hWnd, (WXFARPROC)wxWndProc) )
953 {
954 ::SetWindowLong(hwnd, GWL_WNDPROC, (LONG) wxWndProc);
955 }
956 else
957 {
958 // don't bother restoring it neither: this also makes it easy to
959 // implement IsOfStandardClass() method which returns TRUE for the
960 // standard controls and FALSE for the wxWindows own windows as it can
961 // simply check m_oldWndProc
962 m_oldWndProc = NULL;
963 }
964 }
965
966 void wxWindowMSW::UnsubclassWin()
967 {
968 wxRemoveHandleAssociation(this);
969
970 // Restore old Window proc
971 HWND hwnd = GetHwnd();
972 if ( hwnd )
973 {
974 m_hWnd = 0;
975
976 wxCHECK_RET( ::IsWindow(hwnd), wxT("invalid HWND in UnsubclassWin") );
977
978 if ( m_oldWndProc )
979 {
980 if ( !wxCheckWindowWndProc((WXHWND)hwnd, m_oldWndProc) )
981 {
982 ::SetWindowLong(hwnd, GWL_WNDPROC, (LONG) m_oldWndProc);
983 }
984
985 m_oldWndProc = NULL;
986 }
987 }
988 }
989
990 bool wxCheckWindowWndProc(WXHWND hWnd, WXFARPROC wndProc)
991 {
992 // Unicows note: the code below works, but only because WNDCLASS contains
993 // original window handler rather that the unicows fake one. This may not
994 // be on purpose, though; if it stops working with future versions of
995 // unicows.dll, we can override unicows hooks by setting
996 // Unicows_{Set,Get}WindowLong and Unicows_RegisterClass to our own
997 // versions that keep track of fake<->real wnd proc mapping.
998
999 // On WinCE (at least), the wndproc comparison doesn't work,
1000 // so have to use something like this.
1001 #ifdef __WXWINCE__
1002 extern const wxChar *wxCanvasClassName;
1003 extern const wxChar *wxCanvasClassNameNR;
1004 extern const wxChar *wxMDIFrameClassName;
1005 extern const wxChar *wxMDIFrameClassNameNoRedraw;
1006 extern const wxChar *wxMDIChildFrameClassName;
1007 extern const wxChar *wxMDIChildFrameClassNameNoRedraw;
1008 wxString str(wxGetWindowClass(hWnd));
1009 if (str == wxCanvasClassName ||
1010 str == wxCanvasClassNameNR ||
1011 str == wxMDIFrameClassName ||
1012 str == wxMDIFrameClassNameNoRedraw ||
1013 str == wxMDIChildFrameClassName ||
1014 str == wxMDIChildFrameClassNameNoRedraw ||
1015 str == _T("wxTLWHiddenParent"))
1016 return TRUE; // Effectively means don't subclass
1017 else
1018 return FALSE;
1019 #else
1020 WNDCLASS cls;
1021 if ( !::GetClassInfo(wxGetInstance(), wxGetWindowClass(hWnd), &cls) )
1022 {
1023 wxLogLastError(_T("GetClassInfo"));
1024
1025 return FALSE;
1026 }
1027
1028 return wndProc == (WXFARPROC)cls.lpfnWndProc;
1029 #endif
1030 }
1031
1032 // ----------------------------------------------------------------------------
1033 // Style handling
1034 // ----------------------------------------------------------------------------
1035
1036 void wxWindowMSW::SetWindowStyleFlag(long flags)
1037 {
1038 long flagsOld = GetWindowStyleFlag();
1039 if ( flags == flagsOld )
1040 return;
1041
1042 // update the internal variable
1043 wxWindowBase::SetWindowStyleFlag(flags);
1044
1045 // now update the Windows style as well if needed - and if the window had
1046 // been already created
1047 if ( !GetHwnd() )
1048 return;
1049
1050 WXDWORD exstyle, exstyleOld;
1051 long style = MSWGetStyle(flags, &exstyle),
1052 styleOld = MSWGetStyle(flagsOld, &exstyleOld);
1053
1054 if ( style != styleOld )
1055 {
1056 // some flags (e.g. WS_VISIBLE or WS_DISABLED) should not be changed by
1057 // this function so instead of simply setting the style to the new
1058 // value we clear the bits which were set in styleOld but are set in
1059 // the new one and set the ones which were not set before
1060 long styleReal = ::GetWindowLong(GetHwnd(), GWL_STYLE);
1061 styleReal &= ~styleOld;
1062 styleReal |= style;
1063
1064 ::SetWindowLong(GetHwnd(), GWL_STYLE, styleReal);
1065 }
1066
1067 // and the extended style
1068 if ( exstyle != exstyleOld )
1069 {
1070 long exstyleReal = ::GetWindowLong(GetHwnd(), GWL_EXSTYLE);
1071 exstyleReal &= ~exstyleOld;
1072 exstyleReal |= exstyle;
1073
1074 ::SetWindowLong(GetHwnd(), GWL_EXSTYLE, exstyleReal);
1075
1076 // we must call SetWindowPos() to flash the cached extended style and
1077 // also to make the change to wxSTAY_ON_TOP style take effect: just
1078 // setting the style simply doesn't work
1079 if ( !::SetWindowPos(GetHwnd(),
1080 exstyleReal & WS_EX_TOPMOST ? HWND_TOPMOST
1081 : HWND_NOTOPMOST,
1082 0, 0, 0, 0,
1083 SWP_NOMOVE | SWP_NOSIZE) )
1084 {
1085 wxLogLastError(_T("SetWindowPos"));
1086 }
1087 }
1088 }
1089
1090 WXDWORD wxWindowMSW::MSWGetStyle(long flags, WXDWORD *exstyle) const
1091 {
1092 // translate the style
1093 WXDWORD style = WS_CHILD | WS_VISIBLE;
1094
1095 if ( flags & wxCLIP_CHILDREN )
1096 style |= WS_CLIPCHILDREN;
1097
1098 if ( flags & wxCLIP_SIBLINGS )
1099 style |= WS_CLIPSIBLINGS;
1100
1101 if ( flags & wxVSCROLL )
1102 style |= WS_VSCROLL;
1103
1104 if ( flags & wxHSCROLL )
1105 style |= WS_HSCROLL;
1106
1107 const wxBorder border = GetBorder(flags);
1108
1109 // WS_BORDER is only required for wxBORDER_SIMPLE
1110 if ( border == wxBORDER_SIMPLE )
1111 style |= WS_BORDER;
1112
1113 // now deal with ext style if the caller wants it
1114 if ( exstyle )
1115 {
1116 *exstyle = 0;
1117
1118 #ifndef __WXWINCE__
1119 if ( flags & wxTRANSPARENT_WINDOW )
1120 *exstyle |= WS_EX_TRANSPARENT;
1121 #endif
1122
1123 switch ( border )
1124 {
1125 default:
1126 case wxBORDER_DEFAULT:
1127 wxFAIL_MSG( _T("unknown border style") );
1128 // fall through
1129
1130 case wxBORDER_NONE:
1131 case wxBORDER_SIMPLE:
1132 break;
1133
1134 case wxBORDER_STATIC:
1135 *exstyle |= WS_EX_STATICEDGE;
1136 break;
1137
1138 case wxBORDER_RAISED:
1139 *exstyle |= WS_EX_DLGMODALFRAME;
1140 break;
1141
1142 case wxBORDER_SUNKEN:
1143 *exstyle |= WS_EX_CLIENTEDGE;
1144 style &= ~WS_BORDER;
1145 break;
1146
1147 case wxBORDER_DOUBLE:
1148 *exstyle |= WS_EX_DLGMODALFRAME;
1149 break;
1150 }
1151
1152 // wxUniv doesn't use Windows dialog navigation functions at all
1153 #if !defined(__WXUNIVERSAL__) && !defined(__WXWINCE__)
1154 // to make the dialog navigation work with the nested panels we must
1155 // use this style (top level windows such as dialogs don't need it)
1156 if ( (flags & wxTAB_TRAVERSAL) && !IsTopLevel() )
1157 {
1158 *exstyle |= WS_EX_CONTROLPARENT;
1159 }
1160 #endif // __WXUNIVERSAL__
1161 }
1162
1163 return style;
1164 }
1165
1166 #if WXWIN_COMPATIBILITY
1167 // If nothing defined for this, try the parent.
1168 // E.g. we may be a button loaded from a resource, with no callback function
1169 // defined.
1170 void wxWindowMSW::OnCommand(wxWindow& win, wxCommandEvent& event)
1171 {
1172 if ( GetEventHandler()->ProcessEvent(event) )
1173 return;
1174 if ( m_parent )
1175 m_parent->GetEventHandler()->OnCommand(win, event);
1176 }
1177 #endif // WXWIN_COMPATIBILITY_2
1178
1179 #if WXWIN_COMPATIBILITY
1180 wxObject* wxWindowMSW::GetChild(int number) const
1181 {
1182 // Return a pointer to the Nth object in the Panel
1183 wxNode *node = GetChildren().First();
1184 int n = number;
1185 while (node && n--)
1186 node = node->Next();
1187 if ( node )
1188 {
1189 wxObject *obj = (wxObject *)node->Data();
1190 return(obj);
1191 }
1192 else
1193 return NULL;
1194 }
1195 #endif // WXWIN_COMPATIBILITY
1196
1197 // Setup background and foreground colours correctly
1198 void wxWindowMSW::SetupColours()
1199 {
1200 if ( GetParent() )
1201 SetBackgroundColour(GetParent()->GetBackgroundColour());
1202 }
1203
1204 bool wxWindowMSW::IsMouseInWindow() const
1205 {
1206 // get the mouse position
1207 POINT pt;
1208 ::GetCursorPos(&pt);
1209
1210 // find the window which currently has the cursor and go up the window
1211 // chain until we find this window - or exhaust it
1212 HWND hwnd = ::WindowFromPoint(pt);
1213 while ( hwnd && (hwnd != GetHwnd()) )
1214 hwnd = ::GetParent(hwnd);
1215
1216 return hwnd != NULL;
1217 }
1218
1219 void wxWindowMSW::OnInternalIdle()
1220 {
1221 // Check if we need to send a LEAVE event
1222 if ( m_mouseInWindow )
1223 {
1224 // note that we should generate the leave event whether the window has
1225 // or doesn't have mouse capture
1226 if ( !IsMouseInWindow() )
1227 {
1228 // Generate a LEAVE event
1229 m_mouseInWindow = FALSE;
1230
1231 // Unfortunately the mouse button and keyboard state may have
1232 // changed by the time the OnInternalIdle function is called, so 'state'
1233 // may be meaningless.
1234 int state = 0;
1235 if ( wxIsShiftDown() )
1236 state |= MK_SHIFT;
1237 if ( wxIsCtrlDown() )
1238 state |= MK_CONTROL;
1239 if ( GetKeyState( VK_LBUTTON ) )
1240 state |= MK_LBUTTON;
1241 if ( GetKeyState( VK_MBUTTON ) )
1242 state |= MK_MBUTTON;
1243 if ( GetKeyState( VK_RBUTTON ) )
1244 state |= MK_RBUTTON;
1245
1246 POINT pt;
1247 if ( !::GetCursorPos(&pt) )
1248 {
1249 wxLogLastError(_T("GetCursorPos"));
1250 }
1251
1252 // we need to have client coordinates here for symmetry with
1253 // wxEVT_ENTER_WINDOW
1254 RECT rect = wxGetWindowRect(GetHwnd());
1255 pt.x -= rect.left;
1256 pt.y -= rect.top;
1257
1258 wxMouseEvent event2(wxEVT_LEAVE_WINDOW);
1259 InitMouseEvent(event2, pt.x, pt.y, state);
1260
1261 (void)GetEventHandler()->ProcessEvent(event2);
1262 }
1263 }
1264
1265 if (wxUpdateUIEvent::CanUpdate(this))
1266 UpdateWindowUI(wxUPDATE_UI_FROMIDLE);
1267 }
1268
1269 // Set this window to be the child of 'parent'.
1270 bool wxWindowMSW::Reparent(wxWindowBase *parent)
1271 {
1272 if ( !wxWindowBase::Reparent(parent) )
1273 return FALSE;
1274
1275 HWND hWndChild = GetHwnd();
1276 HWND hWndParent = GetParent() ? GetWinHwnd(GetParent()) : (HWND)0;
1277
1278 ::SetParent(hWndChild, hWndParent);
1279
1280 return TRUE;
1281 }
1282
1283 void wxWindowMSW::Clear()
1284 {
1285 wxClientDC dc((wxWindow *)this);
1286 wxBrush brush(GetBackgroundColour(), wxSOLID);
1287 dc.SetBackground(brush);
1288 dc.Clear();
1289 }
1290
1291 static inline void SendSetRedraw(HWND hwnd, bool on)
1292 {
1293 #ifndef __WXMICROWIN__
1294 ::SendMessage(hwnd, WM_SETREDRAW, (WPARAM)on, 0);
1295 #endif
1296 }
1297
1298 void wxWindowMSW::Freeze()
1299 {
1300 SendSetRedraw(GetHwnd(), FALSE);
1301 }
1302
1303 void wxWindowMSW::Thaw()
1304 {
1305 SendSetRedraw(GetHwnd(), TRUE);
1306
1307 // we need to refresh everything or otherwise he invalidated area is not
1308 // repainted
1309 Refresh();
1310 }
1311
1312 void wxWindowMSW::Refresh(bool eraseBack, const wxRect *rect)
1313 {
1314 HWND hWnd = GetHwnd();
1315 if ( hWnd )
1316 {
1317 if ( rect )
1318 {
1319 RECT mswRect;
1320 mswRect.left = rect->x;
1321 mswRect.top = rect->y;
1322 mswRect.right = rect->x + rect->width;
1323 mswRect.bottom = rect->y + rect->height;
1324
1325 ::InvalidateRect(hWnd, &mswRect, eraseBack);
1326 }
1327 else
1328 ::InvalidateRect(hWnd, NULL, eraseBack);
1329 }
1330 }
1331
1332 void wxWindowMSW::Update()
1333 {
1334 if ( !::UpdateWindow(GetHwnd()) )
1335 {
1336 wxLogLastError(_T("UpdateWindow"));
1337 }
1338
1339 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
1340 // just calling UpdateWindow() is not enough, what we did in our WM_PAINT
1341 // handler needs to be really drawn right now
1342 (void)::GdiFlush();
1343 #endif // __WIN32__
1344 }
1345
1346 // ---------------------------------------------------------------------------
1347 // drag and drop
1348 // ---------------------------------------------------------------------------
1349
1350
1351 #if wxUSE_DRAG_AND_DROP
1352 void wxWindowMSW::SetDropTarget(wxDropTarget *pDropTarget)
1353 {
1354 if ( m_dropTarget != 0 ) {
1355 m_dropTarget->Revoke(m_hWnd);
1356 delete m_dropTarget;
1357 }
1358
1359 m_dropTarget = pDropTarget;
1360 if ( m_dropTarget != 0 )
1361 m_dropTarget->Register(m_hWnd);
1362 }
1363 #endif // wxUSE_DRAG_AND_DROP
1364
1365 // old style file-manager drag&drop support: we retain the old-style
1366 // DragAcceptFiles in parallel with SetDropTarget.
1367 void wxWindowMSW::DragAcceptFiles(bool accept)
1368 {
1369 #if !defined(__WXWINCE__)
1370 HWND hWnd = GetHwnd();
1371 if ( hWnd )
1372 ::DragAcceptFiles(hWnd, (BOOL)accept);
1373 #endif
1374 }
1375
1376 // ----------------------------------------------------------------------------
1377 // tooltips
1378 // ----------------------------------------------------------------------------
1379
1380 #if wxUSE_TOOLTIPS
1381
1382 void wxWindowMSW::DoSetToolTip(wxToolTip *tooltip)
1383 {
1384 wxWindowBase::DoSetToolTip(tooltip);
1385
1386 if ( m_tooltip )
1387 m_tooltip->SetWindow((wxWindow *)this);
1388 }
1389
1390 #endif // wxUSE_TOOLTIPS
1391
1392 // ---------------------------------------------------------------------------
1393 // moving and resizing
1394 // ---------------------------------------------------------------------------
1395
1396 // Get total size
1397 void wxWindowMSW::DoGetSize(int *x, int *y) const
1398 {
1399 RECT rect = wxGetWindowRect(GetHwnd());
1400
1401 if ( x )
1402 *x = rect.right - rect.left;
1403 if ( y )
1404 *y = rect.bottom - rect.top;
1405 }
1406
1407 // Get size *available for subwindows* i.e. excluding menu bar etc.
1408 void wxWindowMSW::DoGetClientSize(int *x, int *y) const
1409 {
1410 RECT rect = wxGetClientRect(GetHwnd());
1411
1412 if ( x )
1413 *x = rect.right;
1414 if ( y )
1415 *y = rect.bottom;
1416 }
1417
1418 void wxWindowMSW::DoGetPosition(int *x, int *y) const
1419 {
1420 RECT rect = wxGetWindowRect(GetHwnd());
1421
1422 POINT point;
1423 point.x = rect.left;
1424 point.y = rect.top;
1425
1426 // we do the adjustments with respect to the parent only for the "real"
1427 // children, not for the dialogs/frames
1428 if ( !IsTopLevel() )
1429 {
1430 HWND hParentWnd = 0;
1431 wxWindow *parent = GetParent();
1432 if ( parent )
1433 hParentWnd = GetWinHwnd(parent);
1434
1435 // Since we now have the absolute screen coords, if there's a parent we
1436 // must subtract its top left corner
1437 if ( hParentWnd )
1438 {
1439 ::ScreenToClient(hParentWnd, &point);
1440 }
1441
1442 if ( parent )
1443 {
1444 // We may be faking the client origin. So a window that's really at (0,
1445 // 30) may appear (to wxWin apps) to be at (0, 0).
1446 wxPoint pt(parent->GetClientAreaOrigin());
1447 point.x -= pt.x;
1448 point.y -= pt.y;
1449 }
1450 }
1451
1452 if ( x )
1453 *x = point.x;
1454 if ( y )
1455 *y = point.y;
1456 }
1457
1458 void wxWindowMSW::DoScreenToClient(int *x, int *y) const
1459 {
1460 POINT pt;
1461 if ( x )
1462 pt.x = *x;
1463 if ( y )
1464 pt.y = *y;
1465
1466 ::ScreenToClient(GetHwnd(), &pt);
1467
1468 if ( x )
1469 *x = pt.x;
1470 if ( y )
1471 *y = pt.y;
1472 }
1473
1474 void wxWindowMSW::DoClientToScreen(int *x, int *y) const
1475 {
1476 POINT pt;
1477 if ( x )
1478 pt.x = *x;
1479 if ( y )
1480 pt.y = *y;
1481
1482 ::ClientToScreen(GetHwnd(), &pt);
1483
1484 if ( x )
1485 *x = pt.x;
1486 if ( y )
1487 *y = pt.y;
1488 }
1489
1490 void wxWindowMSW::DoMoveWindow(int x, int y, int width, int height)
1491 {
1492 // TODO: is this consistent with other platforms?
1493 // Still, negative width or height shouldn't be allowed
1494 if (width < 0)
1495 width = 0;
1496 if (height < 0)
1497 height = 0;
1498 if ( !::MoveWindow(GetHwnd(), x, y, width, height, TRUE) )
1499 {
1500 wxLogLastError(wxT("MoveWindow"));
1501 }
1502 }
1503
1504 // set the size of the window: if the dimensions are positive, just use them,
1505 // but if any of them is equal to -1, it means that we must find the value for
1506 // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
1507 // which case -1 is a valid value for x and y)
1508 //
1509 // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
1510 // the width/height to best suit our contents, otherwise we reuse the current
1511 // width/height
1512 void wxWindowMSW::DoSetSize(int x, int y, int width, int height, int sizeFlags)
1513 {
1514 // get the current size and position...
1515 int currentX, currentY;
1516 GetPosition(&currentX, &currentY);
1517 int currentW,currentH;
1518 GetSize(&currentW, &currentH);
1519
1520 // ... and don't do anything (avoiding flicker) if it's already ok
1521 if ( x == currentX && y == currentY &&
1522 width == currentW && height == currentH )
1523 {
1524 return;
1525 }
1526
1527 if ( x == -1 && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE) )
1528 x = currentX;
1529 if ( y == -1 && !(sizeFlags & wxSIZE_ALLOW_MINUS_ONE) )
1530 y = currentY;
1531
1532 AdjustForParentClientOrigin(x, y, sizeFlags);
1533
1534 wxSize size(-1, -1);
1535 if ( width == -1 )
1536 {
1537 if ( sizeFlags & wxSIZE_AUTO_WIDTH )
1538 {
1539 size = DoGetBestSize();
1540 width = size.x;
1541 }
1542 else
1543 {
1544 // just take the current one
1545 width = currentW;
1546 }
1547 }
1548
1549 if ( height == -1 )
1550 {
1551 if ( sizeFlags & wxSIZE_AUTO_HEIGHT )
1552 {
1553 if ( size.x == -1 )
1554 {
1555 size = DoGetBestSize();
1556 }
1557 //else: already called DoGetBestSize() above
1558
1559 height = size.y;
1560 }
1561 else
1562 {
1563 // just take the current one
1564 height = currentH;
1565 }
1566 }
1567
1568 DoMoveWindow(x, y, width, height);
1569 }
1570
1571 void wxWindowMSW::DoSetClientSize(int width, int height)
1572 {
1573 // setting the client size is less obvious than it it could have been
1574 // because in the result of changing the total size the window scrollbar
1575 // may [dis]appear and/or its menubar may [un]wrap and so the client size
1576 // will not be correct as the difference between the total and client size
1577 // changes - so we keep changing it until we get it right
1578 //
1579 // normally this loop shouldn't take more than 3 iterations (usually 1 but
1580 // if scrollbars [dis]appear as the result of the first call, then 2 and it
1581 // may become 3 if the window had 0 size originally and so we didn't
1582 // calculate the scrollbar correction correctly during the first iteration)
1583 // but just to be on the safe side we check for it instead of making it an
1584 // "infinite" loop (i.e. leaving break inside as the only way to get out)
1585 for ( int i = 0; i < 4; i++ )
1586 {
1587 RECT rectClient;
1588 ::GetClientRect(GetHwnd(), &rectClient);
1589
1590 // if the size is already ok, stop here (rectClient.left = top = 0)
1591 if ( (rectClient.right == width || width == -1) &&
1592 (rectClient.bottom == height || height == -1) )
1593 {
1594 break;
1595 }
1596
1597 int widthClient = width,
1598 heightClient = height;
1599
1600 // Find the difference between the entire window (title bar and all)
1601 // and the client area; add this to the new client size to move the
1602 // window
1603 RECT rectWin;
1604 ::GetWindowRect(GetHwnd(), &rectWin);
1605
1606 widthClient += rectWin.right - rectWin.left - rectClient.right;
1607 heightClient += rectWin.bottom - rectWin.top - rectClient.bottom;
1608
1609 POINT point;
1610 point.x = rectWin.left;
1611 point.y = rectWin.top;
1612
1613 // MoveWindow positions the child windows relative to the parent, so
1614 // adjust if necessary
1615 if ( !IsTopLevel() )
1616 {
1617 wxWindow *parent = GetParent();
1618 if ( parent )
1619 {
1620 ::ScreenToClient(GetHwndOf(parent), &point);
1621 }
1622 }
1623
1624 DoMoveWindow(point.x, point.y, widthClient, heightClient);
1625 }
1626 }
1627
1628 // For implementation purposes - sometimes decorations make the client area
1629 // smaller
1630 wxPoint wxWindowMSW::GetClientAreaOrigin() const
1631 {
1632 return wxPoint(0, 0);
1633 }
1634
1635 // ---------------------------------------------------------------------------
1636 // text metrics
1637 // ---------------------------------------------------------------------------
1638
1639 int wxWindowMSW::GetCharHeight() const
1640 {
1641 return wxGetTextMetrics(this).tmHeight;
1642 }
1643
1644 int wxWindowMSW::GetCharWidth() const
1645 {
1646 // +1 is needed because Windows apparently adds it when calculating the
1647 // dialog units size in pixels
1648 #if wxDIALOG_UNIT_COMPATIBILITY
1649 return wxGetTextMetrics(this).tmAveCharWidth;
1650 #else
1651 return wxGetTextMetrics(this).tmAveCharWidth + 1;
1652 #endif
1653 }
1654
1655 void wxWindowMSW::GetTextExtent(const wxString& string,
1656 int *x, int *y,
1657 int *descent, int *externalLeading,
1658 const wxFont *theFont) const
1659 {
1660 const wxFont *fontToUse = theFont;
1661 if ( !fontToUse )
1662 fontToUse = &m_font;
1663
1664 HWND hWnd = GetHwnd();
1665 HDC dc = ::GetDC(hWnd);
1666
1667 HFONT fnt = 0;
1668 HFONT hfontOld = 0;
1669 if ( fontToUse && fontToUse->Ok() )
1670 {
1671 fnt = (HFONT)((wxFont *)fontToUse)->GetResourceHandle(); // const_cast
1672 if ( fnt )
1673 hfontOld = (HFONT)SelectObject(dc,fnt);
1674 }
1675
1676 SIZE sizeRect;
1677 TEXTMETRIC tm;
1678 GetTextExtentPoint(dc, string, (int)string.Length(), &sizeRect);
1679 GetTextMetrics(dc, &tm);
1680
1681 if ( fontToUse && fnt && hfontOld )
1682 SelectObject(dc, hfontOld);
1683
1684 ReleaseDC(hWnd, dc);
1685
1686 if ( x )
1687 *x = sizeRect.cx;
1688 if ( y )
1689 *y = sizeRect.cy;
1690 if ( descent )
1691 *descent = tm.tmDescent;
1692 if ( externalLeading )
1693 *externalLeading = tm.tmExternalLeading;
1694 }
1695
1696 #if wxUSE_CARET && WXWIN_COMPATIBILITY
1697 // ---------------------------------------------------------------------------
1698 // Caret manipulation
1699 // ---------------------------------------------------------------------------
1700
1701 void wxWindowMSW::CreateCaret(int w, int h)
1702 {
1703 SetCaret(new wxCaret(this, w, h));
1704 }
1705
1706 void wxWindowMSW::CreateCaret(const wxBitmap *WXUNUSED(bitmap))
1707 {
1708 wxFAIL_MSG("not implemented");
1709 }
1710
1711 void wxWindowMSW::ShowCaret(bool show)
1712 {
1713 wxCHECK_RET( m_caret, "no caret to show" );
1714
1715 m_caret->Show(show);
1716 }
1717
1718 void wxWindowMSW::DestroyCaret()
1719 {
1720 SetCaret(NULL);
1721 }
1722
1723 void wxWindowMSW::SetCaretPos(int x, int y)
1724 {
1725 wxCHECK_RET( m_caret, "no caret to move" );
1726
1727 m_caret->Move(x, y);
1728 }
1729
1730 void wxWindowMSW::GetCaretPos(int *x, int *y) const
1731 {
1732 wxCHECK_RET( m_caret, "no caret to get position of" );
1733
1734 m_caret->GetPosition(x, y);
1735 }
1736 #endif // wxUSE_CARET
1737
1738 // ---------------------------------------------------------------------------
1739 // popup menu
1740 // ---------------------------------------------------------------------------
1741
1742 #if wxUSE_MENUS_NATIVE
1743
1744 // yield for WM_COMMAND events only, i.e. process all WM_COMMANDs in the queue
1745 // immediately, without waiting for the next event loop iteration
1746 //
1747 // NB: this function should probably be made public later as it can almost
1748 // surely replace wxYield() elsewhere as well
1749 static void wxYieldForCommandsOnly()
1750 {
1751 // peek all WM_COMMANDs (it will always return WM_QUIT too but we don't
1752 // want to process it here)
1753 MSG msg;
1754 while ( ::PeekMessage(&msg, (HWND)0, WM_COMMAND, WM_COMMAND, PM_REMOVE)
1755 && msg.message != WM_QUIT )
1756 {
1757 wxTheApp->DoMessage((WXMSG *)&msg);
1758 }
1759
1760 // If we retrieved a WM_QUIT, insert back into the message queue.
1761 if (msg.message == WM_QUIT)
1762 ::PostQuitMessage(0);
1763 }
1764
1765 bool wxWindowMSW::DoPopupMenu(wxMenu *menu, int x, int y)
1766 {
1767 menu->SetInvokingWindow(this);
1768 menu->UpdateUI();
1769
1770 HWND hWnd = GetHwnd();
1771 HMENU hMenu = GetHmenuOf(menu);
1772 POINT point;
1773 point.x = x;
1774 point.y = y;
1775 ::ClientToScreen(hWnd, &point);
1776 wxCurrentPopupMenu = menu;
1777 UINT flags = 0;
1778 #if !defined(__WXWINCE__)
1779 flags = TPM_RIGHTBUTTON;
1780 #endif
1781 ::TrackPopupMenu(hMenu, flags, point.x, point.y, 0, hWnd, NULL);
1782
1783 // we need to do it righ now as otherwise the events are never going to be
1784 // sent to wxCurrentPopupMenu from HandleCommand()
1785 //
1786 // note that even eliminating (ugly) wxCurrentPopupMenu global wouldn't
1787 // help and we'd still need wxYieldForCommandsOnly() as the menu may be
1788 // destroyed as soon as we return (it can be a local variable in the caller
1789 // for example) and so we do need to process the event immediately
1790 wxYieldForCommandsOnly();
1791
1792 wxCurrentPopupMenu = NULL;
1793
1794 menu->SetInvokingWindow(NULL);
1795
1796 return TRUE;
1797 }
1798
1799 #endif // wxUSE_MENUS_NATIVE
1800
1801 // ===========================================================================
1802 // pre/post message processing
1803 // ===========================================================================
1804
1805 long wxWindowMSW::MSWDefWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam)
1806 {
1807 if ( m_oldWndProc )
1808 return ::CallWindowProc(CASTWNDPROC m_oldWndProc, GetHwnd(), (UINT) nMsg, (WPARAM) wParam, (LPARAM) lParam);
1809 else
1810 return ::DefWindowProc(GetHwnd(), nMsg, wParam, lParam);
1811 }
1812
1813 bool wxWindowMSW::MSWProcessMessage(WXMSG* pMsg)
1814 {
1815 // wxUniversal implements tab traversal itself
1816 #ifndef __WXUNIVERSAL__
1817 if ( m_hWnd != 0 && (GetWindowStyleFlag() & wxTAB_TRAVERSAL) )
1818 {
1819 // intercept dialog navigation keys
1820 MSG *msg = (MSG *)pMsg;
1821
1822 // here we try to do all the job which ::IsDialogMessage() usually does
1823 // internally
1824 #if 1
1825 if ( msg->message == WM_KEYDOWN )
1826 {
1827 bool bCtrlDown = wxIsCtrlDown();
1828 bool bShiftDown = wxIsShiftDown();
1829
1830 // WM_GETDLGCODE: ask the control if it wants the key for itself,
1831 // don't process it if it's the case (except for Ctrl-Tab/Enter
1832 // combinations which are always processed)
1833 LONG lDlgCode = 0;
1834 if ( !bCtrlDown )
1835 {
1836 lDlgCode = ::SendMessage(msg->hwnd, WM_GETDLGCODE, 0, 0);
1837
1838 // surprizingly, DLGC_WANTALLKEYS bit mask doesn't contain the
1839 // DLGC_WANTTAB nor DLGC_WANTARROWS bits although, logically,
1840 // it, of course, implies them
1841 if ( lDlgCode & DLGC_WANTALLKEYS )
1842 {
1843 lDlgCode |= DLGC_WANTTAB | DLGC_WANTARROWS;
1844 }
1845 }
1846
1847 bool bForward = TRUE,
1848 bWindowChange = FALSE;
1849
1850 // should we process this message specially?
1851 bool bProcess = TRUE;
1852 switch ( msg->wParam )
1853 {
1854 case VK_TAB:
1855 // assume that nobody wants Shift-TAB for himself - if we
1856 // don't do it there is no easy way for a control to grab
1857 // TABs but still let Shift-TAB work as navugation key
1858 if ( (lDlgCode & DLGC_WANTTAB) && !bShiftDown ) {
1859 bProcess = FALSE;
1860 }
1861 else {
1862 // Ctrl-Tab cycles thru notebook pages
1863 bWindowChange = bCtrlDown;
1864 bForward = !bShiftDown;
1865 }
1866 break;
1867
1868 case VK_UP:
1869 case VK_LEFT:
1870 if ( (lDlgCode & DLGC_WANTARROWS) || bCtrlDown )
1871 bProcess = FALSE;
1872 else
1873 bForward = FALSE;
1874 break;
1875
1876 case VK_DOWN:
1877 case VK_RIGHT:
1878 if ( (lDlgCode & DLGC_WANTARROWS) || bCtrlDown )
1879 bProcess = FALSE;
1880 break;
1881
1882 case VK_RETURN:
1883 {
1884 if ( (lDlgCode & DLGC_WANTMESSAGE) && !bCtrlDown )
1885 {
1886 // control wants to process Enter itself, don't
1887 // call IsDialogMessage() which would interpret
1888 // it
1889 return FALSE;
1890 }
1891 else if ( lDlgCode & DLGC_BUTTON )
1892 {
1893 // let IsDialogMessage() handle this for all
1894 // buttons except the owner-drawn ones which it
1895 // just seems to ignore
1896 long style = ::GetWindowLong(msg->hwnd, GWL_STYLE);
1897 if ( (style & BS_OWNERDRAW) == BS_OWNERDRAW )
1898 {
1899 // emulate the button click
1900 wxWindow *btn = wxFindWinFromHandle((WXHWND)msg->hwnd);
1901 if ( btn )
1902 btn->MSWCommand(BN_CLICKED, 0 /* unused */);
1903 }
1904
1905 bProcess = FALSE;
1906 }
1907 // FIXME: this should be handled by
1908 // wxNavigationKeyEvent handler and not here!!
1909 else
1910 {
1911 #if wxUSE_BUTTON
1912 wxButton *btn = wxDynamicCast(GetDefaultItem(),
1913 wxButton);
1914 if ( btn && btn->IsEnabled() )
1915 {
1916 // if we do have a default button, do press it
1917 btn->MSWCommand(BN_CLICKED, 0 /* unused */);
1918
1919 return TRUE;
1920 }
1921 else // no default button
1922 {
1923 #endif // wxUSE_BUTTON
1924 // this is a quick and dirty test for a text
1925 // control
1926 if ( !(lDlgCode & DLGC_HASSETSEL) )
1927 {
1928 // don't process Enter, the control might
1929 // need it for itself and don't let
1930 // ::IsDialogMessage() have it as it can
1931 // eat the Enter events sometimes
1932 return FALSE;
1933 }
1934 else if (!IsTopLevel())
1935 {
1936 // if not a top level window, let parent
1937 // handle it
1938 return FALSE;
1939 }
1940 //else: treat Enter as TAB: pass to the next
1941 // control as this is the best thing to do
1942 // if the text doesn't handle Enter itself
1943 }
1944 }
1945 }
1946 break;
1947
1948 default:
1949 bProcess = FALSE;
1950 }
1951
1952 if ( bProcess )
1953 {
1954 wxNavigationKeyEvent event;
1955 event.SetDirection(bForward);
1956 event.SetWindowChange(bWindowChange);
1957 event.SetEventObject(this);
1958
1959 if ( GetEventHandler()->ProcessEvent(event) )
1960 {
1961 return TRUE;
1962 }
1963 }
1964 }
1965 #else // 0
1966 // let ::IsDialogMessage() do almost everything and handle just the
1967 // things it doesn't here: Ctrl-TAB for switching notebook pages
1968 if ( msg->message == WM_KEYDOWN )
1969 {
1970 // don't process system keys here
1971 if ( !(HIWORD(msg->lParam) & KF_ALTDOWN) )
1972 {
1973 if ( (msg->wParam == VK_TAB) && wxIsCtrlDown() )
1974 {
1975 // find the first notebook parent and change its page
1976 wxWindow *win = this;
1977 wxNotebook *nbook = NULL;
1978 while ( win && !nbook )
1979 {
1980 nbook = wxDynamicCast(win, wxNotebook);
1981 win = win->GetParent();
1982 }
1983
1984 if ( nbook )
1985 {
1986 bool forward = !wxIsShiftDown();
1987
1988 nbook->AdvanceSelection(forward);
1989 }
1990 }
1991 }
1992 }
1993 #endif // 1/0
1994
1995 // we handle VK_ESCAPE ourselves in wxDialog::OnCharHook() and we
1996 // shouldn't let IsDialogMessage() get it as it _always_ eats the
1997 // message even when there is no cancel button and when the message is
1998 // needed by the control itself: in particular, it prevents the tree in
1999 // place edit control from being closed with Escape in a dialog
2000 if ( msg->message != WM_KEYDOWN || msg->wParam != VK_ESCAPE )
2001 {
2002 // ::IsDialogMessage() is broken and may sometimes hang the
2003 // application by going into an infinite loop, so we try to detect
2004 // [some of] the situatations when this may happen and not call it
2005 // then
2006
2007 // assume we can call it by default
2008 bool canSafelyCallIsDlgMsg = TRUE;
2009
2010 HWND hwndFocus = ::GetFocus();
2011
2012 // if the currently focused window itself has WS_EX_CONTROLPARENT style, ::IsDialogMessage() will also enter
2013 // an infinite loop, because it will recursively check the child
2014 // windows but not the window itself and so if none of the children
2015 // accepts focus it loops forever (as it only stops when it gets
2016 // back to the window it started from)
2017 //
2018 // while it is very unusual that a window with WS_EX_CONTROLPARENT
2019 // style has the focus, it can happen. One such possibility is if
2020 // all windows are either toplevel, wxDialog, wxPanel or static
2021 // controls and no window can actually accept keyboard input.
2022 #if !defined(__WXWINCE__)
2023 if ( ::GetWindowLong(hwndFocus, GWL_EXSTYLE) & WS_EX_CONTROLPARENT )
2024 {
2025 // passimistic by default
2026 canSafelyCallIsDlgMsg = FALSE;
2027 for ( wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
2028 node;
2029 node = node->GetNext() )
2030 {
2031 wxWindow * const win = node->GetData();
2032 if ( win->AcceptsFocus() &&
2033 !(::GetWindowLong(GetHwndOf(win), GWL_EXSTYLE) &
2034 WS_EX_CONTROLPARENT) )
2035 {
2036 // it shouldn't hang...
2037 canSafelyCallIsDlgMsg = TRUE;
2038
2039 break;
2040 }
2041 }
2042 }
2043 #endif // !__WXWINCE__
2044
2045 if ( canSafelyCallIsDlgMsg )
2046 {
2047 // ::IsDialogMessage() can enter in an infinite loop when the
2048 // currently focused window is disabled or hidden and its
2049 // parent has WS_EX_CONTROLPARENT style, so don't call it in
2050 // this case
2051 while ( hwndFocus )
2052 {
2053 if ( !::IsWindowEnabled(hwndFocus) ||
2054 !::IsWindowVisible(hwndFocus) )
2055 {
2056 // it would enter an infinite loop if we do this!
2057 canSafelyCallIsDlgMsg = FALSE;
2058
2059 break;
2060 }
2061
2062 if ( !(::GetWindowLong(hwndFocus, GWL_STYLE) & WS_CHILD) )
2063 {
2064 // it's a top level window, don't go further -- e.g. even
2065 // if the parent of a dialog is disabled, this doesn't
2066 // break navigation inside the dialog
2067 break;
2068 }
2069
2070 hwndFocus = ::GetParent(hwndFocus);
2071 }
2072 }
2073
2074 // let IsDialogMessage() have the message if it's safe to call it
2075 if ( canSafelyCallIsDlgMsg && ::IsDialogMessage(GetHwnd(), msg) )
2076 {
2077 // IsDialogMessage() did something...
2078 return TRUE;
2079 }
2080 }
2081 }
2082 #endif // __WXUNIVERSAL__
2083
2084 #if wxUSE_TOOLTIPS
2085 if ( m_tooltip )
2086 {
2087 // relay mouse move events to the tooltip control
2088 MSG *msg = (MSG *)pMsg;
2089 if ( msg->message == WM_MOUSEMOVE )
2090 m_tooltip->RelayEvent(pMsg);
2091 }
2092 #endif // wxUSE_TOOLTIPS
2093
2094 return FALSE;
2095 }
2096
2097 bool wxWindowMSW::MSWTranslateMessage(WXMSG* pMsg)
2098 {
2099 #if wxUSE_ACCEL && !defined(__WXUNIVERSAL__)
2100 return m_acceleratorTable.Translate(this, pMsg);
2101 #else
2102 (void) pMsg;
2103 return FALSE;
2104 #endif // wxUSE_ACCEL
2105 }
2106
2107 bool wxWindowMSW::MSWShouldPreProcessMessage(WXMSG* WXUNUSED(pMsg))
2108 {
2109 // preprocess all messages by default
2110 return TRUE;
2111 }
2112
2113 // ---------------------------------------------------------------------------
2114 // message params unpackers
2115 // ---------------------------------------------------------------------------
2116
2117 void wxWindowMSW::UnpackCommand(WXWPARAM wParam, WXLPARAM lParam,
2118 WORD *id, WXHWND *hwnd, WORD *cmd)
2119 {
2120 *id = LOWORD(wParam);
2121 *hwnd = (WXHWND)lParam;
2122 *cmd = HIWORD(wParam);
2123 }
2124
2125 void wxWindowMSW::UnpackActivate(WXWPARAM wParam, WXLPARAM lParam,
2126 WXWORD *state, WXWORD *minimized, WXHWND *hwnd)
2127 {
2128 *state = LOWORD(wParam);
2129 *minimized = HIWORD(wParam);
2130 *hwnd = (WXHWND)lParam;
2131 }
2132
2133 void wxWindowMSW::UnpackScroll(WXWPARAM wParam, WXLPARAM lParam,
2134 WXWORD *code, WXWORD *pos, WXHWND *hwnd)
2135 {
2136 *code = LOWORD(wParam);
2137 *pos = HIWORD(wParam);
2138 *hwnd = (WXHWND)lParam;
2139 }
2140
2141 void wxWindowMSW::UnpackCtlColor(WXWPARAM wParam, WXLPARAM lParam,
2142 WXWORD *nCtlColor, WXHDC *hdc, WXHWND *hwnd)
2143 {
2144 #ifndef __WXMICROWIN__
2145 *nCtlColor = CTLCOLOR_BTN;
2146 *hwnd = (WXHWND)lParam;
2147 *hdc = (WXHDC)wParam;
2148 #endif
2149 }
2150
2151 void wxWindowMSW::UnpackMenuSelect(WXWPARAM wParam, WXLPARAM lParam,
2152 WXWORD *item, WXWORD *flags, WXHMENU *hmenu)
2153 {
2154 *item = (WXWORD)wParam;
2155 *flags = HIWORD(wParam);
2156 *hmenu = (WXHMENU)lParam;
2157 }
2158
2159 // ---------------------------------------------------------------------------
2160 // Main wxWindows window proc and the window proc for wxWindow
2161 // ---------------------------------------------------------------------------
2162
2163 // Hook for new window just as it's being created, when the window isn't yet
2164 // associated with the handle
2165 static wxWindowMSW *gs_winBeingCreated = NULL;
2166
2167 // implementation of wxWindowCreationHook class: it just sets gs_winBeingCreated to the
2168 // window being created and insures that it's always unset back later
2169 wxWindowCreationHook::wxWindowCreationHook(wxWindowMSW *winBeingCreated)
2170 {
2171 gs_winBeingCreated = winBeingCreated;
2172 }
2173
2174 wxWindowCreationHook::~wxWindowCreationHook()
2175 {
2176 gs_winBeingCreated = NULL;
2177 }
2178
2179 // Main window proc
2180 LRESULT WXDLLEXPORT APIENTRY _EXPORT wxWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
2181 {
2182 // trace all messages - useful for the debugging
2183 #ifdef __WXDEBUG__
2184 wxLogTrace(wxTraceMessages,
2185 wxT("Processing %s(hWnd=%08lx, wParam=%8lx, lParam=%8lx)"),
2186 wxGetMessageName(message), (long)hWnd, (long)wParam, lParam);
2187 #endif // __WXDEBUG__
2188
2189 wxWindowMSW *wnd = wxFindWinFromHandle((WXHWND) hWnd);
2190
2191 // when we get the first message for the HWND we just created, we associate
2192 // it with wxWindow stored in gs_winBeingCreated
2193 if ( !wnd && gs_winBeingCreated )
2194 {
2195 wxAssociateWinWithHandle(hWnd, gs_winBeingCreated);
2196 wnd = gs_winBeingCreated;
2197 gs_winBeingCreated = NULL;
2198 wnd->SetHWND((WXHWND)hWnd);
2199 }
2200
2201 LRESULT rc;
2202
2203 if ( wnd )
2204 rc = wnd->MSWWindowProc(message, wParam, lParam);
2205 else
2206 rc = ::DefWindowProc(hWnd, message, wParam, lParam);
2207
2208 return rc;
2209 }
2210
2211 long wxWindowMSW::MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam)
2212 {
2213 // did we process the message?
2214 bool processed = FALSE;
2215
2216 // the return value
2217 union
2218 {
2219 bool allow;
2220 long result;
2221 WXHICON hIcon;
2222 WXHBRUSH hBrush;
2223 } rc;
2224
2225 // for most messages we should return 0 when we do process the message
2226 rc.result = 0;
2227
2228 switch ( message )
2229 {
2230 case WM_CREATE:
2231 {
2232 bool mayCreate;
2233 processed = HandleCreate((WXLPCREATESTRUCT)lParam, &mayCreate);
2234 if ( processed )
2235 {
2236 // return 0 to allow window creation
2237 rc.result = mayCreate ? 0 : -1;
2238 }
2239 }
2240 break;
2241
2242 case WM_DESTROY:
2243 // never set processed to TRUE and *always* pass WM_DESTROY to
2244 // DefWindowProc() as Windows may do some internal cleanup when
2245 // processing it and failing to pass the message along may cause
2246 // memory and resource leaks!
2247 (void)HandleDestroy();
2248 break;
2249
2250 case WM_MOVE:
2251 processed = HandleMove(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam));
2252 break;
2253
2254 #if !defined(__WXWINCE__)
2255 case WM_MOVING:
2256 {
2257 LPRECT pRect = (LPRECT)lParam;
2258 wxRect rc;
2259 rc.SetLeft(pRect->left);
2260 rc.SetTop(pRect->top);
2261 rc.SetRight(pRect->right);
2262 rc.SetBottom(pRect->bottom);
2263 processed = HandleMoving(rc);
2264 if (processed) {
2265 pRect->left = rc.GetLeft();
2266 pRect->top = rc.GetTop();
2267 pRect->right = rc.GetRight();
2268 pRect->bottom = rc.GetBottom();
2269 }
2270 }
2271 break;
2272 #endif
2273
2274 case WM_SIZE:
2275 switch ( wParam )
2276 {
2277 case SIZE_MAXHIDE:
2278 case SIZE_MAXSHOW:
2279 // we're not interested in these messages at all
2280 break;
2281
2282 case SIZE_MINIMIZED:
2283 // we shouldn't send sizev events for these messages as the
2284 // client size may be negative which breaks existing code
2285 //
2286 // OTOH we might send another (wxMinimizedEvent?) one or
2287 // add an additional parameter to wxSizeEvent if this is
2288 // useful to anybody
2289 break;
2290
2291 default:
2292 wxFAIL_MSG( _T("unexpected WM_SIZE parameter") );
2293 // fall through nevertheless
2294
2295 case SIZE_MAXIMIZED:
2296 case SIZE_RESTORED:
2297 processed = HandleSize(LOWORD(lParam), HIWORD(lParam),
2298 wParam);
2299 }
2300 break;
2301
2302 #if !defined(__WXWINCE__)
2303 case WM_SIZING:
2304 {
2305 LPRECT pRect = (LPRECT)lParam;
2306 wxRect rc;
2307 rc.SetLeft(pRect->left);
2308 rc.SetTop(pRect->top);
2309 rc.SetRight(pRect->right);
2310 rc.SetBottom(pRect->bottom);
2311 processed = HandleSizing(rc);
2312 if (processed) {
2313 pRect->left = rc.GetLeft();
2314 pRect->top = rc.GetTop();
2315 pRect->right = rc.GetRight();
2316 pRect->bottom = rc.GetBottom();
2317 }
2318 }
2319 break;
2320 #endif
2321
2322 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
2323 case WM_ACTIVATEAPP:
2324 wxTheApp->SetActive(wParam != 0, FindFocus());
2325 break;
2326 #endif
2327
2328 case WM_ACTIVATE:
2329 {
2330 WXWORD state, minimized;
2331 WXHWND hwnd;
2332 UnpackActivate(wParam, lParam, &state, &minimized, &hwnd);
2333
2334 processed = HandleActivate(state, minimized != 0, (WXHWND)hwnd);
2335 }
2336 break;
2337
2338 case WM_SETFOCUS:
2339 processed = HandleSetFocus((WXHWND)(HWND)wParam);
2340 break;
2341
2342 case WM_KILLFOCUS:
2343 processed = HandleKillFocus((WXHWND)(HWND)wParam);
2344 break;
2345
2346 case WM_PAINT:
2347 {
2348 wxPaintDCEx *pdc = 0;
2349 if (wParam) {
2350 pdc = new wxPaintDCEx(this, (WXHDC) wParam);
2351 }
2352 processed = HandlePaint();
2353 if (pdc) {
2354 delete pdc;
2355 }
2356 break;
2357 }
2358
2359 case WM_CLOSE:
2360 #ifdef __WXUNIVERSAL__
2361 // Universal uses its own wxFrame/wxDialog, so we don't receive
2362 // close events unless we have this.
2363 Close();
2364 processed = TRUE;
2365 rc.result = TRUE;
2366 #else
2367 // don't let the DefWindowProc() destroy our window - we'll do it
2368 // ourselves in ~wxWindow
2369 processed = TRUE;
2370 rc.result = TRUE;
2371 #endif
2372 break;
2373
2374 case WM_SHOWWINDOW:
2375 processed = HandleShow(wParam != 0, (int)lParam);
2376 break;
2377
2378 case WM_MOUSEMOVE:
2379 processed = HandleMouseMove(GET_X_LPARAM(lParam),
2380 GET_Y_LPARAM(lParam),
2381 wParam);
2382 break;
2383
2384 #if wxUSE_MOUSEWHEEL
2385 case WM_MOUSEWHEEL:
2386 processed = HandleMouseWheel(wParam, lParam);
2387 break;
2388 #endif
2389
2390 case WM_LBUTTONDOWN:
2391 case WM_LBUTTONUP:
2392 case WM_LBUTTONDBLCLK:
2393 case WM_RBUTTONDOWN:
2394 case WM_RBUTTONUP:
2395 case WM_RBUTTONDBLCLK:
2396 case WM_MBUTTONDOWN:
2397 case WM_MBUTTONUP:
2398 case WM_MBUTTONDBLCLK:
2399 {
2400 #ifdef __WXMICROWIN__
2401 // MicroWindows seems to ignore the fact that a window is
2402 // disabled. So catch mouse events and throw them away if
2403 // necessary.
2404 wxWindowMSW* win = this;
2405 for ( ;; )
2406 {
2407 if (!win->IsEnabled())
2408 {
2409 processed = TRUE;
2410 break;
2411 }
2412
2413 win = win->GetParent();
2414 if ( !win || win->IsTopLevel() )
2415 break;
2416 }
2417
2418 if ( processed )
2419 break;
2420
2421 #endif // __WXMICROWIN__
2422 int x = GET_X_LPARAM(lParam),
2423 y = GET_Y_LPARAM(lParam);
2424
2425 // redirect the event to a static control if necessary by
2426 // finding one under mouse
2427 wxWindowMSW *win;
2428 if ( GetCapture() == this )
2429 {
2430 // but don't do it if the mouse is captured by this window
2431 // because then it should really get this event itself
2432 win = this;
2433 }
2434 else
2435 {
2436 win = FindWindowForMouseEvent(this, &x, &y);
2437
2438 // this should never happen
2439 wxCHECK_MSG( win, 0,
2440 _T("FindWindowForMouseEvent() returned NULL") );
2441
2442 // for the standard classes their WndProc sets the focus to
2443 // them anyhow and doing it from here results in some weird
2444 // problems, but for our windows we want them to acquire
2445 // focus when clicked
2446 if ( !win->IsOfStandardClass() )
2447 {
2448 if ( message == WM_LBUTTONDOWN && win->AcceptsFocus() )
2449 win->SetFocus();
2450 }
2451 }
2452
2453 processed = win->HandleMouseEvent(message, x, y, wParam);
2454 }
2455 break;
2456
2457 #ifdef MM_JOY1MOVE
2458 case MM_JOY1MOVE:
2459 case MM_JOY2MOVE:
2460 case MM_JOY1ZMOVE:
2461 case MM_JOY2ZMOVE:
2462 case MM_JOY1BUTTONDOWN:
2463 case MM_JOY2BUTTONDOWN:
2464 case MM_JOY1BUTTONUP:
2465 case MM_JOY2BUTTONUP:
2466 processed = HandleJoystickEvent(message,
2467 GET_X_LPARAM(lParam),
2468 GET_Y_LPARAM(lParam),
2469 wParam);
2470 break;
2471 #endif // __WXMICROWIN__
2472
2473 case WM_SYSCOMMAND:
2474 processed = HandleSysCommand(wParam, lParam);
2475 break;
2476
2477 case WM_COMMAND:
2478 {
2479 WORD id, cmd;
2480 WXHWND hwnd;
2481 UnpackCommand(wParam, lParam, &id, &hwnd, &cmd);
2482
2483 processed = HandleCommand(id, cmd, hwnd);
2484 }
2485 break;
2486
2487 case WM_NOTIFY:
2488 processed = HandleNotify((int)wParam, lParam, &rc.result);
2489 break;
2490
2491 // for these messages we must return TRUE if process the message
2492 #ifdef WM_DRAWITEM
2493 case WM_DRAWITEM:
2494 case WM_MEASUREITEM:
2495 {
2496 int idCtrl = (UINT)wParam;
2497 if ( message == WM_DRAWITEM )
2498 {
2499 processed = MSWOnDrawItem(idCtrl,
2500 (WXDRAWITEMSTRUCT *)lParam);
2501 }
2502 else
2503 {
2504 processed = MSWOnMeasureItem(idCtrl,
2505 (WXMEASUREITEMSTRUCT *)lParam);
2506 }
2507
2508 if ( processed )
2509 rc.result = TRUE;
2510 }
2511 break;
2512 #endif // defined(WM_DRAWITEM)
2513
2514 case WM_GETDLGCODE:
2515 if ( !IsOfStandardClass() )
2516 {
2517 // we always want to get the char events
2518 rc.result = DLGC_WANTCHARS;
2519
2520 if ( GetWindowStyleFlag() & wxWANTS_CHARS )
2521 {
2522 // in fact, we want everything
2523 rc.result |= DLGC_WANTARROWS |
2524 DLGC_WANTTAB |
2525 DLGC_WANTALLKEYS;
2526 }
2527
2528 processed = TRUE;
2529 }
2530 //else: get the dlg code from the DefWindowProc()
2531 break;
2532
2533 case WM_SYSKEYDOWN:
2534 case WM_KEYDOWN:
2535 // If this has been processed by an event handler, return 0 now
2536 // (we've handled it).
2537 m_lastKeydownProcessed = HandleKeyDown((WORD) wParam, lParam);
2538 if ( m_lastKeydownProcessed )
2539 {
2540 processed = TRUE;
2541 }
2542
2543 if ( !processed )
2544 {
2545 switch ( wParam )
2546 {
2547 // we consider these message "not interesting" to OnChar, so
2548 // just don't do anything more with them
2549 case VK_SHIFT:
2550 case VK_CONTROL:
2551 case VK_MENU:
2552 case VK_CAPITAL:
2553 case VK_NUMLOCK:
2554 case VK_SCROLL:
2555 processed = TRUE;
2556 break;
2557
2558 // avoid duplicate messages to OnChar for these ASCII keys:
2559 // they will be translated by TranslateMessage() and received
2560 // in WM_CHAR
2561 case VK_ESCAPE:
2562 case VK_SPACE:
2563 case VK_RETURN:
2564 case VK_BACK:
2565 case VK_TAB:
2566 case VK_ADD:
2567 case VK_SUBTRACT:
2568 case VK_MULTIPLY:
2569 case VK_DIVIDE:
2570 case VK_OEM_1:
2571 case VK_OEM_2:
2572 case VK_OEM_3:
2573 case VK_OEM_4:
2574 case VK_OEM_5:
2575 case VK_OEM_6:
2576 case VK_OEM_7:
2577 case VK_OEM_PLUS:
2578 case VK_OEM_COMMA:
2579 case VK_OEM_MINUS:
2580 case VK_OEM_PERIOD:
2581 // but set processed to FALSE, not TRUE to still pass them
2582 // to the control's default window proc - otherwise
2583 // built-in keyboard handling won't work
2584 processed = FALSE;
2585 break;
2586
2587 #ifdef VK_APPS
2588 // special case of VK_APPS: treat it the same as right mouse
2589 // click because both usually pop up a context menu
2590 case VK_APPS:
2591 {
2592 WPARAM flags;
2593 int x, y;
2594
2595 TranslateKbdEventToMouse(this, &x, &y, &flags);
2596 processed = HandleMouseEvent(WM_RBUTTONDOWN, x, y, flags);
2597 }
2598 break;
2599 #endif // VK_APPS
2600
2601 default:
2602 // do generate a CHAR event
2603 processed = HandleChar((WORD)wParam, lParam);
2604 }
2605 }
2606 if (message == WM_SYSKEYDOWN) // Let Windows still handle the SYSKEYs
2607 processed = FALSE;
2608 break;
2609
2610 case WM_SYSKEYUP:
2611 case WM_KEYUP:
2612 #ifdef VK_APPS
2613 // special case of VK_APPS: treat it the same as right mouse button
2614 if ( wParam == VK_APPS )
2615 {
2616 WPARAM flags;
2617 int x, y;
2618
2619 TranslateKbdEventToMouse(this, &x, &y, &flags);
2620 processed = HandleMouseEvent(WM_RBUTTONUP, x, y, flags);
2621 }
2622 else
2623 #endif // VK_APPS
2624 {
2625 processed = HandleKeyUp((WORD) wParam, lParam);
2626 }
2627 break;
2628
2629 case WM_SYSCHAR:
2630 case WM_CHAR: // Always an ASCII character
2631 if ( m_lastKeydownProcessed )
2632 {
2633 // The key was handled in the EVT_KEY_DOWN and handling
2634 // a key in an EVT_KEY_DOWN handler is meant, by
2635 // design, to prevent EVT_CHARs from happening
2636 m_lastKeydownProcessed = FALSE;
2637 processed = TRUE;
2638 }
2639 else
2640 {
2641 processed = HandleChar((WORD)wParam, lParam, TRUE);
2642 }
2643 break;
2644
2645 #if wxUSE_HOTKEY
2646 case WM_HOTKEY:
2647 processed = HandleHotKey((WORD)wParam, lParam);
2648 break;
2649 #endif // wxUSE_HOTKEY
2650
2651 case WM_HSCROLL:
2652 case WM_VSCROLL:
2653 {
2654 WXWORD code, pos;
2655 WXHWND hwnd;
2656 UnpackScroll(wParam, lParam, &code, &pos, &hwnd);
2657
2658 processed = MSWOnScroll(message == WM_HSCROLL ? wxHORIZONTAL
2659 : wxVERTICAL,
2660 code, pos, hwnd);
2661 }
2662 break;
2663
2664 // CTLCOLOR messages are sent by children to query the parent for their
2665 // colors#ifndef __WXMICROWIN__
2666 #ifndef __WXMICROWIN__
2667 case WM_CTLCOLORMSGBOX:
2668 case WM_CTLCOLOREDIT:
2669 case WM_CTLCOLORLISTBOX:
2670 case WM_CTLCOLORBTN:
2671 case WM_CTLCOLORDLG:
2672 case WM_CTLCOLORSCROLLBAR:
2673 case WM_CTLCOLORSTATIC:
2674 {
2675 WXWORD nCtlColor;
2676 WXHDC hdc;
2677 WXHWND hwnd;
2678 UnpackCtlColor(wParam, lParam, &nCtlColor, &hdc, &hwnd);
2679
2680 processed = HandleCtlColor(&rc.hBrush,
2681 (WXHDC)hdc,
2682 (WXHWND)hwnd,
2683 nCtlColor,
2684 message,
2685 wParam,
2686 lParam);
2687 }
2688 break;
2689 #endif // !__WXMICROWIN__
2690
2691 case WM_SYSCOLORCHANGE:
2692 // the return value for this message is ignored
2693 processed = HandleSysColorChange();
2694 break;
2695
2696 #if !defined(__WXWINCE__)
2697 case WM_DISPLAYCHANGE:
2698 processed = HandleDisplayChange();
2699 break;
2700 #endif
2701
2702 case WM_PALETTECHANGED:
2703 processed = HandlePaletteChanged((WXHWND) (HWND) wParam);
2704 break;
2705
2706 case WM_CAPTURECHANGED:
2707 processed = HandleCaptureChanged((WXHWND) (HWND) lParam);
2708 break;
2709
2710 case WM_QUERYNEWPALETTE:
2711 processed = HandleQueryNewPalette();
2712 break;
2713
2714 case WM_ERASEBKGND:
2715 processed = HandleEraseBkgnd((WXHDC)(HDC)wParam);
2716 if ( processed )
2717 {
2718 // we processed the message, i.e. erased the background
2719 rc.result = TRUE;
2720 }
2721 break;
2722
2723 #if !defined(__WXWINCE__)
2724 case WM_DROPFILES:
2725 processed = HandleDropFiles(wParam);
2726 break;
2727 #endif
2728
2729 case WM_INITDIALOG:
2730 processed = HandleInitDialog((WXHWND)(HWND)wParam);
2731
2732 if ( processed )
2733 {
2734 // we never set focus from here
2735 rc.result = FALSE;
2736 }
2737 break;
2738
2739 #if !defined(__WXWINCE__)
2740 case WM_QUERYENDSESSION:
2741 processed = HandleQueryEndSession(lParam, &rc.allow);
2742 break;
2743
2744 case WM_ENDSESSION:
2745 processed = HandleEndSession(wParam != 0, lParam);
2746 break;
2747
2748 case WM_GETMINMAXINFO:
2749 processed = HandleGetMinMaxInfo((MINMAXINFO*)lParam);
2750 break;
2751 #endif
2752
2753 case WM_SETCURSOR:
2754 processed = HandleSetCursor((WXHWND)(HWND)wParam,
2755 LOWORD(lParam), // hit test
2756 HIWORD(lParam)); // mouse msg
2757
2758 if ( processed )
2759 {
2760 // returning TRUE stops the DefWindowProc() from further
2761 // processing this message - exactly what we need because we've
2762 // just set the cursor.
2763 rc.result = TRUE;
2764 }
2765 break;
2766
2767 #if wxUSE_ACCESSIBILITY
2768 case WM_GETOBJECT:
2769 {
2770 //WPARAM dwFlags = (WPARAM) (DWORD) wParam;
2771 LPARAM dwObjId = (LPARAM) (DWORD) lParam;
2772
2773 if (dwObjId == OBJID_CLIENT && GetOrCreateAccessible())
2774 {
2775 return LresultFromObject(IID_IAccessible, wParam, (IUnknown*) GetAccessible()->GetIAccessible());
2776 }
2777 break;
2778 }
2779 #endif
2780
2781 #if defined(WM_HELP)
2782 case WM_HELP:
2783 {
2784 // HELPINFO doesn't seem to be supported on WinCE.
2785 #ifndef __WXWINCE__
2786 HELPINFO* info = (HELPINFO*) lParam;
2787 // Don't yet process menu help events, just windows
2788 if (info->iContextType == HELPINFO_WINDOW)
2789 {
2790 #endif
2791 wxWindowMSW* subjectOfHelp = this;
2792 bool eventProcessed = FALSE;
2793 while (subjectOfHelp && !eventProcessed)
2794 {
2795 wxHelpEvent helpEvent(wxEVT_HELP,
2796 subjectOfHelp->GetId(),
2797 #ifdef __WXWINCE__
2798 wxPoint(0, 0)
2799 #else
2800 wxPoint(info->MousePos.x, info->MousePos.y)
2801 #endif
2802 );
2803
2804 helpEvent.SetEventObject(this);
2805 eventProcessed =
2806 GetEventHandler()->ProcessEvent(helpEvent);
2807
2808 // Go up the window hierarchy until the event is
2809 // handled (or not)
2810 subjectOfHelp = subjectOfHelp->GetParent();
2811 }
2812
2813 processed = eventProcessed;
2814 #ifndef __WXWINCE__
2815 }
2816 else if (info->iContextType == HELPINFO_MENUITEM)
2817 {
2818 wxHelpEvent helpEvent(wxEVT_HELP, info->iCtrlId);
2819 helpEvent.SetEventObject(this);
2820 processed = GetEventHandler()->ProcessEvent(helpEvent);
2821
2822 }
2823 //else: processed is already FALSE
2824 #endif
2825 }
2826 break;
2827 #endif
2828
2829 #if !defined(__WXWINCE__)
2830 case WM_CONTEXTMENU:
2831 {
2832 // we don't convert from screen to client coordinates as
2833 // the event may be handled by a parent window
2834 wxPoint pt(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam));
2835
2836 wxContextMenuEvent evtCtx(wxEVT_CONTEXT_MENU, GetId(), pt);
2837 processed = GetEventHandler()->ProcessEvent(evtCtx);
2838 }
2839 break;
2840 #endif
2841
2842 case WM_MENUCHAR:
2843 // we're only interested in our own menus, not MF_SYSMENU
2844 if ( HIWORD(wParam) == MF_POPUP )
2845 {
2846 // handle menu chars for ownerdrawn menu items
2847 int i = HandleMenuChar(toupper(LOWORD(wParam)), lParam);
2848 if ( i != wxNOT_FOUND )
2849 {
2850 rc.result = MAKELRESULT(i, MNC_EXECUTE);
2851 processed = TRUE;
2852 }
2853 }
2854 break;
2855 }
2856
2857 if ( !processed )
2858 {
2859 #ifdef __WXDEBUG__
2860 wxLogTrace(wxTraceMessages, wxT("Forwarding %s to DefWindowProc."),
2861 wxGetMessageName(message));
2862 #endif // __WXDEBUG__
2863 rc.result = MSWDefWindowProc(message, wParam, lParam);
2864 }
2865
2866 return rc.result;
2867 }
2868
2869 // ----------------------------------------------------------------------------
2870 // wxWindow <-> HWND map
2871 // ----------------------------------------------------------------------------
2872
2873 wxWinHashTable *wxWinHandleHash = NULL;
2874
2875 wxWindow *wxFindWinFromHandle(WXHWND hWnd)
2876 {
2877 return wxWinHandleHash->Get((long)hWnd);
2878 }
2879
2880 void wxAssociateWinWithHandle(HWND hWnd, wxWindowMSW *win)
2881 {
2882 // adding NULL hWnd is (first) surely a result of an error and
2883 // (secondly) breaks menu command processing
2884 wxCHECK_RET( hWnd != (HWND)NULL,
2885 wxT("attempt to add a NULL hWnd to window list ignored") );
2886
2887 wxWindow *oldWin = wxFindWinFromHandle((WXHWND) hWnd);
2888 #ifdef __WXDEBUG__
2889 if ( oldWin && (oldWin != win) )
2890 {
2891 wxLogDebug(wxT("HWND %X already associated with another window (%s)"),
2892 (int) hWnd, win->GetClassInfo()->GetClassName());
2893 }
2894 else
2895 #endif // __WXDEBUG__
2896 if (!oldWin)
2897 {
2898 wxWinHandleHash->Put((long)hWnd, (wxWindow *)win);
2899 }
2900 }
2901
2902 void wxRemoveHandleAssociation(wxWindowMSW *win)
2903 {
2904 wxWinHandleHash->Delete((long)win->GetHWND());
2905 }
2906
2907 // ----------------------------------------------------------------------------
2908 // various MSW speciic class dependent functions
2909 // ----------------------------------------------------------------------------
2910
2911 // Default destroyer - override if you destroy it in some other way
2912 // (e.g. with MDI child windows)
2913 void wxWindowMSW::MSWDestroyWindow()
2914 {
2915 }
2916
2917 bool wxWindowMSW::MSWGetCreateWindowCoords(const wxPoint& pos,
2918 const wxSize& size,
2919 int& x, int& y,
2920 int& w, int& h) const
2921 {
2922 static const int DEFAULT_Y = 200;
2923 static const int DEFAULT_H = 250;
2924
2925 bool nonDefault = FALSE;
2926
2927 if ( pos.x == -1 )
2928 {
2929 // if set x to CW_USEDEFAULT, y parameter is ignored anyhow so we can
2930 // just as well set it to CW_USEDEFAULT as well
2931 x =
2932 y = CW_USEDEFAULT;
2933 }
2934 else
2935 {
2936 // OTOH, if x is not set to CW_USEDEFAULT, y shouldn't be set to it
2937 // neither because it is not handled as a special value by Windows then
2938 // and so we have to choose some default value for it
2939 x = pos.x;
2940 y = pos.y == -1 ? DEFAULT_Y : pos.y;
2941
2942 nonDefault = TRUE;
2943 }
2944
2945 /*
2946 NB: there used to be some code here which set the initial size of the
2947 window to the client size of the parent if no explicit size was
2948 specified. This was wrong because wxWindows programs often assume
2949 that they get a WM_SIZE (EVT_SIZE) upon creation, however this broke
2950 it. To see why, you should understand that Windows sends WM_SIZE from
2951 inside ::CreateWindow() anyhow. However, ::CreateWindow() is called
2952 from some base class ctor and so this WM_SIZE is not processed in the
2953 real class' OnSize() (because it's not fully constructed yet and the
2954 event goes to some base class OnSize() instead). So the WM_SIZE we
2955 rely on is the one sent when the parent frame resizes its children
2956 but here is the problem: if the child already has just the right
2957 size, nothing will happen as both wxWindows and Windows check for
2958 this and ignore any attempts to change the window size to the size it
2959 already has - so no WM_SIZE would be sent.
2960 */
2961 if ( size.x == -1 )
2962 {
2963 // as above, h is not used at all in this case anyhow
2964 w =
2965 h = CW_USEDEFAULT;
2966 }
2967 else
2968 {
2969 // and, again as above, we can't set the height to CW_USEDEFAULT here
2970 w = size.x;
2971 h = size.y == -1 ? DEFAULT_H : size.y;
2972
2973 nonDefault = TRUE;
2974 }
2975
2976 return nonDefault;
2977 }
2978
2979 WXHWND wxWindowMSW::MSWGetParent() const
2980 {
2981 return m_parent ? m_parent->GetHWND() : WXHWND(NULL);
2982 }
2983
2984 bool wxWindowMSW::MSWCreate(const wxChar *wclass,
2985 const wxChar *title,
2986 const wxPoint& pos,
2987 const wxSize& size,
2988 WXDWORD style,
2989 WXDWORD extendedStyle)
2990 {
2991 // choose the position/size for the new window
2992 int x, y, w, h;
2993 (void)MSWGetCreateWindowCoords(pos, size, x, y, w, h);
2994
2995 // controlId is menu handle for the top level windows, so set it to 0
2996 // unless we're creating a child window
2997 int controlId = style & WS_CHILD ? GetId() : 0;
2998
2999 // for each class "Foo" we have we also have "FooNR" ("no repaint") class
3000 // which is the same but without CS_[HV]REDRAW class styles so using it
3001 // ensures that the window is not fully repainted on each resize
3002 wxString className(wclass);
3003 if ( GetWindowStyleFlag() & wxNO_FULL_REPAINT_ON_RESIZE )
3004 {
3005 className += wxT("NR");
3006 }
3007
3008 // do create the window
3009 wxWindowCreationHook hook(this);
3010
3011 #ifdef __WXWINCE__
3012 if (extendedStyle == 0)
3013 {
3014 m_hWnd = (WXHWND)::CreateWindow
3015 (
3016 className,
3017 title ? title : wxEmptyString,
3018 style,
3019 x, y, w, h,
3020 (HWND)MSWGetParent(),
3021 (HMENU)controlId,
3022 wxGetInstance(),
3023 NULL // no extra data
3024 );
3025 }
3026 else
3027 #endif
3028 {
3029 m_hWnd = (WXHWND)::CreateWindowEx
3030 (
3031 extendedStyle,
3032 className,
3033 title ? title : wxEmptyString,
3034 style,
3035 x, y, w, h,
3036 (HWND)MSWGetParent(),
3037 (HMENU)controlId,
3038 wxGetInstance(),
3039 NULL // no extra data
3040 );
3041 }
3042
3043 if ( !m_hWnd )
3044 {
3045 wxLogSysError(_("Can't create window of class %s"), wclass);
3046
3047 return FALSE;
3048 }
3049
3050 SubclassWin(m_hWnd);
3051
3052 SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT));
3053
3054 return TRUE;
3055 }
3056
3057 // ===========================================================================
3058 // MSW message handlers
3059 // ===========================================================================
3060
3061 // ---------------------------------------------------------------------------
3062 // WM_NOTIFY
3063 // ---------------------------------------------------------------------------
3064
3065 #ifdef __WIN95__
3066
3067 bool wxWindowMSW::HandleNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
3068 {
3069 #ifndef __WXMICROWIN__
3070 LPNMHDR hdr = (LPNMHDR)lParam;
3071 HWND hWnd = hdr->hwndFrom;
3072 wxWindow *win = wxFindWinFromHandle((WXHWND)hWnd);
3073
3074 // if the control is one of our windows, let it handle the message itself
3075 if ( win )
3076 {
3077 return win->MSWOnNotify(idCtrl, lParam, result);
3078 }
3079
3080 // VZ: why did we do it? normally this is unnecessary and, besides, it
3081 // breaks the message processing for the toolbars because the tooltip
3082 // notifications were being forwarded to the toolbar child controls
3083 // (if it had any) before being passed to the toolbar itself, so in my
3084 // example the tooltip for the combobox was always shown instead of the
3085 // correct button tooltips
3086 #if 0
3087 // try all our children
3088 wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
3089 while ( node )
3090 {
3091 wxWindow *child = node->GetData();
3092 if ( child->MSWOnNotify(idCtrl, lParam, result) )
3093 {
3094 return TRUE;
3095 }
3096
3097 node = node->GetNext();
3098 }
3099 #endif // 0
3100
3101 // by default, handle it ourselves
3102 return MSWOnNotify(idCtrl, lParam, result);
3103 #else // __WXMICROWIN__
3104 return FALSE;
3105 #endif
3106 }
3107
3108 #if wxUSE_TOOLTIPS
3109
3110 bool wxWindowMSW::HandleTooltipNotify(WXUINT code,
3111 WXLPARAM lParam,
3112 const wxString& ttip)
3113 {
3114 // I don't know why it happens, but the versions of comctl32.dll starting
3115 // from 4.70 sometimes send TTN_NEEDTEXTW even to ANSI programs (normally,
3116 // this message is supposed to be sent to Unicode programs only) -- hence
3117 // we need to handle it as well, otherwise no tooltips will be shown in
3118 // this case
3119 #ifndef __WXWINCE__
3120 if ( !(code == (WXUINT) TTN_NEEDTEXTA || code == (WXUINT) TTN_NEEDTEXTW) || ttip.empty() )
3121 {
3122 // not a tooltip message or no tooltip to show anyhow
3123 return FALSE;
3124 }
3125 #endif
3126
3127 LPTOOLTIPTEXT ttText = (LPTOOLTIPTEXT)lParam;
3128
3129 #if !wxUSE_UNICODE
3130 if ( code == (WXUINT) TTN_NEEDTEXTA )
3131 {
3132 // we pass just the pointer as we store the string internally anyhow
3133 ttText->lpszText = (char *)ttip.c_str();
3134 }
3135 else // TTN_NEEDTEXTW
3136 #endif // !Unicode
3137 {
3138 #if wxUSE_UNICODE
3139 // in Unicode mode this is just what we need
3140 ttText->lpszText = (wxChar *)ttip.c_str();
3141 #else // !Unicode
3142 MultiByteToWideChar(CP_ACP, 0, ttip, ttip.length()+1,
3143 (wchar_t *)ttText->szText,
3144 sizeof(ttText->szText) / sizeof(wchar_t));
3145 #endif // Unicode/!Unicode
3146 }
3147
3148 return TRUE;
3149 }
3150
3151 #endif // wxUSE_TOOLTIPS
3152
3153 bool wxWindowMSW::MSWOnNotify(int WXUNUSED(idCtrl),
3154 WXLPARAM lParam,
3155 WXLPARAM* WXUNUSED(result))
3156 {
3157 #if wxUSE_TOOLTIPS
3158 if ( m_tooltip )
3159 {
3160 NMHDR* hdr = (NMHDR *)lParam;
3161 if ( HandleTooltipNotify(hdr->code, lParam, m_tooltip->GetTip()))
3162 {
3163 // processed
3164 return TRUE;
3165 }
3166 }
3167 #endif // wxUSE_TOOLTIPS
3168
3169 return FALSE;
3170 }
3171
3172 #endif // __WIN95__
3173
3174 // ---------------------------------------------------------------------------
3175 // end session messages
3176 // ---------------------------------------------------------------------------
3177
3178 bool wxWindowMSW::HandleQueryEndSession(long logOff, bool *mayEnd)
3179 {
3180 #ifndef __WXWINCE__
3181 wxCloseEvent event(wxEVT_QUERY_END_SESSION, -1);
3182 event.SetEventObject(wxTheApp);
3183 event.SetCanVeto(TRUE);
3184 event.SetLoggingOff(logOff == (long)ENDSESSION_LOGOFF);
3185
3186 bool rc = wxTheApp->ProcessEvent(event);
3187
3188 if ( rc )
3189 {
3190 // we may end only if the app didn't veto session closing (double
3191 // negation...)
3192 *mayEnd = !event.GetVeto();
3193 }
3194
3195 return rc;
3196 #else
3197 return FALSE;
3198 #endif
3199 }
3200
3201 bool wxWindowMSW::HandleEndSession(bool endSession, long logOff)
3202 {
3203 #ifndef __WXWINCE__
3204 // do nothing if the session isn't ending
3205 if ( !endSession )
3206 return FALSE;
3207
3208 // only send once
3209 if ( (this != wxTheApp->GetTopWindow()) )
3210 return FALSE;
3211
3212 wxCloseEvent event(wxEVT_END_SESSION, -1);
3213 event.SetEventObject(wxTheApp);
3214 event.SetCanVeto(FALSE);
3215 event.SetLoggingOff( (logOff == (long)ENDSESSION_LOGOFF) );
3216
3217 return wxTheApp->ProcessEvent(event);
3218 #else
3219 return FALSE;
3220 #endif
3221 }
3222
3223 // ---------------------------------------------------------------------------
3224 // window creation/destruction
3225 // ---------------------------------------------------------------------------
3226
3227 bool wxWindowMSW::HandleCreate(WXLPCREATESTRUCT cs, bool *mayCreate)
3228 {
3229 // if we have WS_EX_CONTROLPARENT flag we absolutely *must* set it for our
3230 // parent as well as otherwise several Win32 functions using
3231 // GetNextDlgTabItem() to iterate over all controls such as
3232 // IsDialogMessage() or DefDlgProc() would enter an infinite loop: indeed,
3233 // all of them iterate over all the controls starting from the focus and
3234 // stop iterating when they get back to the focus but unless all parents
3235 // have WS_EX_CONTROLPARENT bit set, they would never get back to focus
3236 #ifndef __WXWINCE__
3237 if ( ((CREATESTRUCT *)cs)->dwExStyle & WS_EX_CONTROLPARENT )
3238 {
3239 // there is no need to do anything for the top level windows
3240 const wxWindow *parent = GetParent();
3241 while ( parent && !parent->IsTopLevel() )
3242 {
3243 LONG exStyle = ::GetWindowLong(GetHwndOf(parent), GWL_EXSTYLE);
3244 if ( !(exStyle & WS_EX_CONTROLPARENT) )
3245 {
3246 // force the parent to have this style
3247 ::SetWindowLong(GetHwndOf(parent), GWL_EXSTYLE,
3248 exStyle | WS_EX_CONTROLPARENT);
3249 }
3250
3251 parent = parent->GetParent();
3252 }
3253 }
3254 #endif
3255
3256 // TODO: should generate this event from WM_NCCREATE
3257 wxWindowCreateEvent event((wxWindow *)this);
3258 (void)GetEventHandler()->ProcessEvent(event);
3259
3260 *mayCreate = TRUE;
3261
3262 return TRUE;
3263 }
3264
3265 bool wxWindowMSW::HandleDestroy()
3266 {
3267 SendDestroyEvent();
3268
3269 // delete our drop target if we've got one
3270 #if wxUSE_DRAG_AND_DROP
3271 if ( m_dropTarget != NULL )
3272 {
3273 m_dropTarget->Revoke(m_hWnd);
3274
3275 delete m_dropTarget;
3276 m_dropTarget = NULL;
3277 }
3278 #endif // wxUSE_DRAG_AND_DROP
3279
3280 // WM_DESTROY handled
3281 return TRUE;
3282 }
3283
3284 // ---------------------------------------------------------------------------
3285 // activation/focus
3286 // ---------------------------------------------------------------------------
3287
3288 bool wxWindowMSW::HandleActivate(int state,
3289 bool WXUNUSED(minimized),
3290 WXHWND WXUNUSED(activate))
3291 {
3292 wxActivateEvent event(wxEVT_ACTIVATE,
3293 (state == WA_ACTIVE) || (state == WA_CLICKACTIVE),
3294 m_windowId);
3295 event.SetEventObject(this);
3296
3297 return GetEventHandler()->ProcessEvent(event);
3298 }
3299
3300 bool wxWindowMSW::HandleSetFocus(WXHWND hwnd)
3301 {
3302 // notify the parent keeping track of focus for the kbd navigation
3303 // purposes that we got it
3304 wxChildFocusEvent eventFocus((wxWindow *)this);
3305 (void)GetEventHandler()->ProcessEvent(eventFocus);
3306
3307 #if wxUSE_CARET
3308 // Deal with caret
3309 if ( m_caret )
3310 {
3311 m_caret->OnSetFocus();
3312 }
3313 #endif // wxUSE_CARET
3314
3315 #if wxUSE_TEXTCTRL
3316 // If it's a wxTextCtrl don't send the event as it will be done
3317 // after the control gets to process it from EN_FOCUS handler
3318 if ( wxDynamicCastThis(wxTextCtrl) )
3319 {
3320 return FALSE;
3321 }
3322 #endif // wxUSE_TEXTCTRL
3323
3324 wxFocusEvent event(wxEVT_SET_FOCUS, m_windowId);
3325 event.SetEventObject(this);
3326
3327 // wxFindWinFromHandle() may return NULL, it is ok
3328 event.SetWindow(wxFindWinFromHandle(hwnd));
3329
3330 return GetEventHandler()->ProcessEvent(event);
3331 }
3332
3333 bool wxWindowMSW::HandleKillFocus(WXHWND hwnd)
3334 {
3335 #if wxUSE_CARET
3336 // Deal with caret
3337 if ( m_caret )
3338 {
3339 m_caret->OnKillFocus();
3340 }
3341 #endif // wxUSE_CARET
3342
3343 #if wxUSE_TEXTCTRL
3344 // If it's a wxTextCtrl don't send the event as it will be done
3345 // after the control gets to process it.
3346 wxTextCtrl *ctrl = wxDynamicCastThis(wxTextCtrl);
3347 if ( ctrl )
3348 {
3349 return FALSE;
3350 }
3351 #endif
3352
3353 // Don't send the event when in the process of being deleted. This can
3354 // only cause problems if the event handler tries to access the object.
3355 if ( m_isBeingDeleted )
3356 {
3357 return FALSE;
3358 }
3359
3360 wxFocusEvent event(wxEVT_KILL_FOCUS, m_windowId);
3361 event.SetEventObject(this);
3362
3363 // wxFindWinFromHandle() may return NULL, it is ok
3364 event.SetWindow(wxFindWinFromHandle(hwnd));
3365
3366 return GetEventHandler()->ProcessEvent(event);
3367 }
3368
3369 // ---------------------------------------------------------------------------
3370 // miscellaneous
3371 // ---------------------------------------------------------------------------
3372
3373 bool wxWindowMSW::HandleShow(bool show, int WXUNUSED(status))
3374 {
3375 wxShowEvent event(GetId(), show);
3376 event.m_eventObject = this;
3377
3378 return GetEventHandler()->ProcessEvent(event);
3379 }
3380
3381 bool wxWindowMSW::HandleInitDialog(WXHWND WXUNUSED(hWndFocus))
3382 {
3383 wxInitDialogEvent event(GetId());
3384 event.m_eventObject = this;
3385
3386 return GetEventHandler()->ProcessEvent(event);
3387 }
3388
3389 bool wxWindowMSW::HandleDropFiles(WXWPARAM wParam)
3390 {
3391 #if defined (__WXMICROWIN__) || defined(__WXWINCE__)
3392 return FALSE;
3393 #else // __WXMICROWIN__
3394 HDROP hFilesInfo = (HDROP) wParam;
3395
3396 // Get the total number of files dropped
3397 UINT gwFilesDropped = ::DragQueryFile
3398 (
3399 (HDROP)hFilesInfo,
3400 (UINT)-1,
3401 (LPTSTR)0,
3402 (UINT)0
3403 );
3404
3405 wxString *files = new wxString[gwFilesDropped];
3406 for ( UINT wIndex = 0; wIndex < gwFilesDropped; wIndex++ )
3407 {
3408 // first get the needed buffer length (+1 for terminating NUL)
3409 size_t len = ::DragQueryFile(hFilesInfo, wIndex, NULL, 0) + 1;
3410
3411 // and now get the file name
3412 ::DragQueryFile(hFilesInfo, wIndex,
3413 wxStringBuffer(files[wIndex], len), len);
3414 }
3415 DragFinish (hFilesInfo);
3416
3417 wxDropFilesEvent event(wxEVT_DROP_FILES, gwFilesDropped, files);
3418 event.m_eventObject = this;
3419
3420 POINT dropPoint;
3421 DragQueryPoint(hFilesInfo, (LPPOINT) &dropPoint);
3422 event.m_pos.x = dropPoint.x;
3423 event.m_pos.y = dropPoint.y;
3424
3425 return GetEventHandler()->ProcessEvent(event);
3426 #endif
3427 }
3428
3429
3430 bool wxWindowMSW::HandleSetCursor(WXHWND WXUNUSED(hWnd),
3431 short nHitTest,
3432 int WXUNUSED(mouseMsg))
3433 {
3434 #ifndef __WXMICROWIN__
3435 // the logic is as follows:
3436 // -1. don't set cursor for non client area, including but not limited to
3437 // the title bar, scrollbars, &c
3438 // 0. allow the user to override default behaviour by using EVT_SET_CURSOR
3439 // 1. if we have the cursor set it unless wxIsBusy()
3440 // 2. if we're a top level window, set some cursor anyhow
3441 // 3. if wxIsBusy(), set the busy cursor, otherwise the global one
3442
3443 if ( nHitTest != HTCLIENT )
3444 {
3445 return FALSE;
3446 }
3447
3448 HCURSOR hcursor = 0;
3449
3450 // first ask the user code - it may wish to set the cursor in some very
3451 // specific way (for example, depending on the current position)
3452 POINT pt;
3453 if ( !::GetCursorPos(&pt) )
3454 {
3455 wxLogLastError(wxT("GetCursorPos"));
3456 }
3457
3458 int x = pt.x,
3459 y = pt.y;
3460 ScreenToClient(&x, &y);
3461 wxSetCursorEvent event(x, y);
3462
3463 bool processedEvtSetCursor = GetEventHandler()->ProcessEvent(event);
3464 if ( processedEvtSetCursor && event.HasCursor() )
3465 {
3466 hcursor = GetHcursorOf(event.GetCursor());
3467 }
3468
3469 if ( !hcursor )
3470 {
3471 bool isBusy = wxIsBusy();
3472
3473 // the test for processedEvtSetCursor is here to prevent using m_cursor
3474 // if the user code caught EVT_SET_CURSOR() and returned nothing from
3475 // it - this is a way to say that our cursor shouldn't be used for this
3476 // point
3477 if ( !processedEvtSetCursor && m_cursor.Ok() )
3478 {
3479 hcursor = GetHcursorOf(m_cursor);
3480 }
3481
3482 if ( !GetParent() )
3483 {
3484 if ( isBusy )
3485 {
3486 hcursor = wxGetCurrentBusyCursor();
3487 }
3488 else if ( !hcursor )
3489 {
3490 const wxCursor *cursor = wxGetGlobalCursor();
3491 if ( cursor && cursor->Ok() )
3492 {
3493 hcursor = GetHcursorOf(*cursor);
3494 }
3495 }
3496 }
3497 }
3498
3499 if ( hcursor )
3500 {
3501 // wxLogDebug("HandleSetCursor: Setting cursor %ld", (long) hcursor);
3502
3503 ::SetCursor(hcursor);
3504
3505 // cursor set, stop here
3506 return TRUE;
3507 }
3508 #endif // __WXMICROWIN__
3509
3510 // pass up the window chain
3511 return FALSE;
3512 }
3513
3514 // ---------------------------------------------------------------------------
3515 // owner drawn stuff
3516 // ---------------------------------------------------------------------------
3517
3518 bool wxWindowMSW::MSWOnDrawItem(int id, WXDRAWITEMSTRUCT *itemStruct)
3519 {
3520 #if wxUSE_OWNER_DRAWN
3521
3522 #if wxUSE_MENUS_NATIVE
3523 // is it a menu item?
3524 DRAWITEMSTRUCT *pDrawStruct = (DRAWITEMSTRUCT *)itemStruct;
3525 if ( id == 0 && pDrawStruct->CtlType == ODT_MENU )
3526 {
3527 wxMenuItem *pMenuItem = (wxMenuItem *)(pDrawStruct->itemData);
3528
3529 wxCHECK( pMenuItem->IsKindOf(CLASSINFO(wxMenuItem)), FALSE );
3530
3531 // prepare to call OnDrawItem(): notice using of wxDCTemp to prevent
3532 // the DC from being released
3533 wxDCTemp dc((WXHDC)pDrawStruct->hDC);
3534 wxRect rect(pDrawStruct->rcItem.left, pDrawStruct->rcItem.top,
3535 pDrawStruct->rcItem.right - pDrawStruct->rcItem.left,
3536 pDrawStruct->rcItem.bottom - pDrawStruct->rcItem.top);
3537
3538 return pMenuItem->OnDrawItem
3539 (
3540 dc,
3541 rect,
3542 (wxOwnerDrawn::wxODAction)pDrawStruct->itemAction,
3543 (wxOwnerDrawn::wxODStatus)pDrawStruct->itemState
3544 );
3545 }
3546 #endif // wxUSE_MENUS_NATIVE
3547
3548 #endif // USE_OWNER_DRAWN
3549
3550 #if wxUSE_CONTROLS
3551
3552 #if wxUSE_OWNER_DRAWN
3553 wxWindow *item = FindItem(id);
3554 if ( item && item->IsKindOf(CLASSINFO(wxControl)) )
3555 return ((wxControl *)item)->MSWOnDraw(itemStruct);
3556 #elif !defined(__WXUNIVERSAL__)
3557 // we may still have owner-drawn buttons internally because we have to make
3558 // them owner-drawn to support colour change
3559 wxWindow *item = FindItem(id);
3560 if ( item && item->IsKindOf(CLASSINFO(wxButton)) )
3561 return ((wxButton *)item)->MSWOnDraw(itemStruct);
3562 #endif // USE_OWNER_DRAWN
3563
3564 #endif // wxUSE_CONTROLS
3565
3566 return FALSE;
3567 }
3568
3569 bool wxWindowMSW::MSWOnMeasureItem(int id, WXMEASUREITEMSTRUCT *itemStruct)
3570 {
3571 #if wxUSE_OWNER_DRAWN
3572 // is it a menu item?
3573 MEASUREITEMSTRUCT *pMeasureStruct = (MEASUREITEMSTRUCT *)itemStruct;
3574 if ( id == 0 && pMeasureStruct->CtlType == ODT_MENU )
3575 {
3576 wxMenuItem *pMenuItem = (wxMenuItem *)(pMeasureStruct->itemData);
3577
3578 wxCHECK( pMenuItem->IsKindOf(CLASSINFO(wxMenuItem)), FALSE );
3579
3580 return pMenuItem->OnMeasureItem(&pMeasureStruct->itemWidth,
3581 &pMeasureStruct->itemHeight);
3582 }
3583
3584 wxWindow *item = FindItem(id);
3585 if ( item && item->IsKindOf(CLASSINFO(wxControl)) )
3586 {
3587 return ((wxControl *)item)->MSWOnMeasure(itemStruct);
3588 }
3589 #endif // owner-drawn menus
3590 return FALSE;
3591 }
3592
3593 // ---------------------------------------------------------------------------
3594 // colours and palettes
3595 // ---------------------------------------------------------------------------
3596
3597 bool wxWindowMSW::HandleSysColorChange()
3598 {
3599 wxSysColourChangedEvent event;
3600 event.SetEventObject(this);
3601
3602 (void)GetEventHandler()->ProcessEvent(event);
3603
3604 // always let the system carry on the default processing to allow the
3605 // native controls to react to the colours update
3606 return FALSE;
3607 }
3608
3609 bool wxWindowMSW::HandleDisplayChange()
3610 {
3611 wxDisplayChangedEvent event;
3612 event.SetEventObject(this);
3613
3614 return GetEventHandler()->ProcessEvent(event);
3615 }
3616
3617 bool wxWindowMSW::HandleCtlColor(WXHBRUSH *brush,
3618 WXHDC pDC,
3619 WXHWND pWnd,
3620 WXUINT nCtlColor,
3621 WXUINT message,
3622 WXWPARAM wParam,
3623 WXLPARAM lParam)
3624 {
3625 #ifndef __WXMICROWIN__
3626 WXHBRUSH hBrush = 0;
3627
3628 #ifdef __WXWINCE__
3629 if (FALSE)
3630 #else
3631 if ( nCtlColor == CTLCOLOR_DLG )
3632 #endif
3633 {
3634 hBrush = OnCtlColor(pDC, pWnd, nCtlColor, message, wParam, lParam);
3635 }
3636 #if wxUSE_CONTROLS
3637 else
3638 {
3639 wxControl *item = (wxControl *)FindItemByHWND(pWnd, TRUE);
3640 if ( item )
3641 hBrush = item->OnCtlColor(pDC, pWnd, nCtlColor, message, wParam, lParam);
3642 }
3643 #endif // wxUSE_CONTROLS
3644
3645 if ( hBrush )
3646 *brush = hBrush;
3647
3648 return hBrush != 0;
3649 #else // __WXMICROWIN__
3650 return FALSE;
3651 #endif
3652 }
3653
3654 // Define for each class of dialog and control
3655 WXHBRUSH wxWindowMSW::OnCtlColor(WXHDC WXUNUSED(hDC),
3656 WXHWND WXUNUSED(hWnd),
3657 WXUINT WXUNUSED(nCtlColor),
3658 WXUINT WXUNUSED(message),
3659 WXWPARAM WXUNUSED(wParam),
3660 WXLPARAM WXUNUSED(lParam))
3661 {
3662 return (WXHBRUSH)0;
3663 }
3664
3665 bool wxWindowMSW::HandlePaletteChanged(WXHWND hWndPalChange)
3666 {
3667 #if wxUSE_PALETTE
3668 // same as below except we don't respond to our own messages
3669 if ( hWndPalChange != GetHWND() )
3670 {
3671 // check to see if we our our parents have a custom palette
3672 wxWindowMSW *win = this;
3673 while ( win && !win->HasCustomPalette() )
3674 {
3675 win = win->GetParent();
3676 }
3677
3678 if ( win && win->HasCustomPalette() )
3679 {
3680 // realize the palette to see whether redrawing is needed
3681 HDC hdc = ::GetDC((HWND) hWndPalChange);
3682 win->m_palette.SetHPALETTE((WXHPALETTE)
3683 ::SelectPalette(hdc, GetHpaletteOf(win->m_palette), FALSE));
3684
3685 int result = ::RealizePalette(hdc);
3686
3687 // restore the palette (before releasing the DC)
3688 win->m_palette.SetHPALETTE((WXHPALETTE)
3689 ::SelectPalette(hdc, GetHpaletteOf(win->m_palette), FALSE));
3690 ::RealizePalette(hdc);
3691 ::ReleaseDC((HWND) hWndPalChange, hdc);
3692
3693 // now check for the need to redraw
3694 if (result > 0)
3695 InvalidateRect((HWND) hWndPalChange, NULL, TRUE);
3696 }
3697
3698 }
3699 #endif // wxUSE_PALETTE
3700
3701 wxPaletteChangedEvent event(GetId());
3702 event.SetEventObject(this);
3703 event.SetChangedWindow(wxFindWinFromHandle(hWndPalChange));
3704
3705 return GetEventHandler()->ProcessEvent(event);
3706 }
3707
3708 bool wxWindowMSW::HandleCaptureChanged(WXHWND hWndGainedCapture)
3709 {
3710 wxMouseCaptureChangedEvent event(GetId(), wxFindWinFromHandle(hWndGainedCapture));
3711 event.SetEventObject(this);
3712
3713 return GetEventHandler()->ProcessEvent(event);
3714 }
3715
3716 bool wxWindowMSW::HandleQueryNewPalette()
3717 {
3718
3719 #if wxUSE_PALETTE
3720 // check to see if we our our parents have a custom palette
3721 wxWindowMSW *win = this;
3722 while (!win->HasCustomPalette() && win->GetParent()) win = win->GetParent();
3723 if (win->HasCustomPalette()) {
3724 /* realize the palette to see whether redrawing is needed */
3725 HDC hdc = GetDC((HWND) GetHWND());
3726 win->m_palette.SetHPALETTE( (WXHPALETTE)
3727 ::SelectPalette(hdc, (HPALETTE) win->m_palette.GetHPALETTE(), FALSE) );
3728
3729 int result = ::RealizePalette(hdc);
3730 /* restore the palette (before releasing the DC) */
3731 win->m_palette.SetHPALETTE( (WXHPALETTE)
3732 ::SelectPalette(hdc, (HPALETTE) win->m_palette.GetHPALETTE(), TRUE) );
3733 ::RealizePalette(hdc);
3734 ::ReleaseDC((HWND) GetHWND(), hdc);
3735 /* now check for the need to redraw */
3736 if (result > 0)
3737 ::InvalidateRect((HWND) GetHWND(), NULL, TRUE);
3738 }
3739 #endif // wxUSE_PALETTE
3740
3741 wxQueryNewPaletteEvent event(GetId());
3742 event.SetEventObject(this);
3743
3744 return GetEventHandler()->ProcessEvent(event) && event.GetPaletteRealized();
3745 }
3746
3747 // Responds to colour changes: passes event on to children.
3748 void wxWindowMSW::OnSysColourChanged(wxSysColourChangedEvent& WXUNUSED(event))
3749 {
3750 // the top level window also reset the standard colour map as it might have
3751 // changed (there is no need to do it for the non top level windows as we
3752 // only have to do it once)
3753 if ( IsTopLevel() )
3754 {
3755 // FIXME-MT
3756 gs_hasStdCmap = FALSE;
3757 }
3758 wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
3759 while ( node )
3760 {
3761 // Only propagate to non-top-level windows because Windows already
3762 // sends this event to all top-level ones
3763 wxWindow *win = node->GetData();
3764 if ( !win->IsTopLevel() )
3765 {
3766 // we need to send the real WM_SYSCOLORCHANGE and not just trigger
3767 // EVT_SYS_COLOUR_CHANGED call because the latter wouldn't work for
3768 // the standard controls
3769 ::SendMessage(GetHwndOf(win), WM_SYSCOLORCHANGE, 0, 0);
3770 }
3771
3772 node = node->GetNext();
3773 }
3774
3775 // update the colours we use if they were not set explicitly by the user:
3776 // this must be done or OnCtlColor() would continue to use the old colours
3777 if ( !m_hasFgCol )
3778 {
3779 m_foregroundColour = wxSystemSettings::
3780 GetSystemColour(wxSYS_COLOUR_WINDOWTEXT);
3781 }
3782
3783 if ( !m_hasBgCol )
3784 {
3785 m_backgroundColour = wxSystemSettings::
3786 GetSystemColour(wxSYS_COLOUR_BTNFACE);
3787 }
3788 }
3789
3790 extern wxCOLORMAP *wxGetStdColourMap()
3791 {
3792 static COLORREF s_stdColours[wxSTD_COL_MAX];
3793 static wxCOLORMAP s_cmap[wxSTD_COL_MAX];
3794
3795 if ( !gs_hasStdCmap )
3796 {
3797 static bool s_coloursInit = FALSE;
3798
3799 if ( !s_coloursInit )
3800 {
3801 // When a bitmap is loaded, the RGB values can change (apparently
3802 // because Windows adjusts them to care for the old programs always
3803 // using 0xc0c0c0 while the transparent colour for the new Windows
3804 // versions is different). But we do this adjustment ourselves so
3805 // we want to avoid Windows' "help" and for this we need to have a
3806 // reference bitmap which can tell us what the RGB values change
3807 // to.
3808 wxBitmap stdColourBitmap(_T("wxBITMAP_STD_COLOURS"));
3809 if ( stdColourBitmap.Ok() )
3810 {
3811 // the pixels in the bitmap must correspond to wxSTD_COL_XXX!
3812 wxASSERT_MSG( stdColourBitmap.GetWidth() == wxSTD_COL_MAX,
3813 _T("forgot to update wxBITMAP_STD_COLOURS!") );
3814
3815 wxMemoryDC memDC;
3816 memDC.SelectObject(stdColourBitmap);
3817
3818 wxColour colour;
3819 for ( size_t i = 0; i < WXSIZEOF(s_stdColours); i++ )
3820 {
3821 memDC.GetPixel(i, 0, &colour);
3822 s_stdColours[i] = wxColourToRGB(colour);
3823 }
3824 }
3825 else // wxBITMAP_STD_COLOURS couldn't be loaded
3826 {
3827 s_stdColours[0] = RGB(000,000,000); // black
3828 s_stdColours[1] = RGB(128,128,128); // dark grey
3829 s_stdColours[2] = RGB(192,192,192); // light grey
3830 s_stdColours[3] = RGB(255,255,255); // white
3831 //s_stdColours[4] = RGB(000,000,255); // blue
3832 //s_stdColours[5] = RGB(255,000,255); // magenta
3833 }
3834
3835 s_coloursInit = TRUE;
3836 }
3837
3838 gs_hasStdCmap = TRUE;
3839
3840 // create the colour map
3841 #define INIT_CMAP_ENTRY(col) \
3842 s_cmap[wxSTD_COL_##col].from = s_stdColours[wxSTD_COL_##col]; \
3843 s_cmap[wxSTD_COL_##col].to = ::GetSysColor(COLOR_##col)
3844
3845 INIT_CMAP_ENTRY(BTNTEXT);
3846 INIT_CMAP_ENTRY(BTNSHADOW);
3847 INIT_CMAP_ENTRY(BTNFACE);
3848 INIT_CMAP_ENTRY(BTNHIGHLIGHT);
3849
3850 #undef INIT_CMAP_ENTRY
3851 }
3852
3853 return s_cmap;
3854 }
3855
3856 // ---------------------------------------------------------------------------
3857 // painting
3858 // ---------------------------------------------------------------------------
3859
3860 bool wxWindowMSW::HandlePaint()
3861 {
3862 // if (GetExtraStyle() & wxWS_EX_THEMED_BACKGROUND)
3863 // return FALSE;
3864
3865 HRGN hRegion = ::CreateRectRgn(0, 0, 0, 0); // Dummy call to get a handle
3866 if ( !hRegion )
3867 wxLogLastError(wxT("CreateRectRgn"));
3868 if ( ::GetUpdateRgn(GetHwnd(), hRegion, FALSE) == ERROR )
3869 wxLogLastError(wxT("GetUpdateRgn"));
3870
3871 m_updateRegion = wxRegion((WXHRGN) hRegion);
3872
3873 wxPaintEvent event(m_windowId);
3874 event.SetEventObject(this);
3875
3876 bool processed = GetEventHandler()->ProcessEvent(event);
3877
3878 // note that we must generate NC event after the normal one as otherwise
3879 // BeginPaint() will happily overwrite our decorations with the background
3880 // colour
3881 wxNcPaintEvent eventNc(m_windowId);
3882 eventNc.SetEventObject(this);
3883 GetEventHandler()->ProcessEvent(eventNc);
3884
3885 return processed;
3886 }
3887
3888 // Can be called from an application's OnPaint handler
3889 void wxWindowMSW::OnPaint(wxPaintEvent& event)
3890 {
3891 #ifdef __WXUNIVERSAL__
3892 event.Skip();
3893 #else
3894 HDC hDC = (HDC) wxPaintDC::FindDCInCache((wxWindow*) event.GetEventObject());
3895 if (hDC != 0)
3896 {
3897 MSWDefWindowProc(WM_PAINT, (WPARAM) hDC, 0);
3898 }
3899 #endif
3900 }
3901
3902 bool wxWindowMSW::HandleEraseBkgnd(WXHDC hdc)
3903 {
3904 // Prevents flicker when dragging
3905 if ( ::IsIconic(GetHwnd()) )
3906 return TRUE;
3907
3908 #if 0
3909 if (GetParent() && GetParent()->GetExtraStyle() & wxWS_EX_THEMED_BACKGROUND)
3910 {
3911 return FALSE;
3912 }
3913
3914 if (GetExtraStyle() & wxWS_EX_THEMED_BACKGROUND)
3915 {
3916 if (wxUxThemeEngine::Get())
3917 {
3918 WXHTHEME hTheme = wxUxThemeEngine::Get()->m_pfnOpenThemeData(GetHWND(), L"TAB");
3919 if (hTheme)
3920 {
3921 WXURECT rect;
3922 ::GetClientRect((HWND) GetHWND(), (RECT*) & rect);
3923 wxUxThemeEngine::Get()->m_pfnDrawThemeBackground(hTheme, hdc, 10 /* TABP_BODY */, 0, &rect, &rect);
3924 wxUxThemeEngine::Get()->m_pfnCloseThemeData(hTheme);
3925 return TRUE;
3926 }
3927 }
3928 }
3929 #endif
3930
3931 wxDCTemp dc(hdc);
3932
3933 dc.SetHDC(hdc);
3934 dc.SetWindow((wxWindow *)this);
3935 dc.BeginDrawing();
3936
3937 wxEraseEvent event(m_windowId, &dc);
3938 event.SetEventObject(this);
3939 bool rc = GetEventHandler()->ProcessEvent(event);
3940
3941 dc.EndDrawing();
3942
3943 // must be called manually as ~wxDC doesn't do anything for wxDCTemp
3944 dc.SelectOldObjects(hdc);
3945
3946 return rc;
3947 }
3948
3949 void wxWindowMSW::OnEraseBackground(wxEraseEvent& event)
3950 {
3951 RECT rect;
3952 ::GetClientRect(GetHwnd(), &rect);
3953
3954 COLORREF ref = PALETTERGB(m_backgroundColour.Red(),
3955 m_backgroundColour.Green(),
3956 m_backgroundColour.Blue());
3957 HBRUSH hBrush = ::CreateSolidBrush(ref);
3958 if ( !hBrush )
3959 wxLogLastError(wxT("CreateSolidBrush"));
3960
3961 HDC hdc = (HDC)event.GetDC()->GetHDC();
3962
3963 #ifndef __WXWINCE__
3964 int mode = ::SetMapMode(hdc, MM_TEXT);
3965 #endif
3966
3967 ::FillRect(hdc, &rect, hBrush);
3968 ::DeleteObject(hBrush);
3969
3970 #ifndef __WXWINCE__
3971 ::SetMapMode(hdc, mode);
3972 #endif
3973 }
3974
3975 // ---------------------------------------------------------------------------
3976 // moving and resizing
3977 // ---------------------------------------------------------------------------
3978
3979 bool wxWindowMSW::HandleMinimize()
3980 {
3981 wxIconizeEvent event(m_windowId);
3982 event.SetEventObject(this);
3983
3984 return GetEventHandler()->ProcessEvent(event);
3985 }
3986
3987 bool wxWindowMSW::HandleMaximize()
3988 {
3989 wxMaximizeEvent event(m_windowId);
3990 event.SetEventObject(this);
3991
3992 return GetEventHandler()->ProcessEvent(event);
3993 }
3994
3995 bool wxWindowMSW::HandleMove(int x, int y)
3996 {
3997 wxMoveEvent event(wxPoint(x, y), m_windowId);
3998 event.SetEventObject(this);
3999
4000 return GetEventHandler()->ProcessEvent(event);
4001 }
4002
4003 bool wxWindowMSW::HandleMoving(wxRect& rect)
4004 {
4005 wxMoveEvent event(rect, m_windowId);
4006 event.SetEventObject(this);
4007
4008 bool rc = GetEventHandler()->ProcessEvent(event);
4009 if (rc)
4010 rect = event.GetRect();
4011 return rc;
4012 }
4013
4014 bool wxWindowMSW::HandleSize(int WXUNUSED(w), int WXUNUSED(h),
4015 WXUINT WXUNUSED(flag))
4016 {
4017 // don't use w and h parameters as they specify the client size while
4018 // according to the docs EVT_SIZE handler is supposed to receive the total
4019 // size
4020 wxSizeEvent event(GetSize(), m_windowId);
4021 event.SetEventObject(this);
4022
4023 return GetEventHandler()->ProcessEvent(event);
4024 }
4025
4026 bool wxWindowMSW::HandleSizing(wxRect& rect)
4027 {
4028 wxSizeEvent event(rect, m_windowId);
4029 event.SetEventObject(this);
4030
4031 bool rc = GetEventHandler()->ProcessEvent(event);
4032 if (rc)
4033 rect = event.GetRect();
4034 return rc;
4035 }
4036
4037 bool wxWindowMSW::HandleGetMinMaxInfo(void *mmInfo)
4038 {
4039 #ifdef __WXWINCE__
4040 return FALSE;
4041 #else
4042 MINMAXINFO *info = (MINMAXINFO *)mmInfo;
4043
4044 bool rc = FALSE;
4045
4046 int minWidth = GetMinWidth(),
4047 minHeight = GetMinHeight(),
4048 maxWidth = GetMaxWidth(),
4049 maxHeight = GetMaxHeight();
4050
4051 if ( minWidth != -1 )
4052 {
4053 info->ptMinTrackSize.x = minWidth;
4054 rc = TRUE;
4055 }
4056
4057 if ( minHeight != -1 )
4058 {
4059 info->ptMinTrackSize.y = minHeight;
4060 rc = TRUE;
4061 }
4062
4063 if ( maxWidth != -1 )
4064 {
4065 info->ptMaxTrackSize.x = maxWidth;
4066 rc = TRUE;
4067 }
4068
4069 if ( maxHeight != -1 )
4070 {
4071 info->ptMaxTrackSize.y = maxHeight;
4072 rc = TRUE;
4073 }
4074
4075 return rc;
4076 #endif
4077 }
4078
4079 // ---------------------------------------------------------------------------
4080 // command messages
4081 // ---------------------------------------------------------------------------
4082
4083 bool wxWindowMSW::HandleCommand(WXWORD id, WXWORD cmd, WXHWND control)
4084 {
4085 #if wxUSE_MENUS_NATIVE
4086 if ( !cmd && wxCurrentPopupMenu )
4087 {
4088 wxMenu *popupMenu = wxCurrentPopupMenu;
4089 wxCurrentPopupMenu = NULL;
4090
4091 return popupMenu->MSWCommand(cmd, id);
4092 }
4093 #endif // wxUSE_MENUS_NATIVE
4094
4095 wxWindow *win = NULL;
4096
4097 // first try to find it from HWND - this works even with the broken
4098 // programs using the same ids for different controls
4099 if ( control )
4100 {
4101 win = wxFindWinFromHandle(control);
4102 }
4103
4104 // try the id
4105 if ( !win )
4106 {
4107 // must cast to a signed type before comparing with other ids!
4108 win = FindItem((signed short)id);
4109 }
4110
4111 if ( win )
4112 {
4113 return win->MSWCommand(cmd, id);
4114 }
4115
4116 // the messages sent from the in-place edit control used by the treectrl
4117 // for label editing have id == 0, but they should _not_ be treated as menu
4118 // messages (they are EN_XXX ones, in fact) so don't translate anything
4119 // coming from a control to wxEVT_COMMAND_MENU_SELECTED
4120 if ( !control )
4121 {
4122 // If no child window, it may be an accelerator, e.g. for a popup menu
4123 // command
4124
4125 wxCommandEvent event(wxEVT_COMMAND_MENU_SELECTED);
4126 event.SetEventObject(this);
4127 event.SetId(id);
4128 event.SetInt(id);
4129
4130 return GetEventHandler()->ProcessEvent(event);
4131 }
4132 #if wxUSE_SPINCTRL && !defined(__WXUNIVERSAL__)
4133 else
4134 {
4135 // the text ctrl which is logically part of wxSpinCtrl sends WM_COMMAND
4136 // notifications to its parent which we want to reflect back to
4137 // wxSpinCtrl
4138 wxSpinCtrl *spin = wxSpinCtrl::GetSpinForTextCtrl(control);
4139 if ( spin && spin->ProcessTextCommand(cmd, id) )
4140 return TRUE;
4141 }
4142 #endif // wxUSE_SPINCTRL
4143
4144 return FALSE;
4145 }
4146
4147 bool wxWindowMSW::HandleSysCommand(WXWPARAM wParam, WXLPARAM WXUNUSED(lParam))
4148 {
4149 #ifndef __WXWINCE__
4150 // 4 bits are reserved
4151 switch ( wParam & 0xFFFFFFF0 )
4152 {
4153 case SC_MAXIMIZE:
4154 return HandleMaximize();
4155
4156 case SC_MINIMIZE:
4157 return HandleMinimize();
4158 }
4159 #endif
4160
4161 return FALSE;
4162 }
4163
4164 // ---------------------------------------------------------------------------
4165 // mouse events
4166 // ---------------------------------------------------------------------------
4167
4168 void wxWindowMSW::InitMouseEvent(wxMouseEvent& event,
4169 int x, int y,
4170 WXUINT flags)
4171 {
4172 // our client coords are not quite the same as Windows ones
4173 wxPoint pt = GetClientAreaOrigin();
4174 event.m_x = x - pt.x;
4175 event.m_y = y - pt.y;
4176
4177 event.m_shiftDown = (flags & MK_SHIFT) != 0;
4178 event.m_controlDown = (flags & MK_CONTROL) != 0;
4179 event.m_leftDown = (flags & MK_LBUTTON) != 0;
4180 event.m_middleDown = (flags & MK_MBUTTON) != 0;
4181 event.m_rightDown = (flags & MK_RBUTTON) != 0;
4182 // event.m_altDown = (::GetKeyState(VK_MENU) & 0x80000000) != 0;
4183 // Returns different negative values on WinME and WinNT,
4184 // so simply test for negative value.
4185 event.m_altDown = ::GetKeyState(VK_MENU) < 0;
4186
4187 event.SetTimestamp(s_currentMsg.time);
4188 event.m_eventObject = this;
4189 event.SetId(GetId());
4190
4191 #if wxUSE_MOUSEEVENT_HACK
4192 m_lastMouseX = x;
4193 m_lastMouseY = y;
4194 m_lastMouseEvent = event.GetEventType();
4195 #endif // wxUSE_MOUSEEVENT_HACK
4196 }
4197
4198 // Windows doesn't send the mouse events to the static controls (which are
4199 // transparent in the sense that their WM_NCHITTEST handler returns
4200 // HTTRANSPARENT) at all but we want all controls to receive the mouse events
4201 // and so we manually check if we don't have a child window under mouse and if
4202 // we do, send the event to it instead of the window Windows had sent WM_XXX
4203 // to.
4204 //
4205 // Notice that this is not done for the mouse move events because this could
4206 // (would?) be too slow, but only for clicks which means that the static texts
4207 // still don't get move, enter nor leave events.
4208 static wxWindowMSW *FindWindowForMouseEvent(wxWindowMSW *win, int *x, int *y) //TW:REQ:Univ
4209 {
4210 wxCHECK_MSG( x && y, win, _T("NULL pointer in FindWindowForMouseEvent") );
4211
4212 // first try to find a non transparent child: this allows us to send events
4213 // to a static text which is inside a static box, for example
4214 POINT pt = { *x, *y };
4215 HWND hwnd = GetHwndOf(win),
4216 hwndUnderMouse;
4217
4218 #ifdef __WXWINCE__
4219 hwndUnderMouse = ::ChildWindowFromPoint
4220 (
4221 hwnd,
4222 pt
4223 );
4224 #else
4225 hwndUnderMouse = ::ChildWindowFromPointEx
4226 (
4227 hwnd,
4228 pt,
4229 CWP_SKIPINVISIBLE |
4230 CWP_SKIPDISABLED |
4231 CWP_SKIPTRANSPARENT
4232 );
4233 #endif
4234
4235 if ( !hwndUnderMouse || hwndUnderMouse == hwnd )
4236 {
4237 // now try any child window at all
4238 hwndUnderMouse = ::ChildWindowFromPoint(hwnd, pt);
4239 }
4240
4241 // check that we have a child window which is susceptible to receive mouse
4242 // events: for this it must be shown and enabled
4243 if ( hwndUnderMouse &&
4244 hwndUnderMouse != hwnd &&
4245 ::IsWindowVisible(hwndUnderMouse) &&
4246 ::IsWindowEnabled(hwndUnderMouse) )
4247 {
4248 wxWindow *winUnderMouse = wxFindWinFromHandle((WXHWND)hwndUnderMouse);
4249 if ( winUnderMouse )
4250 {
4251 // translate the mouse coords to the other window coords
4252 win->ClientToScreen(x, y);
4253 winUnderMouse->ScreenToClient(x, y);
4254
4255 win = winUnderMouse;
4256 }
4257 }
4258
4259 return win;
4260 }
4261
4262 bool wxWindowMSW::HandleMouseEvent(WXUINT msg, int x, int y, WXUINT flags)
4263 {
4264 // the mouse events take consecutive IDs from WM_MOUSEFIRST to
4265 // WM_MOUSELAST, so it's enough to substract WM_MOUSEMOVE == WM_MOUSEFIRST
4266 // from the message id and take the value in the table to get wxWin event
4267 // id
4268 static const wxEventType eventsMouse[] =
4269 {
4270 wxEVT_MOTION,
4271 wxEVT_LEFT_DOWN,
4272 wxEVT_LEFT_UP,
4273 wxEVT_LEFT_DCLICK,
4274 wxEVT_RIGHT_DOWN,
4275 wxEVT_RIGHT_UP,
4276 wxEVT_RIGHT_DCLICK,
4277 wxEVT_MIDDLE_DOWN,
4278 wxEVT_MIDDLE_UP,
4279 wxEVT_MIDDLE_DCLICK
4280 };
4281
4282 wxMouseEvent event(eventsMouse[msg - WM_MOUSEMOVE]);
4283 InitMouseEvent(event, x, y, flags);
4284
4285 return GetEventHandler()->ProcessEvent(event);
4286 }
4287
4288 bool wxWindowMSW::HandleMouseMove(int x, int y, WXUINT flags)
4289 {
4290 if ( !m_mouseInWindow )
4291 {
4292 // it would be wrong to assume that just because we get a mouse move
4293 // event that the mouse is inside the window: although this is usually
4294 // true, it is not if we had captured the mouse, so we need to check
4295 // the mouse coordinates here
4296 if ( !HasCapture() || IsMouseInWindow() )
4297 {
4298 // Generate an ENTER event
4299 m_mouseInWindow = TRUE;
4300
4301 wxMouseEvent event(wxEVT_ENTER_WINDOW);
4302 InitMouseEvent(event, x, y, flags);
4303
4304 (void)GetEventHandler()->ProcessEvent(event);
4305 }
4306 }
4307
4308 #if wxUSE_MOUSEEVENT_HACK
4309 // Window gets a click down message followed by a mouse move message even
4310 // if position isn't changed! We want to discard the trailing move event
4311 // if x and y are the same.
4312 if ( (m_lastMouseEvent == wxEVT_RIGHT_DOWN ||
4313 m_lastMouseEvent == wxEVT_LEFT_DOWN ||
4314 m_lastMouseEvent == wxEVT_MIDDLE_DOWN) &&
4315 (m_lastMouseX == x && m_lastMouseY == y) )
4316 {
4317 m_lastMouseEvent = wxEVT_MOTION;
4318
4319 return FALSE;
4320 }
4321 #endif // wxUSE_MOUSEEVENT_HACK
4322
4323 return HandleMouseEvent(WM_MOUSEMOVE, x, y, flags);
4324 }
4325
4326
4327 bool wxWindowMSW::HandleMouseWheel(WXWPARAM wParam, WXLPARAM lParam)
4328 {
4329 #if wxUSE_MOUSEWHEEL
4330 wxMouseEvent event(wxEVT_MOUSEWHEEL);
4331 InitMouseEvent(event,
4332 GET_X_LPARAM(lParam),
4333 GET_Y_LPARAM(lParam),
4334 LOWORD(wParam));
4335 event.m_wheelRotation = (short)HIWORD(wParam);
4336 event.m_wheelDelta = WHEEL_DELTA;
4337
4338 static int s_linesPerRotation = -1;
4339 if ( s_linesPerRotation == -1 )
4340 {
4341 if ( !::SystemParametersInfo(SPI_GETWHEELSCROLLLINES, 0,
4342 &s_linesPerRotation, 0))
4343 {
4344 // this is not supposed to happen
4345 wxLogLastError(_T("SystemParametersInfo(GETWHEELSCROLLLINES)"));
4346
4347 // the default is 3, so use it if SystemParametersInfo() failed
4348 s_linesPerRotation = 3;
4349 }
4350 }
4351
4352 event.m_linesPerAction = s_linesPerRotation;
4353 return GetEventHandler()->ProcessEvent(event);
4354
4355 #else
4356 (void) wParam;
4357 (void) lParam;
4358
4359 return FALSE;
4360 #endif
4361 }
4362
4363
4364 // ---------------------------------------------------------------------------
4365 // keyboard handling
4366 // ---------------------------------------------------------------------------
4367
4368 // create the key event of the given type for the given key - used by
4369 // HandleChar and HandleKeyDown/Up
4370 wxKeyEvent wxWindowMSW::CreateKeyEvent(wxEventType evType,
4371 int id,
4372 WXLPARAM lParam,
4373 WXWPARAM wParam) const
4374 {
4375 wxKeyEvent event(evType);
4376 event.SetId(GetId());
4377 event.m_shiftDown = wxIsShiftDown();
4378 event.m_controlDown = wxIsCtrlDown();
4379 event.m_altDown = (HIWORD(lParam) & KF_ALTDOWN) == KF_ALTDOWN;
4380
4381 event.m_eventObject = (wxWindow *)this; // const_cast
4382 event.m_keyCode = id;
4383 event.m_rawCode = (wxUint32) wParam;
4384 event.m_rawFlags = (wxUint32) lParam;
4385 event.SetTimestamp(s_currentMsg.time);
4386
4387 // translate the position to client coords
4388 POINT pt;
4389 GetCursorPos(&pt);
4390 RECT rect;
4391 GetWindowRect(GetHwnd(),&rect);
4392 pt.x -= rect.left;
4393 pt.y -= rect.top;
4394
4395 event.m_x = pt.x;
4396 event.m_y = pt.y;
4397
4398 return event;
4399 }
4400
4401 // isASCII is TRUE only when we're called from WM_CHAR handler and not from
4402 // WM_KEYDOWN one
4403 bool wxWindowMSW::HandleChar(WXWPARAM wParam, WXLPARAM lParam, bool isASCII)
4404 {
4405 bool ctrlDown = FALSE;
4406
4407 int id;
4408 if ( isASCII )
4409 {
4410 // If 1 -> 26, translate to either special keycode or just set
4411 // ctrlDown. IOW, Ctrl-C should result in keycode == 3 and
4412 // ControlDown() == TRUE.
4413 id = wParam;
4414 if ( (id > 0) && (id < 27) )
4415 {
4416 switch (id)
4417 {
4418 case 13:
4419 id = WXK_RETURN;
4420 break;
4421
4422 case 8:
4423 id = WXK_BACK;
4424 break;
4425
4426 case 9:
4427 id = WXK_TAB;
4428 break;
4429
4430 default:
4431 ctrlDown = TRUE;
4432 break;
4433 }
4434 }
4435 }
4436 else // we're called from WM_KEYDOWN
4437 {
4438 id = wxCharCodeMSWToWX(wParam);
4439 if ( id == 0 )
4440 {
4441 // it's ASCII and will be processed here only when called from
4442 // WM_CHAR (i.e. when isASCII = TRUE), don't process it now
4443 return FALSE;
4444 }
4445 }
4446
4447 wxKeyEvent event(CreateKeyEvent(wxEVT_CHAR, id, lParam, wParam));
4448
4449 // the alphanumeric keys produced by pressing AltGr+something on European
4450 // keyboards have both Ctrl and Alt modifiers which may confuse the user
4451 // code as, normally, keys with Ctrl and/or Alt don't result in anything
4452 // alphanumeric, so pretend that there are no modifiers at all (the
4453 // KEY_DOWN event would still have the correct modifiers if they're really
4454 // needed)
4455 if ( event.m_controlDown && event.m_altDown &&
4456 (id >= 32 && id < 256) )
4457 {
4458 event.m_controlDown =
4459 event.m_altDown = FALSE;
4460 }
4461
4462 return GetEventHandler()->ProcessEvent(event);
4463 }
4464
4465 bool wxWindowMSW::HandleKeyDown(WXWPARAM wParam, WXLPARAM lParam)
4466 {
4467 int id = wxCharCodeMSWToWX(wParam);
4468
4469 if ( !id )
4470 {
4471 // normal ASCII char
4472 id = wParam;
4473 }
4474
4475 if ( id != -1 ) // VZ: does this ever happen (FIXME)?
4476 {
4477 wxKeyEvent event(CreateKeyEvent(wxEVT_KEY_DOWN, id, lParam, wParam));
4478 if ( GetEventHandler()->ProcessEvent(event) )
4479 {
4480 return TRUE;
4481 }
4482 }
4483
4484 return FALSE;
4485 }
4486
4487 bool wxWindowMSW::HandleKeyUp(WXWPARAM wParam, WXLPARAM lParam)
4488 {
4489 int id = wxCharCodeMSWToWX(wParam);
4490
4491 if ( !id )
4492 {
4493 // normal ASCII char
4494 id = wParam;
4495 }
4496
4497 if ( id != -1 ) // VZ: does this ever happen (FIXME)?
4498 {
4499 wxKeyEvent event(CreateKeyEvent(wxEVT_KEY_UP, id, lParam, wParam));
4500 if ( GetEventHandler()->ProcessEvent(event) )
4501 return TRUE;
4502 }
4503
4504 return FALSE;
4505 }
4506
4507 int wxWindowMSW::HandleMenuChar(int chAccel, WXLPARAM lParam)
4508 {
4509 // FIXME: implement GetMenuItemCount for WinCE, possibly
4510 // in terms of GetMenuItemInfo
4511 #ifndef __WXWINCE__
4512 const HMENU hmenu = (HMENU)lParam;
4513
4514 MENUITEMINFO mii;
4515 wxZeroMemory(mii);
4516 mii.cbSize = sizeof(MENUITEMINFO);
4517 mii.fMask = MIIM_TYPE | MIIM_DATA;
4518
4519 // find if we have this letter in any owner drawn item
4520 const int count = ::GetMenuItemCount(hmenu);
4521 for ( int i = 0; i < count; i++ )
4522 {
4523 if ( ::GetMenuItemInfo(hmenu, i, TRUE, &mii) )
4524 {
4525 if ( mii.fType == MFT_OWNERDRAW )
4526 {
4527 // dwItemData member of the MENUITEMINFO is a
4528 // pointer to the associated wxMenuItem -- see the
4529 // menu creation code
4530 wxMenuItem *item = (wxMenuItem*)mii.dwItemData;
4531
4532 const wxChar *p = wxStrchr(item->GetText(), _T('&'));
4533 while ( p++ )
4534 {
4535 if ( *p == _T('&') )
4536 {
4537 // this is not the accel char, find the real one
4538 p = wxStrchr(p + 1, _T('&'));
4539 }
4540 else // got the accel char
4541 {
4542 // FIXME-UNICODE: this comparison doesn't risk to work
4543 // for non ASCII accelerator characters I'm afraid, but
4544 // what can we do?
4545 if ( wxToupper(*p) == chAccel )
4546 {
4547 return i;
4548 }
4549 else
4550 {
4551 // this one doesn't match
4552 break;
4553 }
4554 }
4555 }
4556 }
4557 }
4558 else // failed to get the menu text?
4559 {
4560 // it's not fatal, so don't show error, but still log
4561 // it
4562 wxLogLastError(_T("GetMenuItemInfo"));
4563 }
4564 }
4565 #endif
4566 return wxNOT_FOUND;
4567 }
4568
4569 // ---------------------------------------------------------------------------
4570 // joystick
4571 // ---------------------------------------------------------------------------
4572
4573 bool wxWindowMSW::HandleJoystickEvent(WXUINT msg, int x, int y, WXUINT flags)
4574 {
4575 #ifdef JOY_BUTTON1
4576 int change = 0;
4577 if ( flags & JOY_BUTTON1CHG )
4578 change = wxJOY_BUTTON1;
4579 if ( flags & JOY_BUTTON2CHG )
4580 change = wxJOY_BUTTON2;
4581 if ( flags & JOY_BUTTON3CHG )
4582 change = wxJOY_BUTTON3;
4583 if ( flags & JOY_BUTTON4CHG )
4584 change = wxJOY_BUTTON4;
4585
4586 int buttons = 0;
4587 if ( flags & JOY_BUTTON1 )
4588 buttons |= wxJOY_BUTTON1;
4589 if ( flags & JOY_BUTTON2 )
4590 buttons |= wxJOY_BUTTON2;
4591 if ( flags & JOY_BUTTON3 )
4592 buttons |= wxJOY_BUTTON3;
4593 if ( flags & JOY_BUTTON4 )
4594 buttons |= wxJOY_BUTTON4;
4595
4596 // the event ids aren't consecutive so we can't use table based lookup
4597 int joystick;
4598 wxEventType eventType;
4599 switch ( msg )
4600 {
4601 case MM_JOY1MOVE:
4602 joystick = 1;
4603 eventType = wxEVT_JOY_MOVE;
4604 break;
4605
4606 case MM_JOY2MOVE:
4607 joystick = 2;
4608 eventType = wxEVT_JOY_MOVE;
4609 break;
4610
4611 case MM_JOY1ZMOVE:
4612 joystick = 1;
4613 eventType = wxEVT_JOY_ZMOVE;
4614 break;
4615
4616 case MM_JOY2ZMOVE:
4617 joystick = 2;
4618 eventType = wxEVT_JOY_ZMOVE;
4619 break;
4620
4621 case MM_JOY1BUTTONDOWN:
4622 joystick = 1;
4623 eventType = wxEVT_JOY_BUTTON_DOWN;
4624 break;
4625
4626 case MM_JOY2BUTTONDOWN:
4627 joystick = 2;
4628 eventType = wxEVT_JOY_BUTTON_DOWN;
4629 break;
4630
4631 case MM_JOY1BUTTONUP:
4632 joystick = 1;
4633 eventType = wxEVT_JOY_BUTTON_UP;
4634 break;
4635
4636 case MM_JOY2BUTTONUP:
4637 joystick = 2;
4638 eventType = wxEVT_JOY_BUTTON_UP;
4639 break;
4640
4641 default:
4642 wxFAIL_MSG(wxT("no such joystick event"));
4643
4644 return FALSE;
4645 }
4646
4647 wxJoystickEvent event(eventType, buttons, joystick, change);
4648 event.SetPosition(wxPoint(x, y));
4649 event.SetEventObject(this);
4650
4651 return GetEventHandler()->ProcessEvent(event);
4652 #else
4653 return FALSE;
4654 #endif
4655 }
4656
4657 // ---------------------------------------------------------------------------
4658 // scrolling
4659 // ---------------------------------------------------------------------------
4660
4661 bool wxWindowMSW::MSWOnScroll(int orientation, WXWORD wParam,
4662 WXWORD pos, WXHWND control)
4663 {
4664 if ( control )
4665 {
4666 wxWindow *child = wxFindWinFromHandle(control);
4667 if ( child )
4668 return child->MSWOnScroll(orientation, wParam, pos, control);
4669 }
4670
4671 wxScrollWinEvent event;
4672 event.SetPosition(pos);
4673 event.SetOrientation(orientation);
4674 event.m_eventObject = this;
4675
4676 switch ( wParam )
4677 {
4678 case SB_TOP:
4679 event.m_eventType = wxEVT_SCROLLWIN_TOP;
4680 break;
4681
4682 case SB_BOTTOM:
4683 event.m_eventType = wxEVT_SCROLLWIN_BOTTOM;
4684 break;
4685
4686 case SB_LINEUP:
4687 event.m_eventType = wxEVT_SCROLLWIN_LINEUP;
4688 break;
4689
4690 case SB_LINEDOWN:
4691 event.m_eventType = wxEVT_SCROLLWIN_LINEDOWN;
4692 break;
4693
4694 case SB_PAGEUP:
4695 event.m_eventType = wxEVT_SCROLLWIN_PAGEUP;
4696 break;
4697
4698 case SB_PAGEDOWN:
4699 event.m_eventType = wxEVT_SCROLLWIN_PAGEDOWN;
4700 break;
4701
4702 case SB_THUMBPOSITION:
4703 case SB_THUMBTRACK:
4704 // under Win32, the scrollbar range and position are 32 bit integers,
4705 // but WM_[HV]SCROLL only carry the low 16 bits of them, so we must
4706 // explicitly query the scrollbar for the correct position (this must
4707 // be done only for these two SB_ events as they are the only one
4708 // carrying the scrollbar position)
4709 {
4710 WinStruct<SCROLLINFO> scrollInfo;
4711 scrollInfo.fMask = SIF_TRACKPOS;
4712
4713 if ( !::GetScrollInfo(GetHwnd(),
4714 orientation == wxHORIZONTAL ? SB_HORZ
4715 : SB_VERT,
4716 &scrollInfo) )
4717 {
4718 wxLogLastError(_T("GetScrollInfo"));
4719 }
4720
4721 event.SetPosition(scrollInfo.nTrackPos);
4722 }
4723
4724 event.m_eventType = wParam == SB_THUMBPOSITION
4725 ? wxEVT_SCROLLWIN_THUMBRELEASE
4726 : wxEVT_SCROLLWIN_THUMBTRACK;
4727 break;
4728
4729 default:
4730 return FALSE;
4731 }
4732
4733 return GetEventHandler()->ProcessEvent(event);
4734 }
4735
4736 // ===========================================================================
4737 // global functions
4738 // ===========================================================================
4739
4740 void wxGetCharSize(WXHWND wnd, int *x, int *y, const wxFont *the_font)
4741 {
4742 TEXTMETRIC tm;
4743 HDC dc = ::GetDC((HWND) wnd);
4744 HFONT fnt =0;
4745 HFONT was = 0;
4746 if ( the_font )
4747 {
4748 // the_font->UseResource();
4749 // the_font->RealizeResource();
4750 fnt = (HFONT)((wxFont *)the_font)->GetResourceHandle(); // const_cast
4751 if ( fnt )
4752 was = (HFONT) SelectObject(dc,fnt);
4753 }
4754 GetTextMetrics(dc, &tm);
4755 if ( the_font && fnt && was )
4756 {
4757 SelectObject(dc,was);
4758 }
4759 ReleaseDC((HWND)wnd, dc);
4760
4761 if ( x )
4762 *x = tm.tmAveCharWidth;
4763 if ( y )
4764 *y = tm.tmHeight + tm.tmExternalLeading;
4765
4766 // if ( the_font )
4767 // the_font->ReleaseResource();
4768 }
4769
4770 // Returns 0 if was a normal ASCII value, not a special key. This indicates that
4771 // the key should be ignored by WM_KEYDOWN and processed by WM_CHAR instead.
4772 int wxCharCodeMSWToWX(int keySym)
4773 {
4774 int id;
4775 switch (keySym)
4776 {
4777 case VK_CANCEL: id = WXK_CANCEL; break;
4778 case VK_BACK: id = WXK_BACK; break;
4779 case VK_TAB: id = WXK_TAB; break;
4780 case VK_CLEAR: id = WXK_CLEAR; break;
4781 case VK_RETURN: id = WXK_RETURN; break;
4782 case VK_SHIFT: id = WXK_SHIFT; break;
4783 case VK_CONTROL: id = WXK_CONTROL; break;
4784 case VK_MENU : id = WXK_MENU; break;
4785 case VK_PAUSE: id = WXK_PAUSE; break;
4786 case VK_CAPITAL: id = WXK_CAPITAL; break;
4787 case VK_SPACE: id = WXK_SPACE; break;
4788 case VK_ESCAPE: id = WXK_ESCAPE; break;
4789 case VK_PRIOR: id = WXK_PRIOR; break;
4790 case VK_NEXT : id = WXK_NEXT; break;
4791 case VK_END: id = WXK_END; break;
4792 case VK_HOME : id = WXK_HOME; break;
4793 case VK_LEFT : id = WXK_LEFT; break;
4794 case VK_UP: id = WXK_UP; break;
4795 case VK_RIGHT: id = WXK_RIGHT; break;
4796 case VK_DOWN : id = WXK_DOWN; break;
4797 case VK_SELECT: id = WXK_SELECT; break;
4798 case VK_PRINT: id = WXK_PRINT; break;
4799 case VK_EXECUTE: id = WXK_EXECUTE; break;
4800 case VK_INSERT: id = WXK_INSERT; break;
4801 case VK_DELETE: id = WXK_DELETE; break;
4802 case VK_HELP : id = WXK_HELP; break;
4803 case VK_NUMPAD0: id = WXK_NUMPAD0; break;
4804 case VK_NUMPAD1: id = WXK_NUMPAD1; break;
4805 case VK_NUMPAD2: id = WXK_NUMPAD2; break;
4806 case VK_NUMPAD3: id = WXK_NUMPAD3; break;
4807 case VK_NUMPAD4: id = WXK_NUMPAD4; break;
4808 case VK_NUMPAD5: id = WXK_NUMPAD5; break;
4809 case VK_NUMPAD6: id = WXK_NUMPAD6; break;
4810 case VK_NUMPAD7: id = WXK_NUMPAD7; break;
4811 case VK_NUMPAD8: id = WXK_NUMPAD8; break;
4812 case VK_NUMPAD9: id = WXK_NUMPAD9; break;
4813 case VK_MULTIPLY: id = WXK_NUMPAD_MULTIPLY; break;
4814 case VK_ADD: id = WXK_NUMPAD_ADD; break;
4815 case VK_SUBTRACT: id = WXK_NUMPAD_SUBTRACT; break;
4816 case VK_DECIMAL: id = WXK_NUMPAD_DECIMAL; break;
4817 case VK_DIVIDE: id = WXK_NUMPAD_DIVIDE; break;
4818 case VK_F1: id = WXK_F1; break;
4819 case VK_F2: id = WXK_F2; break;
4820 case VK_F3: id = WXK_F3; break;
4821 case VK_F4: id = WXK_F4; break;
4822 case VK_F5: id = WXK_F5; break;
4823 case VK_F6: id = WXK_F6; break;
4824 case VK_F7: id = WXK_F7; break;
4825 case VK_F8: id = WXK_F8; break;
4826 case VK_F9: id = WXK_F9; break;
4827 case VK_F10: id = WXK_F10; break;
4828 case VK_F11: id = WXK_F11; break;
4829 case VK_F12: id = WXK_F12; break;
4830 case VK_F13: id = WXK_F13; break;
4831 case VK_F14: id = WXK_F14; break;
4832 case VK_F15: id = WXK_F15; break;
4833 case VK_F16: id = WXK_F16; break;
4834 case VK_F17: id = WXK_F17; break;
4835 case VK_F18: id = WXK_F18; break;
4836 case VK_F19: id = WXK_F19; break;
4837 case VK_F20: id = WXK_F20; break;
4838 case VK_F21: id = WXK_F21; break;
4839 case VK_F22: id = WXK_F22; break;
4840 case VK_F23: id = WXK_F23; break;
4841 case VK_F24: id = WXK_F24; break;
4842 case VK_NUMLOCK: id = WXK_NUMLOCK; break;
4843 case VK_SCROLL: id = WXK_SCROLL; break;
4844
4845 case VK_OEM_1: id = ';'; break;
4846 case VK_OEM_PLUS: id = '+'; break;
4847 case VK_OEM_COMMA: id = ','; break;
4848 case VK_OEM_MINUS: id = '-'; break;
4849 case VK_OEM_PERIOD: id = '.'; break;
4850 case VK_OEM_2: id = '/'; break;
4851 case VK_OEM_3: id = '~'; break;
4852 case VK_OEM_4: id = '['; break;
4853 case VK_OEM_5: id = '\\'; break;
4854 case VK_OEM_6: id = ']'; break;
4855 case VK_OEM_7: id = '\''; break;
4856
4857 #ifdef VK_APPS
4858 case VK_LWIN: id = WXK_WINDOWS_LEFT; break;
4859 case VK_RWIN: id = WXK_WINDOWS_RIGHT; break;
4860 case VK_APPS: id = WXK_WINDOWS_MENU; break;
4861 #endif // VK_APPS defined
4862
4863 default:
4864 id = 0;
4865 }
4866
4867 return id;
4868 }
4869
4870 int wxCharCodeWXToMSW(int id, bool *isVirtual)
4871 {
4872 *isVirtual = TRUE;
4873 int keySym = 0;
4874 switch (id)
4875 {
4876 case WXK_CANCEL: keySym = VK_CANCEL; break;
4877 case WXK_CLEAR: keySym = VK_CLEAR; break;
4878 case WXK_SHIFT: keySym = VK_SHIFT; break;
4879 case WXK_CONTROL: keySym = VK_CONTROL; break;
4880 case WXK_MENU : keySym = VK_MENU; break;
4881 case WXK_PAUSE: keySym = VK_PAUSE; break;
4882 case WXK_PRIOR: keySym = VK_PRIOR; break;
4883 case WXK_NEXT : keySym = VK_NEXT; break;
4884 case WXK_END: keySym = VK_END; break;
4885 case WXK_HOME : keySym = VK_HOME; break;
4886 case WXK_LEFT : keySym = VK_LEFT; break;
4887 case WXK_UP: keySym = VK_UP; break;
4888 case WXK_RIGHT: keySym = VK_RIGHT; break;
4889 case WXK_DOWN : keySym = VK_DOWN; break;
4890 case WXK_SELECT: keySym = VK_SELECT; break;
4891 case WXK_PRINT: keySym = VK_PRINT; break;
4892 case WXK_EXECUTE: keySym = VK_EXECUTE; break;
4893 case WXK_INSERT: keySym = VK_INSERT; break;
4894 case WXK_DELETE: keySym = VK_DELETE; break;
4895 case WXK_HELP : keySym = VK_HELP; break;
4896 case WXK_NUMPAD0: keySym = VK_NUMPAD0; break;
4897 case WXK_NUMPAD1: keySym = VK_NUMPAD1; break;
4898 case WXK_NUMPAD2: keySym = VK_NUMPAD2; break;
4899 case WXK_NUMPAD3: keySym = VK_NUMPAD3; break;
4900 case WXK_NUMPAD4: keySym = VK_NUMPAD4; break;
4901 case WXK_NUMPAD5: keySym = VK_NUMPAD5; break;
4902 case WXK_NUMPAD6: keySym = VK_NUMPAD6; break;
4903 case WXK_NUMPAD7: keySym = VK_NUMPAD7; break;
4904 case WXK_NUMPAD8: keySym = VK_NUMPAD8; break;
4905 case WXK_NUMPAD9: keySym = VK_NUMPAD9; break;
4906 case WXK_NUMPAD_MULTIPLY: keySym = VK_MULTIPLY; break;
4907 case WXK_NUMPAD_ADD: keySym = VK_ADD; break;
4908 case WXK_NUMPAD_SUBTRACT: keySym = VK_SUBTRACT; break;
4909 case WXK_NUMPAD_DECIMAL: keySym = VK_DECIMAL; break;
4910 case WXK_NUMPAD_DIVIDE: keySym = VK_DIVIDE; break;
4911 case WXK_F1: keySym = VK_F1; break;
4912 case WXK_F2: keySym = VK_F2; break;
4913 case WXK_F3: keySym = VK_F3; break;
4914 case WXK_F4: keySym = VK_F4; break;
4915 case WXK_F5: keySym = VK_F5; break;
4916 case WXK_F6: keySym = VK_F6; break;
4917 case WXK_F7: keySym = VK_F7; break;
4918 case WXK_F8: keySym = VK_F8; break;
4919 case WXK_F9: keySym = VK_F9; break;
4920 case WXK_F10: keySym = VK_F10; break;
4921 case WXK_F11: keySym = VK_F11; break;
4922 case WXK_F12: keySym = VK_F12; break;
4923 case WXK_F13: keySym = VK_F13; break;
4924 case WXK_F14: keySym = VK_F14; break;
4925 case WXK_F15: keySym = VK_F15; break;
4926 case WXK_F16: keySym = VK_F16; break;
4927 case WXK_F17: keySym = VK_F17; break;
4928 case WXK_F18: keySym = VK_F18; break;
4929 case WXK_F19: keySym = VK_F19; break;
4930 case WXK_F20: keySym = VK_F20; break;
4931 case WXK_F21: keySym = VK_F21; break;
4932 case WXK_F22: keySym = VK_F22; break;
4933 case WXK_F23: keySym = VK_F23; break;
4934 case WXK_F24: keySym = VK_F24; break;
4935 case WXK_NUMLOCK: keySym = VK_NUMLOCK; break;
4936 case WXK_SCROLL: keySym = VK_SCROLL; break;
4937 default:
4938 {
4939 *isVirtual = FALSE;
4940 keySym = id;
4941 break;
4942 }
4943 }
4944 return keySym;
4945 }
4946
4947 wxWindow *wxGetActiveWindow()
4948 {
4949 HWND hWnd = GetActiveWindow();
4950 if ( hWnd != 0 )
4951 {
4952 return wxFindWinFromHandle((WXHWND) hWnd);
4953 }
4954 return NULL;
4955 }
4956
4957 extern wxWindow *wxGetWindowFromHWND(WXHWND hWnd)
4958 {
4959 HWND hwnd = (HWND)hWnd;
4960
4961 // For a radiobutton, we get the radiobox from GWL_USERDATA (which is set
4962 // by code in msw/radiobox.cpp), for all the others we just search up the
4963 // window hierarchy
4964 wxWindow *win = (wxWindow *)NULL;
4965 if ( hwnd )
4966 {
4967 win = wxFindWinFromHandle((WXHWND)hwnd);
4968 if ( !win )
4969 {
4970 #if wxUSE_RADIOBOX
4971 // native radiobuttons return DLGC_RADIOBUTTON here and for any
4972 // wxWindow class which overrides WM_GETDLGCODE processing to
4973 // do it as well, win would be already non NULL
4974 if ( ::SendMessage(hwnd, WM_GETDLGCODE, 0, 0) & DLGC_RADIOBUTTON )
4975 {
4976 win = (wxWindow *)::GetWindowLong(hwnd, GWL_USERDATA);
4977 }
4978 //else: it's a wxRadioButton, not a radiobutton from wxRadioBox
4979 #endif // wxUSE_RADIOBOX
4980
4981 // spin control text buddy window should be mapped to spin ctrl
4982 // itself so try it too
4983 #if wxUSE_SPINCTRL && !defined(__WXUNIVERSAL__)
4984 if ( !win )
4985 {
4986 win = wxSpinCtrl::GetSpinForTextCtrl((WXHWND)hwnd);
4987 }
4988 #endif // wxUSE_SPINCTRL
4989 }
4990 }
4991
4992 while ( hwnd && !win )
4993 {
4994 // this is a really ugly hack needed to avoid mistakenly returning the
4995 // parent frame wxWindow for the find/replace modeless dialog HWND -
4996 // this, in turn, is needed to call IsDialogMessage() from
4997 // wxApp::ProcessMessage() as for this we must return NULL from here
4998 //
4999 // FIXME: this is clearly not the best way to do it but I think we'll
5000 // need to change HWND <-> wxWindow code more heavily than I can
5001 // do it now to fix it
5002 #ifndef __WXMICROWIN__
5003 if ( ::GetWindow(hwnd, GW_OWNER) )
5004 {
5005 // it's a dialog box, don't go upwards
5006 break;
5007 }
5008 #endif
5009
5010 hwnd = ::GetParent(hwnd);
5011 win = wxFindWinFromHandle((WXHWND)hwnd);
5012 }
5013
5014 return win;
5015 }
5016
5017 #if !defined(__WXMICROWIN__) && !defined(__WXWINCE__)
5018
5019 // Windows keyboard hook. Allows interception of e.g. F1, ESCAPE
5020 // in active frames and dialogs, regardless of where the focus is.
5021 static HHOOK wxTheKeyboardHook = 0;
5022 static FARPROC wxTheKeyboardHookProc = 0;
5023 int APIENTRY _EXPORT
5024 wxKeyboardHook(int nCode, WORD wParam, DWORD lParam);
5025
5026 void wxSetKeyboardHook(bool doIt)
5027 {
5028 if ( doIt )
5029 {
5030 wxTheKeyboardHookProc = MakeProcInstance((FARPROC) wxKeyboardHook, wxGetInstance());
5031 wxTheKeyboardHook = SetWindowsHookEx(WH_KEYBOARD, (HOOKPROC) wxTheKeyboardHookProc, wxGetInstance(),
5032
5033 GetCurrentThreadId()
5034 // (DWORD)GetCurrentProcess()); // This is another possibility. Which is right?
5035 );
5036 }
5037 else
5038 {
5039 UnhookWindowsHookEx(wxTheKeyboardHook);
5040 }
5041 }
5042
5043 int APIENTRY _EXPORT
5044 wxKeyboardHook(int nCode, WORD wParam, DWORD lParam)
5045 {
5046 DWORD hiWord = HIWORD(lParam);
5047 if ( nCode != HC_NOREMOVE && ((hiWord & KF_UP) == 0) )
5048 {
5049 int id = wxCharCodeMSWToWX(wParam);
5050 if ( id != 0 )
5051 {
5052 wxKeyEvent event(wxEVT_CHAR_HOOK);
5053 if ( (HIWORD(lParam) & KF_ALTDOWN) == KF_ALTDOWN )
5054 event.m_altDown = TRUE;
5055
5056 event.m_eventObject = NULL;
5057 event.m_keyCode = id;
5058 event.m_shiftDown = wxIsShiftDown();
5059 event.m_controlDown = wxIsCtrlDown();
5060 event.SetTimestamp(s_currentMsg.time);
5061
5062 wxWindow *win = wxGetActiveWindow();
5063 wxEvtHandler *handler;
5064 if ( win )
5065 {
5066 handler = win->GetEventHandler();
5067 event.SetId(win->GetId());
5068 }
5069 else
5070 {
5071 handler = wxTheApp;
5072 event.SetId(-1);
5073 }
5074
5075 if ( handler && handler->ProcessEvent(event) )
5076 {
5077 // processed
5078 return 1;
5079 }
5080 }
5081 }
5082
5083 return (int)CallNextHookEx(wxTheKeyboardHook, nCode, wParam, lParam);
5084 }
5085
5086 #endif // !__WXMICROWIN__
5087
5088 #ifdef __WXDEBUG__
5089 const char *wxGetMessageName(int message)
5090 {
5091 switch ( message )
5092 {
5093 case 0x0000: return "WM_NULL";
5094 case 0x0001: return "WM_CREATE";
5095 case 0x0002: return "WM_DESTROY";
5096 case 0x0003: return "WM_MOVE";
5097 case 0x0005: return "WM_SIZE";
5098 case 0x0006: return "WM_ACTIVATE";
5099 case 0x0007: return "WM_SETFOCUS";
5100 case 0x0008: return "WM_KILLFOCUS";
5101 case 0x000A: return "WM_ENABLE";
5102 case 0x000B: return "WM_SETREDRAW";
5103 case 0x000C: return "WM_SETTEXT";
5104 case 0x000D: return "WM_GETTEXT";
5105 case 0x000E: return "WM_GETTEXTLENGTH";
5106 case 0x000F: return "WM_PAINT";
5107 case 0x0010: return "WM_CLOSE";
5108 case 0x0011: return "WM_QUERYENDSESSION";
5109 case 0x0012: return "WM_QUIT";
5110 case 0x0013: return "WM_QUERYOPEN";
5111 case 0x0014: return "WM_ERASEBKGND";
5112 case 0x0015: return "WM_SYSCOLORCHANGE";
5113 case 0x0016: return "WM_ENDSESSION";
5114 case 0x0017: return "WM_SYSTEMERROR";
5115 case 0x0018: return "WM_SHOWWINDOW";
5116 case 0x0019: return "WM_CTLCOLOR";
5117 case 0x001A: return "WM_WININICHANGE";
5118 case 0x001B: return "WM_DEVMODECHANGE";
5119 case 0x001C: return "WM_ACTIVATEAPP";
5120 case 0x001D: return "WM_FONTCHANGE";
5121 case 0x001E: return "WM_TIMECHANGE";
5122 case 0x001F: return "WM_CANCELMODE";
5123 case 0x0020: return "WM_SETCURSOR";
5124 case 0x0021: return "WM_MOUSEACTIVATE";
5125 case 0x0022: return "WM_CHILDACTIVATE";
5126 case 0x0023: return "WM_QUEUESYNC";
5127 case 0x0024: return "WM_GETMINMAXINFO";
5128 case 0x0026: return "WM_PAINTICON";
5129 case 0x0027: return "WM_ICONERASEBKGND";
5130 case 0x0028: return "WM_NEXTDLGCTL";
5131 case 0x002A: return "WM_SPOOLERSTATUS";
5132 case 0x002B: return "WM_DRAWITEM";
5133 case 0x002C: return "WM_MEASUREITEM";
5134 case 0x002D: return "WM_DELETEITEM";
5135 case 0x002E: return "WM_VKEYTOITEM";
5136 case 0x002F: return "WM_CHARTOITEM";
5137 case 0x0030: return "WM_SETFONT";
5138 case 0x0031: return "WM_GETFONT";
5139 case 0x0037: return "WM_QUERYDRAGICON";
5140 case 0x0039: return "WM_COMPAREITEM";
5141 case 0x0041: return "WM_COMPACTING";
5142 case 0x0044: return "WM_COMMNOTIFY";
5143 case 0x0046: return "WM_WINDOWPOSCHANGING";
5144 case 0x0047: return "WM_WINDOWPOSCHANGED";
5145 case 0x0048: return "WM_POWER";
5146
5147 case 0x004A: return "WM_COPYDATA";
5148 case 0x004B: return "WM_CANCELJOURNAL";
5149 case 0x004E: return "WM_NOTIFY";
5150 case 0x0050: return "WM_INPUTLANGCHANGEREQUEST";
5151 case 0x0051: return "WM_INPUTLANGCHANGE";
5152 case 0x0052: return "WM_TCARD";
5153 case 0x0053: return "WM_HELP";
5154 case 0x0054: return "WM_USERCHANGED";
5155 case 0x0055: return "WM_NOTIFYFORMAT";
5156 case 0x007B: return "WM_CONTEXTMENU";
5157 case 0x007C: return "WM_STYLECHANGING";
5158 case 0x007D: return "WM_STYLECHANGED";
5159 case 0x007E: return "WM_DISPLAYCHANGE";
5160 case 0x007F: return "WM_GETICON";
5161 case 0x0080: return "WM_SETICON";
5162
5163 case 0x0081: return "WM_NCCREATE";
5164 case 0x0082: return "WM_NCDESTROY";
5165 case 0x0083: return "WM_NCCALCSIZE";
5166 case 0x0084: return "WM_NCHITTEST";
5167 case 0x0085: return "WM_NCPAINT";
5168 case 0x0086: return "WM_NCACTIVATE";
5169 case 0x0087: return "WM_GETDLGCODE";
5170 case 0x00A0: return "WM_NCMOUSEMOVE";
5171 case 0x00A1: return "WM_NCLBUTTONDOWN";
5172 case 0x00A2: return "WM_NCLBUTTONUP";
5173 case 0x00A3: return "WM_NCLBUTTONDBLCLK";
5174 case 0x00A4: return "WM_NCRBUTTONDOWN";
5175 case 0x00A5: return "WM_NCRBUTTONUP";
5176 case 0x00A6: return "WM_NCRBUTTONDBLCLK";
5177 case 0x00A7: return "WM_NCMBUTTONDOWN";
5178 case 0x00A8: return "WM_NCMBUTTONUP";
5179 case 0x00A9: return "WM_NCMBUTTONDBLCLK";
5180 case 0x0100: return "WM_KEYDOWN";
5181 case 0x0101: return "WM_KEYUP";
5182 case 0x0102: return "WM_CHAR";
5183 case 0x0103: return "WM_DEADCHAR";
5184 case 0x0104: return "WM_SYSKEYDOWN";
5185 case 0x0105: return "WM_SYSKEYUP";
5186 case 0x0106: return "WM_SYSCHAR";
5187 case 0x0107: return "WM_SYSDEADCHAR";
5188 case 0x0108: return "WM_KEYLAST";
5189
5190 case 0x010D: return "WM_IME_STARTCOMPOSITION";
5191 case 0x010E: return "WM_IME_ENDCOMPOSITION";
5192 case 0x010F: return "WM_IME_COMPOSITION";
5193
5194 case 0x0110: return "WM_INITDIALOG";
5195 case 0x0111: return "WM_COMMAND";
5196 case 0x0112: return "WM_SYSCOMMAND";
5197 case 0x0113: return "WM_TIMER";
5198 case 0x0114: return "WM_HSCROLL";
5199 case 0x0115: return "WM_VSCROLL";
5200 case 0x0116: return "WM_INITMENU";
5201 case 0x0117: return "WM_INITMENUPOPUP";
5202 case 0x011F: return "WM_MENUSELECT";
5203 case 0x0120: return "WM_MENUCHAR";
5204 case 0x0121: return "WM_ENTERIDLE";
5205 case 0x0200: return "WM_MOUSEMOVE";
5206 case 0x0201: return "WM_LBUTTONDOWN";
5207 case 0x0202: return "WM_LBUTTONUP";
5208 case 0x0203: return "WM_LBUTTONDBLCLK";
5209 case 0x0204: return "WM_RBUTTONDOWN";
5210 case 0x0205: return "WM_RBUTTONUP";
5211 case 0x0206: return "WM_RBUTTONDBLCLK";
5212 case 0x0207: return "WM_MBUTTONDOWN";
5213 case 0x0208: return "WM_MBUTTONUP";
5214 case 0x0209: return "WM_MBUTTONDBLCLK";
5215 case 0x020A: return "WM_MOUSEWHEEL";
5216 case 0x0210: return "WM_PARENTNOTIFY";
5217 case 0x0211: return "WM_ENTERMENULOOP";
5218 case 0x0212: return "WM_EXITMENULOOP";
5219
5220 case 0x0213: return "WM_NEXTMENU";
5221 case 0x0214: return "WM_SIZING";
5222 case 0x0215: return "WM_CAPTURECHANGED";
5223 case 0x0216: return "WM_MOVING";
5224 case 0x0218: return "WM_POWERBROADCAST";
5225 case 0x0219: return "WM_DEVICECHANGE";
5226
5227 case 0x0220: return "WM_MDICREATE";
5228 case 0x0221: return "WM_MDIDESTROY";
5229 case 0x0222: return "WM_MDIACTIVATE";
5230 case 0x0223: return "WM_MDIRESTORE";
5231 case 0x0224: return "WM_MDINEXT";
5232 case 0x0225: return "WM_MDIMAXIMIZE";
5233 case 0x0226: return "WM_MDITILE";
5234 case 0x0227: return "WM_MDICASCADE";
5235 case 0x0228: return "WM_MDIICONARRANGE";
5236 case 0x0229: return "WM_MDIGETACTIVE";
5237 case 0x0230: return "WM_MDISETMENU";
5238 case 0x0233: return "WM_DROPFILES";
5239
5240 case 0x0281: return "WM_IME_SETCONTEXT";
5241 case 0x0282: return "WM_IME_NOTIFY";
5242 case 0x0283: return "WM_IME_CONTROL";
5243 case 0x0284: return "WM_IME_COMPOSITIONFULL";
5244 case 0x0285: return "WM_IME_SELECT";
5245 case 0x0286: return "WM_IME_CHAR";
5246 case 0x0290: return "WM_IME_KEYDOWN";
5247 case 0x0291: return "WM_IME_KEYUP";
5248
5249 case 0x0300: return "WM_CUT";
5250 case 0x0301: return "WM_COPY";
5251 case 0x0302: return "WM_PASTE";
5252 case 0x0303: return "WM_CLEAR";
5253 case 0x0304: return "WM_UNDO";
5254 case 0x0305: return "WM_RENDERFORMAT";
5255 case 0x0306: return "WM_RENDERALLFORMATS";
5256 case 0x0307: return "WM_DESTROYCLIPBOARD";
5257 case 0x0308: return "WM_DRAWCLIPBOARD";
5258 case 0x0309: return "WM_PAINTCLIPBOARD";
5259 case 0x030A: return "WM_VSCROLLCLIPBOARD";
5260 case 0x030B: return "WM_SIZECLIPBOARD";
5261 case 0x030C: return "WM_ASKCBFORMATNAME";
5262 case 0x030D: return "WM_CHANGECBCHAIN";
5263 case 0x030E: return "WM_HSCROLLCLIPBOARD";
5264 case 0x030F: return "WM_QUERYNEWPALETTE";
5265 case 0x0310: return "WM_PALETTEISCHANGING";
5266 case 0x0311: return "WM_PALETTECHANGED";
5267 #if wxUSE_HOTKEY
5268 case 0x0312: return "WM_HOTKEY";
5269 #endif
5270
5271 // common controls messages - although they're not strictly speaking
5272 // standard, it's nice to decode them nevertheless
5273
5274 // listview
5275 case 0x1000 + 0: return "LVM_GETBKCOLOR";
5276 case 0x1000 + 1: return "LVM_SETBKCOLOR";
5277 case 0x1000 + 2: return "LVM_GETIMAGELIST";
5278 case 0x1000 + 3: return "LVM_SETIMAGELIST";
5279 case 0x1000 + 4: return "LVM_GETITEMCOUNT";
5280 case 0x1000 + 5: return "LVM_GETITEMA";
5281 case 0x1000 + 75: return "LVM_GETITEMW";
5282 case 0x1000 + 6: return "LVM_SETITEMA";
5283 case 0x1000 + 76: return "LVM_SETITEMW";
5284 case 0x1000 + 7: return "LVM_INSERTITEMA";
5285 case 0x1000 + 77: return "LVM_INSERTITEMW";
5286 case 0x1000 + 8: return "LVM_DELETEITEM";
5287 case 0x1000 + 9: return "LVM_DELETEALLITEMS";
5288 case 0x1000 + 10: return "LVM_GETCALLBACKMASK";
5289 case 0x1000 + 11: return "LVM_SETCALLBACKMASK";
5290 case 0x1000 + 12: return "LVM_GETNEXTITEM";
5291 case 0x1000 + 13: return "LVM_FINDITEMA";
5292 case 0x1000 + 83: return "LVM_FINDITEMW";
5293 case 0x1000 + 14: return "LVM_GETITEMRECT";
5294 case 0x1000 + 15: return "LVM_SETITEMPOSITION";
5295 case 0x1000 + 16: return "LVM_GETITEMPOSITION";
5296 case 0x1000 + 17: return "LVM_GETSTRINGWIDTHA";
5297 case 0x1000 + 87: return "LVM_GETSTRINGWIDTHW";
5298 case 0x1000 + 18: return "LVM_HITTEST";
5299 case 0x1000 + 19: return "LVM_ENSUREVISIBLE";
5300 case 0x1000 + 20: return "LVM_SCROLL";
5301 case 0x1000 + 21: return "LVM_REDRAWITEMS";
5302 case 0x1000 + 22: return "LVM_ARRANGE";
5303 case 0x1000 + 23: return "LVM_EDITLABELA";
5304 case 0x1000 + 118: return "LVM_EDITLABELW";
5305 case 0x1000 + 24: return "LVM_GETEDITCONTROL";
5306 case 0x1000 + 25: return "LVM_GETCOLUMNA";
5307 case 0x1000 + 95: return "LVM_GETCOLUMNW";
5308 case 0x1000 + 26: return "LVM_SETCOLUMNA";
5309 case 0x1000 + 96: return "LVM_SETCOLUMNW";
5310 case 0x1000 + 27: return "LVM_INSERTCOLUMNA";
5311 case 0x1000 + 97: return "LVM_INSERTCOLUMNW";
5312 case 0x1000 + 28: return "LVM_DELETECOLUMN";
5313 case 0x1000 + 29: return "LVM_GETCOLUMNWIDTH";
5314 case 0x1000 + 30: return "LVM_SETCOLUMNWIDTH";
5315 case 0x1000 + 31: return "LVM_GETHEADER";
5316 case 0x1000 + 33: return "LVM_CREATEDRAGIMAGE";
5317 case 0x1000 + 34: return "LVM_GETVIEWRECT";
5318 case 0x1000 + 35: return "LVM_GETTEXTCOLOR";
5319 case 0x1000 + 36: return "LVM_SETTEXTCOLOR";
5320 case 0x1000 + 37: return "LVM_GETTEXTBKCOLOR";
5321 case 0x1000 + 38: return "LVM_SETTEXTBKCOLOR";
5322 case 0x1000 + 39: return "LVM_GETTOPINDEX";
5323 case 0x1000 + 40: return "LVM_GETCOUNTPERPAGE";
5324 case 0x1000 + 41: return "LVM_GETORIGIN";
5325 case 0x1000 + 42: return "LVM_UPDATE";
5326 case 0x1000 + 43: return "LVM_SETITEMSTATE";
5327 case 0x1000 + 44: return "LVM_GETITEMSTATE";
5328 case 0x1000 + 45: return "LVM_GETITEMTEXTA";
5329 case 0x1000 + 115: return "LVM_GETITEMTEXTW";
5330 case 0x1000 + 46: return "LVM_SETITEMTEXTA";
5331 case 0x1000 + 116: return "LVM_SETITEMTEXTW";
5332 case 0x1000 + 47: return "LVM_SETITEMCOUNT";
5333 case 0x1000 + 48: return "LVM_SORTITEMS";
5334 case 0x1000 + 49: return "LVM_SETITEMPOSITION32";
5335 case 0x1000 + 50: return "LVM_GETSELECTEDCOUNT";
5336 case 0x1000 + 51: return "LVM_GETITEMSPACING";
5337 case 0x1000 + 52: return "LVM_GETISEARCHSTRINGA";
5338 case 0x1000 + 117: return "LVM_GETISEARCHSTRINGW";
5339 case 0x1000 + 53: return "LVM_SETICONSPACING";
5340 case 0x1000 + 54: return "LVM_SETEXTENDEDLISTVIEWSTYLE";
5341 case 0x1000 + 55: return "LVM_GETEXTENDEDLISTVIEWSTYLE";
5342 case 0x1000 + 56: return "LVM_GETSUBITEMRECT";
5343 case 0x1000 + 57: return "LVM_SUBITEMHITTEST";
5344 case 0x1000 + 58: return "LVM_SETCOLUMNORDERARRAY";
5345 case 0x1000 + 59: return "LVM_GETCOLUMNORDERARRAY";
5346 case 0x1000 + 60: return "LVM_SETHOTITEM";
5347 case 0x1000 + 61: return "LVM_GETHOTITEM";
5348 case 0x1000 + 62: return "LVM_SETHOTCURSOR";
5349 case 0x1000 + 63: return "LVM_GETHOTCURSOR";
5350 case 0x1000 + 64: return "LVM_APPROXIMATEVIEWRECT";
5351 case 0x1000 + 65: return "LVM_SETWORKAREA";
5352
5353 // tree view
5354 case 0x1100 + 0: return "TVM_INSERTITEMA";
5355 case 0x1100 + 50: return "TVM_INSERTITEMW";
5356 case 0x1100 + 1: return "TVM_DELETEITEM";
5357 case 0x1100 + 2: return "TVM_EXPAND";
5358 case 0x1100 + 4: return "TVM_GETITEMRECT";
5359 case 0x1100 + 5: return "TVM_GETCOUNT";
5360 case 0x1100 + 6: return "TVM_GETINDENT";
5361 case 0x1100 + 7: return "TVM_SETINDENT";
5362 case 0x1100 + 8: return "TVM_GETIMAGELIST";
5363 case 0x1100 + 9: return "TVM_SETIMAGELIST";
5364 case 0x1100 + 10: return "TVM_GETNEXTITEM";
5365 case 0x1100 + 11: return "TVM_SELECTITEM";
5366 case 0x1100 + 12: return "TVM_GETITEMA";
5367 case 0x1100 + 62: return "TVM_GETITEMW";
5368 case 0x1100 + 13: return "TVM_SETITEMA";
5369 case 0x1100 + 63: return "TVM_SETITEMW";
5370 case 0x1100 + 14: return "TVM_EDITLABELA";
5371 case 0x1100 + 65: return "TVM_EDITLABELW";
5372 case 0x1100 + 15: return "TVM_GETEDITCONTROL";
5373 case 0x1100 + 16: return "TVM_GETVISIBLECOUNT";
5374 case 0x1100 + 17: return "TVM_HITTEST";
5375 case 0x1100 + 18: return "TVM_CREATEDRAGIMAGE";
5376 case 0x1100 + 19: return "TVM_SORTCHILDREN";
5377 case 0x1100 + 20: return "TVM_ENSUREVISIBLE";
5378 case 0x1100 + 21: return "TVM_SORTCHILDRENCB";
5379 case 0x1100 + 22: return "TVM_ENDEDITLABELNOW";
5380 case 0x1100 + 23: return "TVM_GETISEARCHSTRINGA";
5381 case 0x1100 + 64: return "TVM_GETISEARCHSTRINGW";
5382 case 0x1100 + 24: return "TVM_SETTOOLTIPS";
5383 case 0x1100 + 25: return "TVM_GETTOOLTIPS";
5384
5385 // header
5386 case 0x1200 + 0: return "HDM_GETITEMCOUNT";
5387 case 0x1200 + 1: return "HDM_INSERTITEMA";
5388 case 0x1200 + 10: return "HDM_INSERTITEMW";
5389 case 0x1200 + 2: return "HDM_DELETEITEM";
5390 case 0x1200 + 3: return "HDM_GETITEMA";
5391 case 0x1200 + 11: return "HDM_GETITEMW";
5392 case 0x1200 + 4: return "HDM_SETITEMA";
5393 case 0x1200 + 12: return "HDM_SETITEMW";
5394 case 0x1200 + 5: return "HDM_LAYOUT";
5395 case 0x1200 + 6: return "HDM_HITTEST";
5396 case 0x1200 + 7: return "HDM_GETITEMRECT";
5397 case 0x1200 + 8: return "HDM_SETIMAGELIST";
5398 case 0x1200 + 9: return "HDM_GETIMAGELIST";
5399 case 0x1200 + 15: return "HDM_ORDERTOINDEX";
5400 case 0x1200 + 16: return "HDM_CREATEDRAGIMAGE";
5401 case 0x1200 + 17: return "HDM_GETORDERARRAY";
5402 case 0x1200 + 18: return "HDM_SETORDERARRAY";
5403 case 0x1200 + 19: return "HDM_SETHOTDIVIDER";
5404
5405 // tab control
5406 case 0x1300 + 2: return "TCM_GETIMAGELIST";
5407 case 0x1300 + 3: return "TCM_SETIMAGELIST";
5408 case 0x1300 + 4: return "TCM_GETITEMCOUNT";
5409 case 0x1300 + 5: return "TCM_GETITEMA";
5410 case 0x1300 + 60: return "TCM_GETITEMW";
5411 case 0x1300 + 6: return "TCM_SETITEMA";
5412 case 0x1300 + 61: return "TCM_SETITEMW";
5413 case 0x1300 + 7: return "TCM_INSERTITEMA";
5414 case 0x1300 + 62: return "TCM_INSERTITEMW";
5415 case 0x1300 + 8: return "TCM_DELETEITEM";
5416 case 0x1300 + 9: return "TCM_DELETEALLITEMS";
5417 case 0x1300 + 10: return "TCM_GETITEMRECT";
5418 case 0x1300 + 11: return "TCM_GETCURSEL";
5419 case 0x1300 + 12: return "TCM_SETCURSEL";
5420 case 0x1300 + 13: return "TCM_HITTEST";
5421 case 0x1300 + 14: return "TCM_SETITEMEXTRA";
5422 case 0x1300 + 40: return "TCM_ADJUSTRECT";
5423 case 0x1300 + 41: return "TCM_SETITEMSIZE";
5424 case 0x1300 + 42: return "TCM_REMOVEIMAGE";
5425 case 0x1300 + 43: return "TCM_SETPADDING";
5426 case 0x1300 + 44: return "TCM_GETROWCOUNT";
5427 case 0x1300 + 45: return "TCM_GETTOOLTIPS";
5428 case 0x1300 + 46: return "TCM_SETTOOLTIPS";
5429 case 0x1300 + 47: return "TCM_GETCURFOCUS";
5430 case 0x1300 + 48: return "TCM_SETCURFOCUS";
5431 case 0x1300 + 49: return "TCM_SETMINTABWIDTH";
5432 case 0x1300 + 50: return "TCM_DESELECTALL";
5433
5434 // toolbar
5435 case WM_USER+1: return "TB_ENABLEBUTTON";
5436 case WM_USER+2: return "TB_CHECKBUTTON";
5437 case WM_USER+3: return "TB_PRESSBUTTON";
5438 case WM_USER+4: return "TB_HIDEBUTTON";
5439 case WM_USER+5: return "TB_INDETERMINATE";
5440 case WM_USER+9: return "TB_ISBUTTONENABLED";
5441 case WM_USER+10: return "TB_ISBUTTONCHECKED";
5442 case WM_USER+11: return "TB_ISBUTTONPRESSED";
5443 case WM_USER+12: return "TB_ISBUTTONHIDDEN";
5444 case WM_USER+13: return "TB_ISBUTTONINDETERMINATE";
5445 case WM_USER+17: return "TB_SETSTATE";
5446 case WM_USER+18: return "TB_GETSTATE";
5447 case WM_USER+19: return "TB_ADDBITMAP";
5448 case WM_USER+20: return "TB_ADDBUTTONS";
5449 case WM_USER+21: return "TB_INSERTBUTTON";
5450 case WM_USER+22: return "TB_DELETEBUTTON";
5451 case WM_USER+23: return "TB_GETBUTTON";
5452 case WM_USER+24: return "TB_BUTTONCOUNT";
5453 case WM_USER+25: return "TB_COMMANDTOINDEX";
5454 case WM_USER+26: return "TB_SAVERESTOREA";
5455 case WM_USER+76: return "TB_SAVERESTOREW";
5456 case WM_USER+27: return "TB_CUSTOMIZE";
5457 case WM_USER+28: return "TB_ADDSTRINGA";
5458 case WM_USER+77: return "TB_ADDSTRINGW";
5459 case WM_USER+29: return "TB_GETITEMRECT";
5460 case WM_USER+30: return "TB_BUTTONSTRUCTSIZE";
5461 case WM_USER+31: return "TB_SETBUTTONSIZE";
5462 case WM_USER+32: return "TB_SETBITMAPSIZE";
5463 case WM_USER+33: return "TB_AUTOSIZE";
5464 case WM_USER+35: return "TB_GETTOOLTIPS";
5465 case WM_USER+36: return "TB_SETTOOLTIPS";
5466 case WM_USER+37: return "TB_SETPARENT";
5467 case WM_USER+39: return "TB_SETROWS";
5468 case WM_USER+40: return "TB_GETROWS";
5469 case WM_USER+42: return "TB_SETCMDID";
5470 case WM_USER+43: return "TB_CHANGEBITMAP";
5471 case WM_USER+44: return "TB_GETBITMAP";
5472 case WM_USER+45: return "TB_GETBUTTONTEXTA";
5473 case WM_USER+75: return "TB_GETBUTTONTEXTW";
5474 case WM_USER+46: return "TB_REPLACEBITMAP";
5475 case WM_USER+47: return "TB_SETINDENT";
5476 case WM_USER+48: return "TB_SETIMAGELIST";
5477 case WM_USER+49: return "TB_GETIMAGELIST";
5478 case WM_USER+50: return "TB_LOADIMAGES";
5479 case WM_USER+51: return "TB_GETRECT";
5480 case WM_USER+52: return "TB_SETHOTIMAGELIST";
5481 case WM_USER+53: return "TB_GETHOTIMAGELIST";
5482 case WM_USER+54: return "TB_SETDISABLEDIMAGELIST";
5483 case WM_USER+55: return "TB_GETDISABLEDIMAGELIST";
5484 case WM_USER+56: return "TB_SETSTYLE";
5485 case WM_USER+57: return "TB_GETSTYLE";
5486 case WM_USER+58: return "TB_GETBUTTONSIZE";
5487 case WM_USER+59: return "TB_SETBUTTONWIDTH";
5488 case WM_USER+60: return "TB_SETMAXTEXTROWS";
5489 case WM_USER+61: return "TB_GETTEXTROWS";
5490 case WM_USER+41: return "TB_GETBITMAPFLAGS";
5491
5492 default:
5493 static char s_szBuf[128];
5494 sprintf(s_szBuf, "<unknown message = %d>", message);
5495 return s_szBuf;
5496 }
5497 }
5498 #endif //__WXDEBUG__
5499
5500 static void TranslateKbdEventToMouse(wxWindowMSW *win,
5501 int *x, int *y, WPARAM *flags)
5502 {
5503 // construct the key mask
5504 WPARAM& fwKeys = *flags;
5505
5506 fwKeys = MK_RBUTTON;
5507 if ( wxIsCtrlDown() )
5508 fwKeys |= MK_CONTROL;
5509 if ( wxIsShiftDown() )
5510 fwKeys |= MK_SHIFT;
5511
5512 // simulate right mouse button click
5513 DWORD dwPos = ::GetMessagePos();
5514 *x = GET_X_LPARAM(dwPos);
5515 *y = GET_Y_LPARAM(dwPos);
5516
5517 win->ScreenToClient(x, y);
5518 }
5519
5520 static TEXTMETRIC wxGetTextMetrics(const wxWindowMSW *win)
5521 {
5522 // prepare the DC
5523 TEXTMETRIC tm;
5524 HWND hwnd = GetHwndOf(win);
5525 HDC hdc = ::GetDC(hwnd);
5526
5527 #if !wxDIALOG_UNIT_COMPATIBILITY
5528 // and select the current font into it
5529 HFONT hfont = GetHfontOf(win->GetFont());
5530 if ( hfont )
5531 {
5532 hfont = (HFONT)::SelectObject(hdc, hfont);
5533 }
5534 #endif
5535
5536 // finally retrieve the text metrics from it
5537 GetTextMetrics(hdc, &tm);
5538
5539 #if !wxDIALOG_UNIT_COMPATIBILITY
5540 // and clean up
5541 if ( hfont )
5542 {
5543 (void)::SelectObject(hdc, hfont);
5544 }
5545 #endif
5546
5547 ::ReleaseDC(hwnd, hdc);
5548
5549 return tm;
5550 }
5551
5552 // Find the wxWindow at the current mouse position, returning the mouse
5553 // position.
5554 wxWindow* wxFindWindowAtPointer(wxPoint& pt)
5555 {
5556 pt = wxGetMousePosition();
5557 return wxFindWindowAtPoint(pt);
5558 }
5559
5560 wxWindow* wxFindWindowAtPoint(const wxPoint& pt)
5561 {
5562 POINT pt2;
5563 pt2.x = pt.x;
5564 pt2.y = pt.y;
5565 HWND hWndHit = ::WindowFromPoint(pt2);
5566
5567 wxWindow* win = wxFindWinFromHandle((WXHWND) hWndHit) ;
5568 HWND hWnd = hWndHit;
5569
5570 // Try to find a window with a wxWindow associated with it
5571 while (!win && (hWnd != 0))
5572 {
5573 hWnd = ::GetParent(hWnd);
5574 win = wxFindWinFromHandle((WXHWND) hWnd) ;
5575 }
5576 return win;
5577 }
5578
5579 // Get the current mouse position.
5580 wxPoint wxGetMousePosition()
5581 {
5582 POINT pt;
5583 GetCursorPos( & pt );
5584
5585 return wxPoint(pt.x, pt.y);
5586 }
5587
5588 #if wxUSE_HOTKEY
5589
5590 bool wxWindowMSW::RegisterHotKey(int hotkeyId, int modifiers, int keycode)
5591 {
5592 UINT win_modifiers=0;
5593 if ( modifiers & wxMOD_ALT )
5594 win_modifiers |= MOD_ALT;
5595 if ( modifiers & wxMOD_SHIFT )
5596 win_modifiers |= MOD_SHIFT;
5597 if ( modifiers & wxMOD_CONTROL )
5598 win_modifiers |= MOD_CONTROL;
5599 if ( modifiers & wxMOD_WIN )
5600 win_modifiers |= MOD_WIN;
5601
5602 if ( !::RegisterHotKey(GetHwnd(), hotkeyId, win_modifiers, keycode) )
5603 {
5604 wxLogLastError(_T("RegisterHotKey"));
5605
5606 return FALSE;
5607 }
5608
5609 return TRUE;
5610 }
5611
5612 bool wxWindowMSW::UnregisterHotKey(int hotkeyId)
5613 {
5614 if ( !::UnregisterHotKey(GetHwnd(), hotkeyId) )
5615 {
5616 wxLogLastError(_T("UnregisterHotKey"));
5617
5618 return FALSE;
5619 }
5620
5621 return TRUE;
5622 }
5623
5624 bool wxWindowMSW::HandleHotKey(WXWPARAM wParam, WXLPARAM lParam)
5625 {
5626 int hotkeyId = wParam;
5627 int virtualKey = HIWORD(lParam);
5628 int win_modifiers = LOWORD(lParam);
5629
5630 wxKeyEvent event(CreateKeyEvent(wxEVT_HOTKEY, virtualKey, wParam, lParam));
5631 event.SetId(hotkeyId);
5632 event.m_shiftDown = (win_modifiers & MOD_SHIFT) != 0;
5633 event.m_controlDown = (win_modifiers & MOD_CONTROL) != 0;
5634 event.m_altDown = (win_modifiers & MOD_ALT) != 0;
5635 event.m_metaDown = (win_modifiers & MOD_WIN) != 0;
5636
5637 return GetEventHandler()->ProcessEvent(event);
5638 }
5639
5640 #endif // wxUSE_HOTKEY
5641