]> git.saurik.com Git - wxWidgets.git/blob - src/msw/window.cpp
wxBeginBusyCursor now works (better)
[wxWidgets.git] / src / msw / window.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: windows.cpp
3 // Purpose: wxWindow
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 04/01/98
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifdef __GNUG__
13 #pragma implementation "window.h"
14 #endif
15
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
18
19 #ifdef __BORLANDC__
20 #pragma hdrstop
21 #endif
22
23 #ifndef WX_PRECOMP
24 #include "wx/setup.h"
25 #include "wx/menu.h"
26 #include "wx/dc.h"
27 #include "wx/dcclient.h"
28 #include "wx/utils.h"
29 #include "wx/app.h"
30 #include "wx/panel.h"
31 #include "wx/layout.h"
32 #include "wx/dialog.h"
33 #include "wx/frame.h"
34 #include "wx/listbox.h"
35 #include "wx/button.h"
36 #include "wx/settings.h"
37 #include "wx/msgdlg.h"
38
39 #include <stdio.h>
40 #endif
41
42 #if wxUSE_OWNER_DRAWN
43 #include "wx/ownerdrw.h"
44 #endif
45
46 #if wxUSE_DRAG_AND_DROP
47 #include "wx/msw/ole/droptgt.h"
48 #endif
49
50 #include "wx/menuitem.h"
51 #include "wx/log.h"
52
53 #if wxUSE_TOOLTIPS
54 #include "wx/tooltip.h"
55 #endif
56
57 #include "wx/intl.h"
58 #include "wx/log.h"
59
60 #include "wx/msw/private.h"
61
62 #include <string.h>
63
64 #ifndef __GNUWIN32__
65 #include <shellapi.h>
66 #include <mmsystem.h>
67 #endif
68
69 #ifdef __WIN32__
70 #include <windowsx.h>
71 #endif
72
73 #if (defined(__WIN95__) && !defined(__GNUWIN32__)) || defined(__TWIN32__)
74 #include <commctrl.h>
75 #endif
76
77 #ifndef __TWIN32__
78 #ifdef __GNUWIN32__
79 #include <wx/msw/gnuwin32/extra.h>
80 #endif
81 #endif
82
83 // all these are defined in <windows.h>
84 #ifdef GetCharWidth
85 #undef GetCharWidth
86 #endif
87
88 #ifdef FindWindow
89 #undef FindWindow
90 #endif
91
92 #ifdef GetClassName
93 #undef GetClassName
94 #endif
95
96 #ifdef GetClassInfo
97 #undef GetClassInfo
98 #endif
99
100 #ifdef __WXDEBUG__
101 const char *wxGetMessageName(int message);
102 #endif //__WXDEBUG__
103
104 #define WINDOW_MARGIN 3 // This defines sensitivity of Leave events
105
106 wxMenu *wxCurrentPopupMenu = NULL;
107 extern wxList WXDLLEXPORT wxPendingDelete;
108
109 void wxRemoveHandleAssociation(wxWindow *win);
110 void wxAssociateWinWithHandle(HWND hWnd, wxWindow *win);
111 wxWindow *wxFindWinFromHandle(WXHWND hWnd);
112
113 #if !USE_SHARED_LIBRARY
114 IMPLEMENT_DYNAMIC_CLASS(wxWindow, wxEvtHandler)
115 #endif
116
117 BEGIN_EVENT_TABLE(wxWindow, wxEvtHandler)
118 EVT_CHAR(wxWindow::OnChar)
119 EVT_ERASE_BACKGROUND(wxWindow::OnEraseBackground)
120 EVT_SYS_COLOUR_CHANGED(wxWindow::OnSysColourChanged)
121 EVT_INIT_DIALOG(wxWindow::OnInitDialog)
122 EVT_IDLE(wxWindow::OnIdle)
123 END_EVENT_TABLE()
124
125 // Find an item given the MS Windows id
126 wxWindow *wxWindow::FindItem(int id) const
127 {
128 // if (!GetChildren())
129 // return NULL;
130 wxNode *current = GetChildren().First();
131 while (current)
132 {
133 wxWindow *childWin = (wxWindow *)current->Data();
134
135 wxWindow *wnd = childWin->FindItem(id) ;
136 if (wnd)
137 return wnd ;
138
139 if (childWin->IsKindOf(CLASSINFO(wxControl)))
140 {
141 wxControl *item = (wxControl *)childWin;
142 if (item->GetId() == id)
143 return item;
144 else
145 {
146 // In case it's a 'virtual' control (e.g. radiobox)
147 if (item->GetSubcontrols().Member((wxObject *)id))
148 return item;
149 }
150 }
151 current = current->Next();
152 }
153 return NULL;
154 }
155
156 // Find an item given the MS Windows handle
157 wxWindow *wxWindow::FindItemByHWND(WXHWND hWnd, bool controlOnly) const
158 {
159 // if (!GetChildren())
160 // return NULL;
161 wxNode *current = GetChildren().First();
162 while (current)
163 {
164 wxObject *obj = (wxObject *)current->Data() ;
165 // Do a recursive search.
166 wxWindow *parent = (wxWindow *)obj ;
167 wxWindow *wnd = parent->FindItemByHWND(hWnd) ;
168 if (wnd)
169 return wnd ;
170
171 if ((!controlOnly) || obj->IsKindOf(CLASSINFO(wxControl)))
172 {
173 wxWindow *item = (wxWindow *)current->Data();
174 if ((HWND)(item->GetHWND()) == (HWND) hWnd)
175 return item;
176 else
177 {
178 if ( item->ContainsHWND(hWnd) )
179 return item;
180 }
181 }
182 current = current->Next();
183 }
184 return NULL;
185 }
186
187 // Default command handler
188 bool wxWindow::MSWCommand(WXUINT WXUNUSED(param), WXWORD WXUNUSED(id))
189 {
190 return FALSE;
191 }
192
193 bool wxWindow::MSWNotify(WXWPARAM WXUNUSED(wParam),
194 WXLPARAM lParam,
195 WXLPARAM* WXUNUSED(result))
196 {
197 #ifdef __WIN95__
198 #if wxUSE_TOOLTIPS
199 NMHDR* hdr = (NMHDR *)lParam;
200 if ( hdr->code == TTN_NEEDTEXT && m_tooltip )
201 {
202 TOOLTIPTEXT *ttt = (TOOLTIPTEXT *)lParam;
203 ttt->lpszText = (char *)m_tooltip->GetTip().c_str();
204
205 // processed
206 return TRUE;
207 }
208 #endif
209 #endif
210
211 return FALSE;
212 }
213
214 void wxWindow::PreDelete(WXHDC WXUNUSED(dc))
215 {
216 }
217
218 WXHWND wxWindow::GetHWND(void) const
219 {
220 return (WXHWND) m_hWnd;
221 }
222
223 void wxWindow::SetHWND(WXHWND hWnd)
224 {
225 m_hWnd = hWnd;
226 }
227
228 // ----------------------------------------------------------------------------
229 // constructors and such
230 // ----------------------------------------------------------------------------
231
232 void wxWindow::Init()
233 {
234 m_isWindow = TRUE;
235
236 // Generic
237 m_windowId = 0;
238 m_isShown = TRUE;
239 m_windowStyle = 0;
240 m_windowParent = NULL;
241 m_windowEventHandler = this;
242 m_windowCursor = *wxSTANDARD_CURSOR;
243 m_children = new wxList;
244 m_doubleClickAllowed = 0 ;
245 m_winCaptured = FALSE;
246 m_constraints = NULL;
247 m_constraintsInvolvedIn = NULL;
248 m_windowSizer = NULL;
249 m_sizerParent = NULL;
250 m_autoLayout = FALSE;
251 m_windowValidator = NULL;
252
253 // MSW-specific
254 m_hWnd = 0;
255 m_winEnabled = TRUE;
256 m_caretWidth = m_caretHeight = 0;
257 m_caretEnabled =
258 m_caretShown = FALSE;
259 m_inOnSize = FALSE;
260 m_minSizeX =
261 m_minSizeY =
262 m_maxSizeX =
263 m_maxSizeY = -1;
264
265 m_isBeingDeleted = FALSE;
266 m_oldWndProc = 0;
267 #ifndef __WIN32__
268 m_globalHandle = 0;
269 #endif
270 m_useCtl3D = FALSE;
271 m_mouseInWindow = FALSE;
272
273 m_windowParent = NULL;
274 m_defaultItem = NULL;
275
276 wxSystemSettings settings;
277
278 m_backgroundColour = settings.GetSystemColour(wxSYS_COLOUR_3DFACE) ;
279 m_foregroundColour = *wxBLACK;
280
281 // wxWnd
282 m_lastMsg = 0;
283 m_lastWParam = 0;
284 m_lastLParam = 0;
285 m_hMenu = 0;
286
287 m_xThumbSize = 0;
288 m_yThumbSize = 0;
289 m_backgroundTransparent = FALSE;
290
291 m_lastXPos = (float)-1.0;
292 m_lastYPos = (float)-1.0;
293 m_lastEvent = -1;
294 m_returnCode = 0;
295
296 #if wxUSE_DRAG_AND_DROP
297 m_pDropTarget = NULL;
298 #endif
299
300 #if wxUSE_TOOLTIPS
301 m_tooltip = NULL;
302 #endif
303 }
304
305 wxWindow::wxWindow()
306 {
307 Init();
308 }
309
310 // Destructor
311 wxWindow::~wxWindow()
312 {
313 m_isBeingDeleted = TRUE;
314
315 // first of all, delete the things on which nothing else depends
316
317 #if wxUSE_TOOLTIPS
318 wxDELETE(m_tooltip);
319 #endif
320
321 // JACS - if behaviour is odd, restore this
322 // to the start of ~wxWindow. Vadim has changed
323 // it to nearer the end. Unsure of side-effects
324 // e.g. when deleting associated global data.
325 // Restore old Window proc, if required
326 // UnsubclassWin();
327
328 // Have to delete constraints/sizer FIRST otherwise
329 // sizers may try to look at deleted windows as they
330 // delete themselves.
331 #if wxUSE_CONSTRAINTS
332 DeleteRelatedConstraints();
333
334 if (m_constraints)
335 {
336 // This removes any dangling pointers to this window
337 // in other windows' constraintsInvolvedIn lists.
338 UnsetConstraints(m_constraints);
339 delete m_constraints;
340 m_constraints = NULL;
341 }
342
343 wxDELETE(m_windowSizer);
344
345 // If this is a child of a sizer, remove self from parent
346 if (m_sizerParent)
347 m_sizerParent->RemoveChild((wxWindow *)this);
348 #endif
349
350 // wxWnd
351 MSWDetachWindowMenu();
352
353 if (m_windowParent)
354 m_windowParent->RemoveChild(this);
355
356 DestroyChildren();
357
358 if (m_hWnd)
359 ::DestroyWindow((HWND)m_hWnd);
360
361 wxRemoveHandleAssociation(this);
362 m_hWnd = 0;
363 #ifndef __WIN32__
364 if (m_globalHandle)
365 {
366 GlobalFree((HGLOBAL) m_globalHandle);
367 m_globalHandle = 0;
368 }
369 #endif
370
371 delete m_children;
372 m_children = NULL;
373
374 // Just in case the window has been Closed, but
375 // we're then deleting immediately: don't leave
376 // dangling pointers.
377 wxPendingDelete.DeleteObject(this);
378
379 // Just in case we've loaded a top-level window via
380 // wxWindow::LoadNativeDialog but we weren't a dialog
381 // class
382 wxTopLevelWindows.DeleteObject(this);
383
384 if ( m_windowValidator )
385 delete m_windowValidator;
386
387 // Restore old Window proc, if required
388 // and remove hWnd <-> wxWindow association
389 UnsubclassWin();
390 }
391
392 // Destroy the window (delayed, if a managed window)
393 bool wxWindow::Destroy()
394 {
395 delete this;
396 return TRUE;
397 }
398
399 extern char wxCanvasClassName[];
400
401 // real construction (Init() must have been called before!)
402 bool wxWindow::Create(wxWindow *parent, wxWindowID id,
403 const wxPoint& pos,
404 const wxSize& size,
405 long style,
406 const wxString& name)
407 {
408 wxCHECK_MSG( parent, FALSE, "can't create wxWindow without parent" );
409
410 parent->AddChild(this);
411
412 SetName(name);
413
414 if ( id == -1 )
415 m_windowId = (int)NewControlId();
416 else
417 m_windowId = id;
418
419 int x = pos.x;
420 int y = pos.y;
421 int width = size.x;
422 int height = size.y;
423
424 // To be consistent with wxGTK
425 if (width == -1)
426 width = 20;
427 if (height == -1)
428 height = 20;
429
430 wxSystemSettings settings;
431
432 m_windowStyle = style;
433
434 DWORD msflags = 0;
435 if (style & wxBORDER)
436 msflags |= WS_BORDER;
437 if (style & wxTHICK_FRAME)
438 msflags |= WS_THICKFRAME;
439
440 msflags |= WS_CHILD | WS_VISIBLE;
441 if (style & wxCLIP_CHILDREN)
442 msflags |= WS_CLIPCHILDREN;
443
444 bool want3D;
445 WXDWORD exStyle = Determine3DEffects(WS_EX_CLIENTEDGE, &want3D) ;
446
447 // Even with extended styles, need to combine with WS_BORDER
448 // for them to look right.
449 if (want3D || (m_windowStyle & wxSIMPLE_BORDER) || (m_windowStyle & wxRAISED_BORDER) ||
450 (m_windowStyle & wxSUNKEN_BORDER) || (m_windowStyle & wxDOUBLE_BORDER))
451 msflags |= WS_BORDER;
452
453 MSWCreate(m_windowId, parent, wxCanvasClassName, this, NULL,
454 x, y, width, height, msflags, NULL, exStyle);
455
456 return TRUE;
457 }
458
459 void wxWindow::SetFocus()
460 {
461 HWND hWnd = (HWND) GetHWND();
462 if (hWnd)
463 ::SetFocus(hWnd);
464 }
465
466 void wxWindow::Enable(bool enable)
467 {
468 m_winEnabled = enable;
469 HWND hWnd = (HWND) GetHWND();
470 if (hWnd)
471 ::EnableWindow(hWnd, (BOOL)enable);
472 }
473
474 void wxWindow::CaptureMouse()
475 {
476 HWND hWnd = (HWND) GetHWND();
477 if (hWnd && !m_winCaptured)
478 {
479 SetCapture(hWnd);
480 m_winCaptured = TRUE;
481 }
482 }
483
484 void wxWindow::ReleaseMouse()
485 {
486 if (m_winCaptured)
487 {
488 ReleaseCapture();
489 m_winCaptured = FALSE;
490 }
491 }
492
493 void wxWindow::SetAcceleratorTable(const wxAcceleratorTable& accel)
494 {
495 m_acceleratorTable = accel;
496 }
497
498
499 // Push/pop event handler (i.e. allow a chain of event handlers
500 // be searched)
501 void wxWindow::PushEventHandler(wxEvtHandler *handler)
502 {
503 handler->SetNextHandler(GetEventHandler());
504 SetEventHandler(handler);
505 }
506
507 wxEvtHandler *wxWindow::PopEventHandler(bool deleteHandler)
508 {
509 if ( GetEventHandler() )
510 {
511 wxEvtHandler *handlerA = GetEventHandler();
512 wxEvtHandler *handlerB = handlerA->GetNextHandler();
513 handlerA->SetNextHandler(NULL);
514 SetEventHandler(handlerB);
515 if ( deleteHandler )
516 {
517 delete handlerA;
518 return NULL;
519 }
520 else
521 return handlerA;
522 }
523 else
524 return NULL;
525 }
526
527 #if wxUSE_DRAG_AND_DROP
528
529 void wxWindow::SetDropTarget(wxDropTarget *pDropTarget)
530 {
531 if ( m_pDropTarget != 0 ) {
532 m_pDropTarget->Revoke(m_hWnd);
533 delete m_pDropTarget;
534 }
535
536 m_pDropTarget = pDropTarget;
537 if ( m_pDropTarget != 0 )
538 m_pDropTarget->Register(m_hWnd);
539 }
540
541 #endif // wxUSE_DRAG_AND_DROP
542
543
544 //old style file-manager drag&drop support
545 // I think we should retain the old-style
546 // DragAcceptFiles in parallel with SetDropTarget.
547 // JACS
548 void wxWindow::DragAcceptFiles(bool accept)
549 {
550 HWND hWnd = (HWND) GetHWND();
551 if (hWnd)
552 ::DragAcceptFiles(hWnd, (BOOL)accept);
553 }
554
555 // ----------------------------------------------------------------------------
556 // tooltips
557 // ----------------------------------------------------------------------------
558
559 #if wxUSE_TOOLTIPS
560
561 void wxWindow::SetToolTip(const wxString &tip)
562 {
563 SetToolTip(new wxToolTip(tip));
564 }
565
566 void wxWindow::SetToolTip(wxToolTip *tooltip)
567 {
568 if ( m_tooltip )
569 delete m_tooltip;
570
571 m_tooltip = tooltip;
572 m_tooltip->SetWindow(this);
573 }
574
575 #endif // wxUSE_TOOLTIPS
576
577 // Get total size
578 void wxWindow::GetSize(int *x, int *y) const
579 {
580 HWND hWnd = (HWND) GetHWND();
581 RECT rect;
582 GetWindowRect(hWnd, &rect);
583 *x = rect.right - rect.left;
584 *y = rect.bottom - rect.top;
585 }
586
587 void wxWindow::GetPosition(int *x, int *y) const
588 {
589 HWND hWnd = (HWND) GetHWND();
590 HWND hParentWnd = 0;
591 if (GetParent())
592 hParentWnd = (HWND) GetParent()->GetHWND();
593
594 RECT rect;
595 GetWindowRect(hWnd, &rect);
596
597 // Since we now have the absolute screen coords,
598 // if there's a parent we must subtract its top left corner
599 POINT point;
600 point.x = rect.left;
601 point.y = rect.top;
602 if (hParentWnd)
603 {
604 ::ScreenToClient(hParentWnd, &point);
605 }
606
607 // We may be faking the client origin.
608 // So a window that's really at (0, 30) may appear
609 // (to wxWin apps) to be at (0, 0).
610 if (GetParent())
611 {
612 wxPoint pt(GetParent()->GetClientAreaOrigin());
613 point.x -= pt.x;
614 point.y -= pt.y;
615 }
616 *x = point.x;
617 *y = point.y;
618 }
619
620 void wxWindow::ScreenToClient(int *x, int *y) const
621 {
622 HWND hWnd = (HWND) GetHWND();
623 POINT pt;
624 pt.x = *x;
625 pt.y = *y;
626
627 ::ScreenToClient(hWnd, &pt);
628
629 *x = pt.x;
630 *y = pt.y;
631 }
632
633 void wxWindow::ClientToScreen(int *x, int *y) const
634 {
635 HWND hWnd = (HWND) GetHWND();
636 POINT pt;
637 pt.x = *x;
638 pt.y = *y;
639
640 ::ClientToScreen(hWnd, &pt);
641
642 *x = pt.x;
643 *y = pt.y;
644 }
645
646 void wxWindow::SetCursor(const wxCursor& cursor)
647 {
648 m_windowCursor = cursor;
649 if (m_windowCursor.Ok())
650 {
651 HWND hWnd = (HWND) GetHWND();
652
653 // Change the cursor NOW if we're within the correct window
654 POINT point;
655 ::GetCursorPos(&point);
656
657 RECT rect;
658 ::GetWindowRect(hWnd, &rect);
659
660 if (::PtInRect(&rect, point) && !wxIsBusy())
661 ::SetCursor((HCURSOR) m_windowCursor.GetHCURSOR());
662 }
663
664 // This will cause big reentrancy problems if wxFlushEvents is implemented.
665 // wxFlushEvents();
666 // return old_cursor;
667 }
668
669
670 // Get size *available for subwindows* i.e. excluding menu bar etc.
671 void wxWindow::GetClientSize(int *x, int *y) const
672 {
673 HWND hWnd = (HWND) GetHWND();
674 RECT rect;
675 ::GetClientRect(hWnd, &rect);
676 *x = rect.right;
677 *y = rect.bottom;
678 }
679
680 void wxWindow::DoSetSize(int x, int y, int width, int height, int sizeFlags)
681 {
682 int currentX, currentY;
683 GetPosition(&currentX, &currentY);
684 int currentW,currentH;
685 GetSize(&currentW, &currentH);
686
687 if (x == currentX && y == currentY && width == currentW && height == currentH)
688 return;
689
690 int actualWidth = width;
691 int actualHeight = height;
692 int actualX = x;
693 int actualY = y;
694 if (x == -1 || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE))
695 actualX = currentX;
696 if (y == -1 || (sizeFlags & wxSIZE_ALLOW_MINUS_ONE))
697 actualY = currentY;
698
699 AdjustForParentClientOrigin(actualX, actualY, sizeFlags);
700
701 if (width == -1)
702 actualWidth = currentW ;
703 if (height == -1)
704 actualHeight = currentH ;
705
706 HWND hWnd = (HWND) GetHWND();
707 if (hWnd)
708 MoveWindow(hWnd, actualX, actualY, actualWidth, actualHeight, (BOOL)TRUE);
709 }
710
711 void wxWindow::DoSetClientSize(int width, int height)
712 {
713 wxWindow *parent = GetParent();
714 HWND hWnd = (HWND) GetHWND();
715 HWND hParentWnd = (HWND) (HWND) parent->GetHWND();
716
717 RECT rect;
718 ::GetClientRect(hWnd, &rect);
719
720 RECT rect2;
721 GetWindowRect(hWnd, &rect2);
722
723 // Find the difference between the entire window (title bar and all)
724 // and the client area; add this to the new client size to move the
725 // window
726 int actual_width = rect2.right - rect2.left - rect.right + width;
727 int actual_height = rect2.bottom - rect2.top - rect.bottom + height;
728
729 // If there's a parent, must subtract the parent's top left corner
730 // since MoveWindow moves relative to the parent
731
732 POINT point;
733 point.x = rect2.left;
734 point.y = rect2.top;
735 if (parent)
736 {
737 ::ScreenToClient(hParentWnd, &point);
738 }
739
740 MoveWindow(hWnd, point.x, point.y, actual_width, actual_height, (BOOL)TRUE);
741
742 wxSizeEvent event(wxSize(width, height), m_windowId);
743 event.SetEventObject(this);
744 GetEventHandler()->ProcessEvent(event);
745 }
746
747 // For implementation purposes - sometimes decorations make the client area
748 // smaller
749 wxPoint wxWindow::GetClientAreaOrigin() const
750 {
751 return wxPoint(0, 0);
752 }
753
754 // Makes an adjustment to the window position (for example, a frame that has
755 // a toolbar that it manages itself).
756 void wxWindow::AdjustForParentClientOrigin(int& x, int& y, int sizeFlags)
757 {
758 if (((sizeFlags & wxSIZE_NO_ADJUSTMENTS) == 0) && GetParent())
759 {
760 wxPoint pt(GetParent()->GetClientAreaOrigin());
761 x += pt.x; y += pt.y;
762 }
763 }
764
765 bool wxWindow::Show(bool show)
766 {
767 m_isShown = show;
768 HWND hWnd = (HWND) GetHWND();
769 int cshow;
770 if (show)
771 cshow = SW_SHOW;
772 else
773 cshow = SW_HIDE;
774 ShowWindow(hWnd, cshow);
775 if (show)
776 {
777 BringWindowToTop(hWnd);
778 // Next line causes a crash on NT, apparently.
779 // UpdateWindow(hWnd); // Should this be here or will it cause inefficiency?
780 }
781 return TRUE;
782 }
783
784 bool wxWindow::IsShown(void) const
785 {
786 // Can't rely on IsWindowVisible, since it will return FALSE
787 // if the parent is not visible.
788 return m_isShown;
789 // int ret = ::IsWindowVisible((HWND) GetHWND()) ;
790 // return (ret != 0);
791 }
792
793 int wxWindow::GetCharHeight(void) const
794 {
795 TEXTMETRIC lpTextMetric;
796 HWND hWnd = (HWND) GetHWND();
797 HDC dc = ::GetDC(hWnd);
798
799 GetTextMetrics(dc, &lpTextMetric);
800 ::ReleaseDC(hWnd, dc);
801
802 return lpTextMetric.tmHeight;
803 }
804
805 int wxWindow::GetCharWidth(void) const
806 {
807 TEXTMETRIC lpTextMetric;
808 HWND hWnd = (HWND) GetHWND();
809 HDC dc = ::GetDC(hWnd);
810
811 GetTextMetrics(dc, &lpTextMetric);
812 ::ReleaseDC(hWnd, dc);
813
814 return lpTextMetric.tmAveCharWidth;
815 }
816
817 void wxWindow::GetTextExtent(const wxString& string, int *x, int *y,
818 int *descent, int *externalLeading, const wxFont *theFont, bool) const
819 {
820 wxFont *fontToUse = (wxFont *)theFont;
821 if (!fontToUse)
822 fontToUse = (wxFont *) & m_windowFont;
823
824 HWND hWnd = (HWND) GetHWND();
825 HDC dc = ::GetDC(hWnd);
826
827 HFONT fnt = 0;
828 HFONT was = 0;
829 if (fontToUse && fontToUse->Ok())
830 {
831 fnt = (HFONT)fontToUse->GetResourceHandle();
832 if ( fnt )
833 was = (HFONT) SelectObject(dc,fnt) ;
834 }
835
836 SIZE sizeRect;
837 TEXTMETRIC tm;
838 GetTextExtentPoint(dc, (const char *)string, (int)string.Length(), &sizeRect);
839 GetTextMetrics(dc, &tm);
840
841 if (fontToUse && fnt && was)
842 SelectObject(dc,was) ;
843
844 ReleaseDC(hWnd, dc);
845
846 *x = sizeRect.cx;
847 *y = sizeRect.cy;
848 if (descent) *descent = tm.tmDescent;
849 if (externalLeading) *externalLeading = tm.tmExternalLeading;
850
851 // if (fontToUse)
852 // fontToUse->ReleaseResource();
853 }
854
855 void wxWindow::Refresh(bool eraseBack, const wxRect *rect)
856 {
857 HWND hWnd = (HWND) GetHWND();
858 if (hWnd)
859 {
860 if (rect)
861 {
862 RECT mswRect;
863 mswRect.left = rect->x;
864 mswRect.top = rect->y;
865 mswRect.right = rect->x + rect->width;
866 mswRect.bottom = rect->y + rect->height;
867
868 ::InvalidateRect(hWnd, &mswRect, eraseBack);
869 }
870 else
871 ::InvalidateRect(hWnd, NULL, eraseBack);
872 }
873 }
874
875 bool wxWindow::ProcessEvent(wxEvent& event)
876 {
877 // we save here the information about the last message because it might be
878 // overwritten if the event handler sends any messages to our window (case
879 // in point: wxNotebook::OnSize) - and then if we call Default() later
880 // (which is done quite often if the message is not processed) it will use
881 // incorrect values for m_lastXXX variables
882 WXUINT lastMsg = m_lastMsg;
883 WXWPARAM lastWParam = m_lastWParam;
884 WXLPARAM lastLParam = m_lastLParam;
885
886 // call the base version
887 bool bProcessed = wxEvtHandler::ProcessEvent(event);
888
889 // restore
890 m_lastMsg = lastMsg;
891 m_lastWParam = lastWParam;
892 m_lastLParam = lastLParam;
893
894 return bProcessed;
895 }
896
897 // Hook for new window just as it's being created,
898 // when the window isn't yet associated with the handle
899 wxWindow *wxWndHook = NULL;
900
901 // Main window proc
902 LRESULT APIENTRY _EXPORT wxWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
903 {
904 wxWindow *wnd = wxFindWinFromHandle((WXHWND) hWnd);
905
906 if (!wnd && wxWndHook)
907 {
908 wxAssociateWinWithHandle(hWnd, wxWndHook);
909 wnd = wxWndHook;
910 wxWndHook = NULL;
911 wnd->m_hWnd = (WXHWND) hWnd;
912 }
913
914 // Stop right here if we don't have a valid handle in our wxWindow object.
915 if (wnd && !wnd->m_hWnd) {
916 wnd->m_hWnd = (WXHWND) hWnd;
917 long res = wnd->MSWDefWindowProc(message, wParam, lParam );
918 wnd->m_hWnd = 0;
919 return res;
920 }
921
922 if (wnd) {
923 wnd->m_lastMsg = message;
924 wnd->m_lastWParam = wParam;
925 wnd->m_lastLParam = lParam;
926 }
927 if (wnd)
928 return wnd->MSWWindowProc(message, wParam, lParam);
929 else
930 return DefWindowProc( hWnd, message, wParam, lParam );
931 }
932
933 // Should probably have a test for 'genuine' NT
934 #if defined(__WIN32__)
935 #define DIMENSION_TYPE short
936 #else
937 #define DIMENSION_TYPE int
938 #endif
939
940 // Main Windows 3 window proc
941 long wxWindow::MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam)
942 {
943 wxASSERT( m_lastMsg == message &&
944 m_lastWParam == wParam && m_lastLParam == lParam );
945
946 #ifdef __WXDEBUG__
947 wxLogTrace(wxTraceMessages, "Processing %s(%lx, %lx)",
948 wxGetMessageName(message), wParam, lParam);
949 #endif // __WXDEBUG__
950
951 HWND hWnd = (HWND)m_hWnd;
952
953 switch (message)
954 {
955 case WM_ACTIVATE:
956 {
957 #ifdef __WIN32__
958 WORD state = LOWORD(wParam);
959 WORD minimized = HIWORD(wParam);
960 HWND hwnd = (HWND)lParam;
961 #else
962 WORD state = (WORD)wParam;
963 WORD minimized = LOWORD(lParam);
964 HWND hwnd = (HWND)HIWORD(lParam);
965 #endif
966 MSWOnActivate(state, (minimized != 0), (WXHWND) hwnd);
967 return 0;
968 break;
969 }
970 case WM_SETFOCUS:
971 {
972 HWND hwnd = (HWND)wParam;
973 // return OnSetFocus(hwnd);
974
975 if (MSWOnSetFocus((WXHWND) hwnd))
976 return 0;
977 else return MSWDefWindowProc(message, wParam, lParam );
978 break;
979 }
980 case WM_KILLFOCUS:
981 {
982 HWND hwnd = (HWND)lParam;
983 // return OnKillFocus(hwnd);
984 if (MSWOnKillFocus((WXHWND) hwnd))
985 return 0;
986 else
987 return MSWDefWindowProc(message, wParam, lParam );
988 break;
989 }
990 case WM_CREATE:
991 {
992 MSWOnCreate((WXLPCREATESTRUCT) (LPCREATESTRUCT)lParam);
993 return 0;
994 break;
995 }
996 case WM_SHOWWINDOW:
997 {
998 MSWOnShow((wParam != 0), (int) lParam);
999 break;
1000 }
1001 case WM_PAINT:
1002 {
1003 if (MSWOnPaint())
1004 return 0;
1005 else return MSWDefWindowProc(message, wParam, lParam );
1006 break;
1007 }
1008 case WM_QUERYDRAGICON:
1009 {
1010 HICON hIcon = (HICON)MSWOnQueryDragIcon();
1011 if ( hIcon )
1012 return (long)hIcon;
1013 else
1014 return MSWDefWindowProc(message, wParam, lParam );
1015 break;
1016 }
1017
1018 case WM_SIZE:
1019 {
1020 int width = LOWORD(lParam);
1021 int height = HIWORD(lParam);
1022 MSWOnSize(width, height, wParam);
1023 break;
1024 }
1025
1026 case WM_MOVE:
1027 {
1028 wxMoveEvent event(wxPoint(LOWORD(lParam), HIWORD(lParam)),
1029 m_windowId);
1030 event.SetEventObject(this);
1031 if ( !GetEventHandler()->ProcessEvent(event) )
1032 Default();
1033 }
1034 break;
1035
1036 case WM_WINDOWPOSCHANGING:
1037 {
1038 MSWOnWindowPosChanging((void *)lParam);
1039 break;
1040 }
1041
1042 case WM_RBUTTONDOWN:
1043 {
1044 int x = (DIMENSION_TYPE) LOWORD(lParam);
1045 int y = (DIMENSION_TYPE) HIWORD(lParam);
1046 MSWOnRButtonDown(x, y, wParam);
1047 break;
1048 }
1049 case WM_RBUTTONUP:
1050 {
1051 int x = (DIMENSION_TYPE) LOWORD(lParam);
1052 int y = (DIMENSION_TYPE) HIWORD(lParam);
1053 MSWOnRButtonUp(x, y, wParam);
1054 break;
1055 }
1056 case WM_RBUTTONDBLCLK:
1057 {
1058 int x = (DIMENSION_TYPE) LOWORD(lParam);
1059 int y = (DIMENSION_TYPE) HIWORD(lParam);
1060 MSWOnRButtonDClick(x, y, wParam);
1061 break;
1062 }
1063 case WM_MBUTTONDOWN:
1064 {
1065 int x = (DIMENSION_TYPE) LOWORD(lParam);
1066 int y = (DIMENSION_TYPE) HIWORD(lParam);
1067 MSWOnMButtonDown(x, y, wParam);
1068 break;
1069 }
1070 case WM_MBUTTONUP:
1071 {
1072 int x = (DIMENSION_TYPE) LOWORD(lParam);
1073 int y = (DIMENSION_TYPE) HIWORD(lParam);
1074 MSWOnMButtonUp(x, y, wParam);
1075 break;
1076 }
1077 case WM_MBUTTONDBLCLK:
1078 {
1079 int x = (DIMENSION_TYPE) LOWORD(lParam);
1080 int y = (DIMENSION_TYPE) HIWORD(lParam);
1081 MSWOnMButtonDClick(x, y, wParam);
1082 break;
1083 }
1084 case WM_LBUTTONDOWN:
1085 {
1086 int x = (DIMENSION_TYPE) LOWORD(lParam);
1087 int y = (DIMENSION_TYPE) HIWORD(lParam);
1088 MSWOnLButtonDown(x, y, wParam);
1089 break;
1090 }
1091 case WM_LBUTTONUP:
1092 {
1093 int x = (DIMENSION_TYPE) LOWORD(lParam);
1094 int y = (DIMENSION_TYPE) HIWORD(lParam);
1095 MSWOnLButtonUp(x, y, wParam);
1096 break;
1097 }
1098 case WM_LBUTTONDBLCLK:
1099 {
1100 int x = (DIMENSION_TYPE) LOWORD(lParam);
1101 int y = (DIMENSION_TYPE) HIWORD(lParam);
1102 MSWOnLButtonDClick(x, y, wParam);
1103 break;
1104 }
1105 case WM_MOUSEMOVE:
1106 {
1107 int x = (DIMENSION_TYPE) LOWORD(lParam);
1108 int y = (DIMENSION_TYPE) HIWORD(lParam);
1109 MSWOnMouseMove(x, y, wParam);
1110 break;
1111 }
1112 case MM_JOY1BUTTONDOWN:
1113 {
1114 int x = LOWORD(lParam);
1115 int y = HIWORD(lParam);
1116 MSWOnJoyDown(wxJOYSTICK1, x, y, wParam);
1117 break;
1118 }
1119 case MM_JOY2BUTTONDOWN:
1120 {
1121 int x = LOWORD(lParam);
1122 int y = HIWORD(lParam);
1123 MSWOnJoyDown(wxJOYSTICK2, x, y, wParam);
1124 break;
1125 }
1126 case MM_JOY1BUTTONUP:
1127 {
1128 int x = LOWORD(lParam);
1129 int y = HIWORD(lParam);
1130 MSWOnJoyUp(wxJOYSTICK1, x, y, wParam);
1131 break;
1132 }
1133 case MM_JOY2BUTTONUP:
1134 {
1135 int x = LOWORD(lParam);
1136 int y = HIWORD(lParam);
1137 MSWOnJoyUp(wxJOYSTICK2, x, y, wParam);
1138 break;
1139 }
1140 case MM_JOY1MOVE:
1141 {
1142 int x = LOWORD(lParam);
1143 int y = HIWORD(lParam);
1144 MSWOnJoyMove(wxJOYSTICK1, x, y, wParam);
1145 break;
1146 }
1147 case MM_JOY2MOVE:
1148 {
1149 int x = LOWORD(lParam);
1150 int y = HIWORD(lParam);
1151 MSWOnJoyMove(wxJOYSTICK2, x, y, wParam);
1152 break;
1153 }
1154 case MM_JOY1ZMOVE:
1155 {
1156 int z = LOWORD(lParam);
1157 MSWOnJoyZMove(wxJOYSTICK1, z, wParam);
1158 break;
1159 }
1160 case MM_JOY2ZMOVE:
1161 {
1162 int z = LOWORD(lParam);
1163 MSWOnJoyZMove(wxJOYSTICK2, z, wParam);
1164 break;
1165 }
1166 case WM_DESTROY:
1167 {
1168 if (MSWOnDestroy())
1169 return 0;
1170 else return MSWDefWindowProc(message, wParam, lParam );
1171 break;
1172 }
1173 case WM_SYSCOMMAND:
1174 {
1175 return MSWOnSysCommand(wParam, lParam);
1176 break;
1177 }
1178 case WM_COMMAND:
1179 {
1180 #ifdef __WIN32__
1181 WORD id = LOWORD(wParam);
1182 HWND hwnd = (HWND)lParam;
1183 WORD cmd = HIWORD(wParam);
1184 #else
1185 WORD id = (WORD)wParam;
1186 HWND hwnd = (HWND)LOWORD(lParam) ;
1187 WORD cmd = HIWORD(lParam);
1188 #endif
1189 if (!MSWOnCommand(id, cmd, (WXHWND) hwnd))
1190 return MSWDefWindowProc(message, wParam, lParam );
1191 break;
1192 }
1193 #if defined(__WIN95__)
1194 case WM_NOTIFY:
1195 {
1196 // for some messages (TVN_ITEMEXPANDING for example), the return
1197 // value of WM_NOTIFY handler is important, so don't just return 0
1198 // if we processed the message
1199 return MSWOnNotify(wParam, lParam);
1200 }
1201 #endif
1202 case WM_MENUSELECT:
1203 {
1204 #ifdef __WIN32__
1205 WORD flags = HIWORD(wParam);
1206 HMENU sysmenu = (HMENU)lParam;
1207 #else
1208 WORD flags = LOWORD(lParam);
1209 HMENU sysmenu = (HMENU)HIWORD(lParam);
1210 #endif
1211 MSWOnMenuHighlight((WORD)wParam, flags, (WXHMENU) sysmenu);
1212 break;
1213 }
1214 case WM_INITMENUPOPUP:
1215 {
1216 MSWOnInitMenuPopup((WXHMENU) (HMENU)wParam, (int)LOWORD(lParam), (HIWORD(lParam) != 0));
1217 break;
1218 }
1219 case WM_DRAWITEM:
1220 {
1221 return MSWOnDrawItem((int)wParam, (WXDRAWITEMSTRUCT *)lParam);
1222 break;
1223 }
1224 case WM_MEASUREITEM:
1225 {
1226 return MSWOnMeasureItem((int)wParam, (WXMEASUREITEMSTRUCT *)lParam);
1227 break;
1228 }
1229
1230 case WM_KEYDOWN:
1231 {
1232 // If this has been processed by an event handler,
1233 // return 0 now (we've handled it).
1234 if (MSWOnKeyDown((WORD) wParam, lParam))
1235 {
1236 return 0;
1237 }
1238
1239 // we consider these message "not interesting" to OnChar
1240 if ( wParam == VK_SHIFT || wParam == VK_CONTROL )
1241 {
1242 return Default();
1243 }
1244
1245 // Avoid duplicate messages to OnChar for these special keys
1246 switch ( wParam )
1247 {
1248 case VK_ESCAPE:
1249 case VK_SPACE:
1250 case VK_RETURN:
1251 case VK_BACK:
1252 case VK_TAB:
1253 case VK_LEFT:
1254 case VK_RIGHT:
1255 case VK_DOWN:
1256 case VK_UP:
1257 {
1258 /*
1259 // if ( ::GetKeyState(VK_CONTROL) & 0x100 ) // Don't understand purpose of this test
1260 if (!MSWOnChar((WORD)wParam, lParam))
1261 return Default();
1262 */
1263 break;
1264 }
1265 default:
1266 if (!MSWOnChar((WORD)wParam, lParam))
1267 {
1268 return Default();
1269 }
1270 /*
1271 if ( ::GetKeyState(VK_CONTROL) & 0x100 )
1272 return Default();
1273 */
1274 break;
1275 }
1276
1277 break;
1278 }
1279 case WM_KEYUP:
1280 {
1281 if (!MSWOnKeyUp((WORD) wParam, lParam))
1282 return Default();
1283 break;
1284 }
1285 case WM_CHAR: // Always an ASCII character
1286 {
1287 if (!MSWOnChar((WORD)wParam, lParam, TRUE))
1288 return Default();
1289 break;
1290 }
1291
1292 case WM_HSCROLL:
1293 {
1294 #ifdef __WIN32__
1295 WORD code = LOWORD(wParam);
1296 WORD pos = HIWORD(wParam);
1297 HWND control = (HWND)lParam;
1298 #else
1299 WORD code = (WORD)wParam;
1300 WORD pos = LOWORD(lParam);
1301 HWND control = (HWND)HIWORD(lParam);
1302 #endif
1303 MSWOnHScroll(code, pos, (WXHWND) control);
1304 break;
1305 }
1306 case WM_VSCROLL:
1307 {
1308 #ifdef __WIN32__
1309 WORD code = LOWORD(wParam);
1310 WORD pos = HIWORD(wParam);
1311 HWND control = (HWND)lParam;
1312 #else
1313 WORD code = (WORD)wParam;
1314 WORD pos = LOWORD(lParam);
1315 HWND control = (HWND)HIWORD(lParam);
1316 #endif
1317 MSWOnVScroll(code, pos, (WXHWND) control);
1318 break;
1319 }
1320 #ifdef __WIN32__
1321 case WM_CTLCOLORBTN:
1322 {
1323 int nCtlColor = CTLCOLOR_BTN;
1324 HWND control = (HWND)lParam;
1325 HDC pDC = (HDC)wParam;
1326 return (DWORD)MSWOnCtlColor((WXHDC) pDC, (WXHWND) control, nCtlColor,
1327 message, wParam, lParam);
1328 break;
1329 }
1330 case WM_CTLCOLORDLG:
1331 {
1332 int nCtlColor = CTLCOLOR_DLG;
1333 HWND control = (HWND)lParam;
1334 HDC pDC = (HDC)wParam;
1335 return (DWORD)MSWOnCtlColor((WXHDC) pDC, (WXHWND) control, nCtlColor,
1336 message, wParam, lParam);\
1337 break;
1338 }
1339 case WM_CTLCOLORLISTBOX:
1340 {
1341 int nCtlColor = CTLCOLOR_LISTBOX;
1342 HWND control = (HWND)lParam;
1343 HDC pDC = (HDC)wParam;
1344 return (DWORD)MSWOnCtlColor((WXHDC) pDC, (WXHWND) control, nCtlColor,
1345 message, wParam, lParam);
1346 break;
1347 }
1348 case WM_CTLCOLORMSGBOX:
1349 {
1350 int nCtlColor = CTLCOLOR_MSGBOX;
1351 HWND control = (HWND)lParam;
1352 HDC pDC = (HDC)wParam;
1353 return (DWORD)MSWOnCtlColor((WXHDC) pDC, (WXHWND) control, nCtlColor,
1354 message, wParam, lParam);
1355 break;
1356 }
1357 case WM_CTLCOLORSCROLLBAR:
1358 {
1359 int nCtlColor = CTLCOLOR_SCROLLBAR;
1360 HWND control = (HWND)lParam;
1361 HDC pDC = (HDC)wParam;
1362 return (DWORD)MSWOnCtlColor((WXHDC) pDC, (WXHWND) control, nCtlColor,
1363 message, wParam, lParam);
1364 break;
1365 }
1366 case WM_CTLCOLORSTATIC:
1367 {
1368 int nCtlColor = CTLCOLOR_STATIC;
1369 HWND control = (HWND)lParam;
1370 HDC pDC = (HDC)wParam;
1371 return (DWORD)MSWOnCtlColor((WXHDC) pDC, (WXHWND) control, nCtlColor,
1372 message, wParam, lParam);
1373 break;
1374 }
1375 case WM_CTLCOLOREDIT:
1376 {
1377 int nCtlColor = CTLCOLOR_EDIT;
1378 HWND control = (HWND)lParam;
1379 HDC pDC = (HDC)wParam;
1380 return (DWORD)MSWOnCtlColor((WXHDC) pDC, (WXHWND) control, nCtlColor,
1381 message, wParam, lParam);
1382 break;
1383 }
1384 #else
1385 case WM_CTLCOLOR:
1386 {
1387 HWND control = (HWND)LOWORD(lParam);
1388 int nCtlColor = (int)HIWORD(lParam);
1389 HDC pDC = (HDC)wParam;
1390 return (DWORD)MSWOnCtlColor((WXHDC) pDC, (WXHWND) control, nCtlColor,
1391 message, wParam, lParam);
1392 break;
1393 }
1394 #endif
1395 case WM_SYSCOLORCHANGE:
1396 {
1397 // Return value of 0 means, we processed it.
1398 if (MSWOnColorChange((WXHWND) hWnd, message, wParam, lParam) == 0)
1399 return 0;
1400 else
1401 return MSWDefWindowProc(message, wParam, lParam );
1402 break;
1403 }
1404 case WM_PALETTECHANGED:
1405 {
1406 return MSWOnPaletteChanged((WXHWND) (HWND) wParam);
1407 break;
1408 }
1409 case WM_QUERYNEWPALETTE:
1410 {
1411 return MSWOnQueryNewPalette();
1412 break;
1413 }
1414 case WM_ERASEBKGND:
1415 {
1416 // Prevents flicker when dragging
1417 if (IsIconic(hWnd)) return 1;
1418
1419 if (!MSWOnEraseBkgnd((WXHDC) (HDC)wParam))
1420 return 0; // Default(); MSWDefWindowProc(message, wParam, lParam );
1421 else return 1;
1422 break;
1423 }
1424 case WM_MDIACTIVATE:
1425 {
1426 #ifdef __WIN32__
1427 HWND hWndActivate = GET_WM_MDIACTIVATE_HWNDACTIVATE(wParam,lParam);
1428 HWND hWndDeactivate = GET_WM_MDIACTIVATE_HWNDDEACT(wParam,lParam);
1429 BOOL activate = GET_WM_MDIACTIVATE_FACTIVATE(hWnd,wParam,lParam);
1430 return MSWOnMDIActivate((long) activate, (WXHWND) hWndActivate, (WXHWND) hWndDeactivate);
1431 #else
1432 return MSWOnMDIActivate((BOOL)wParam, (HWND)LOWORD(lParam),
1433 (HWND)HIWORD(lParam));
1434 #endif
1435 }
1436 case WM_DROPFILES:
1437 {
1438 MSWOnDropFiles(wParam);
1439 break;
1440 }
1441 case WM_INITDIALOG:
1442 {
1443 return 0; // MSWOnInitDialog((WXHWND)(HWND)wParam);
1444 break;
1445 }
1446 case WM_QUERYENDSESSION:
1447 {
1448 // Same as WM_CLOSE, but inverted results. Thx Microsoft :-)
1449 // return MSWOnClose();
1450
1451 return MSWOnQueryEndSession(lParam);
1452 break;
1453 }
1454 case WM_ENDSESSION:
1455 {
1456 // Same as WM_CLOSE, but inverted results. Thx Microsoft :-)
1457 MSWOnEndSession((wParam != 0), lParam);
1458 return 0L;
1459 break;
1460 }
1461 case WM_CLOSE:
1462 {
1463 if (MSWOnClose())
1464 return 0L;
1465 else
1466 return 1L;
1467 break;
1468 }
1469
1470 case WM_GETMINMAXINFO:
1471 {
1472 MINMAXINFO *info = (MINMAXINFO *)lParam;
1473 if (m_minSizeX != -1)
1474 info->ptMinTrackSize.x = (int)m_minSizeX;
1475 if (m_minSizeY != -1)
1476 info->ptMinTrackSize.y = (int)m_minSizeY;
1477 if (m_maxSizeX != -1)
1478 info->ptMaxTrackSize.x = (int)m_maxSizeX;
1479 if (m_maxSizeY != -1)
1480 info->ptMaxTrackSize.y = (int)m_maxSizeY;
1481 return MSWDefWindowProc(message, wParam, lParam );
1482 break;
1483 }
1484
1485 case WM_GETDLGCODE:
1486 return MSWGetDlgCode();
1487
1488 case WM_SETCURSOR:
1489 if ( wxIsBusy() )
1490 {
1491 extern HCURSOR gs_wxBusyCursor; // from msw\utils.cpp
1492
1493 ::SetCursor(gs_wxBusyCursor);
1494
1495 // returning TRUE stops the DefWindowProc() from further processing
1496 // this message - exactly what we need because we've just set the
1497 // cursor
1498 return TRUE;
1499 }
1500 break; // leave it to DefWindowProc()
1501
1502 default:
1503 return MSWDefWindowProc(message, wParam, lParam );
1504 }
1505
1506 return 0; // Success: we processed this command.
1507 }
1508
1509 // Dialog window proc
1510 LONG APIENTRY _EXPORT
1511 wxDlgProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
1512 {
1513 return 0;
1514 }
1515
1516 wxList *wxWinHandleList = NULL;
1517 wxWindow *wxFindWinFromHandle(WXHWND hWnd)
1518 {
1519 wxNode *node = wxWinHandleList->Find((long)hWnd);
1520 if (!node)
1521 return NULL;
1522 return (wxWindow *)node->Data();
1523 }
1524
1525 void wxAssociateWinWithHandle(HWND hWnd, wxWindow *win)
1526 {
1527 // adding NULL hWnd is (first) surely a result of an error and
1528 // (secondly) breaks menu command processing
1529 wxCHECK_RET( hWnd != (HWND) NULL, "attempt to add a NULL hWnd to window list" );
1530
1531 if ( !wxWinHandleList->Find((long)hWnd) )
1532 wxWinHandleList->Append((long)hWnd, win);
1533 }
1534
1535 void wxRemoveHandleAssociation(wxWindow *win)
1536 {
1537 wxWinHandleList->DeleteObject(win);
1538 }
1539
1540 // Default destroyer - override if you destroy it in some other way
1541 // (e.g. with MDI child windows)
1542 void wxWindow::MSWDestroyWindow()
1543 {
1544 }
1545
1546 void wxWindow::MSWCreate(int id, wxWindow *parent, const char *wclass, wxWindow *wx_win, const char *title,
1547 int x, int y, int width, int height,
1548 WXDWORD style, const char *dialog_template, WXDWORD extendedStyle)
1549 {
1550 bool is_dialog = (dialog_template != NULL);
1551 int x1 = CW_USEDEFAULT;
1552 int y1 = 0;
1553 int width1 = CW_USEDEFAULT;
1554 int height1 = 100;
1555
1556 // Find parent's size, if it exists, to set up a possible default
1557 // panel size the size of the parent window
1558 RECT parent_rect;
1559 if (parent)
1560 {
1561 // Was GetWindowRect: JACS 5/5/95
1562 ::GetClientRect((HWND) parent->GetHWND(), &parent_rect);
1563
1564 width1 = parent_rect.right - parent_rect.left;
1565 height1 = parent_rect.bottom - parent_rect.top;
1566 }
1567
1568 if (x > -1) x1 = x;
1569 if (y > -1) y1 = y;
1570 if (width > -1) width1 = width;
1571 if (height > -1) height1 = height;
1572
1573 HWND hParent = NULL;
1574 if (parent)
1575 hParent = (HWND) parent->GetHWND();
1576
1577 wxWndHook = this;
1578
1579 if (is_dialog)
1580 {
1581 // MakeProcInstance doesn't seem to be needed in C7. Is it needed for
1582 // other compilers???
1583 // VZ: it's always needed for Win16 and never for Win32
1584 #ifdef __WIN32__
1585 m_hWnd = (WXHWND) ::CreateDialog(wxGetInstance(), dialog_template, hParent,
1586 (DLGPROC)wxDlgProc);
1587 #else
1588 // N.B.: if we _don't_ use this form,
1589 // then with VC++ 1.5, it crashes horribly.
1590 #if 1
1591 m_hWnd = (WXHWND) ::CreateDialog(wxGetInstance(), dialog_template, hParent,
1592 (DLGPROC)wxDlgProc);
1593 #else
1594 // Crashes when we use this.
1595 DLGPROC dlgproc = (DLGPROC)MakeProcInstance((DLGPROC)wxWndProc, wxGetInstance());
1596
1597 m_hWnd = (WXHWND) ::CreateDialog(wxGetInstance(), dialog_template, hParent,
1598 (DLGPROC)dlgproc);
1599 #endif
1600 #endif
1601
1602 if (m_hWnd == 0)
1603 MessageBox(NULL, "Can't find dummy dialog template!\nCheck resource include path for finding wx.rc.",
1604 "wxWindows Error", MB_ICONEXCLAMATION | MB_OK);
1605 else MoveWindow((HWND) m_hWnd, x1, y1, width1, height1, FALSE);
1606 }
1607 else
1608 {
1609 int controlId = 0;
1610 if (style & WS_CHILD)
1611 controlId = id;
1612 if (!title)
1613 title = "";
1614
1615 m_hWnd = (WXHWND)CreateWindowEx(extendedStyle, wclass,
1616 title,
1617 style,
1618 x1, y1,
1619 width1, height1,
1620 hParent, (HMENU)controlId, wxGetInstance(),
1621 NULL);
1622
1623 if ( !m_hWnd ) {
1624 wxLogError("Can't create window of class %s!\n"
1625 "Possible Windows 3.x compatibility problem?", wclass);
1626 }
1627 }
1628
1629 wxWndHook = NULL;
1630 wxWinHandleList->Append((long)m_hWnd, this);
1631 }
1632
1633 void wxWindow::MSWOnCreate(WXLPCREATESTRUCT WXUNUSED(cs))
1634 {
1635 }
1636
1637 bool wxWindow::MSWOnClose()
1638 {
1639 return FALSE;
1640 }
1641
1642 // Some compilers don't define this
1643 #ifndef ENDSESSION_LOGOFF
1644 #define ENDSESSION_LOGOFF 0x80000000
1645 #endif
1646
1647 // Return TRUE to end session, FALSE to veto end session.
1648 bool wxWindow::MSWOnQueryEndSession(long logOff)
1649 {
1650 wxCloseEvent event(wxEVT_QUERY_END_SESSION, -1);
1651 event.SetEventObject(wxTheApp);
1652 event.SetCanVeto(TRUE);
1653 event.SetLoggingOff( (logOff == ENDSESSION_LOGOFF) );
1654 if ((this == wxTheApp->GetTopWindow()) && // Only send once
1655 wxTheApp->ProcessEvent(event) && event.GetVeto())
1656 {
1657 return FALSE; // Veto!
1658 }
1659 else
1660 {
1661 return TRUE; // Don't veto
1662 }
1663 }
1664
1665 bool wxWindow::MSWOnEndSession(bool endSession, long logOff)
1666 {
1667 wxCloseEvent event(wxEVT_END_SESSION, -1);
1668 event.SetEventObject(wxTheApp);
1669 event.SetCanVeto(FALSE);
1670 event.SetLoggingOff( (logOff == ENDSESSION_LOGOFF) );
1671 if (endSession && // No need to send if the session isn't ending
1672 (this == wxTheApp->GetTopWindow()) && // Only send once
1673 wxTheApp->ProcessEvent(event))
1674 {
1675 }
1676 return TRUE;
1677 }
1678
1679 bool wxWindow::MSWOnDestroy()
1680 {
1681 // delete our drop target if we've got one
1682 #if wxUSE_DRAG_AND_DROP
1683 if ( m_pDropTarget != NULL ) {
1684 m_pDropTarget->Revoke(m_hWnd);
1685
1686 delete m_pDropTarget;
1687 m_pDropTarget = NULL;
1688 }
1689 #endif
1690
1691 return TRUE;
1692 }
1693
1694 // Deal with child commands from buttons etc.
1695
1696 long wxWindow::MSWOnNotify(WXWPARAM wParam, WXLPARAM lParam)
1697 {
1698 #if defined(__WIN95__)
1699 // Find a child window to send the notification to, e.g. a toolbar.
1700 // There's a problem here. NMHDR::hwndFrom doesn't give us the
1701 // handle of the toolbar; it's probably the handle of the tooltip
1702 // window (anyway, it's parent is also the toolbar's parent).
1703 // So, since we don't know which hWnd or wxWindow originated the
1704 // WM_NOTIFY, we'll need to go through all the children of this window
1705 // trying out MSWNotify.
1706 // This won't work now, though, because any number of controls
1707 // could respond to the same generic messages :-(
1708
1709 /* This doesn't work for toolbars, but try for other controls first.
1710 */
1711 NMHDR *hdr = (NMHDR *)lParam;
1712 HWND hWnd = (HWND)hdr->hwndFrom;
1713 wxWindow *win = wxFindWinFromHandle((WXHWND) hWnd);
1714
1715 WXLPARAM result = 0;
1716
1717 if ( win )
1718 {
1719 if ( win->MSWNotify(wParam, lParam, &result) )
1720 return result;
1721 }
1722 else
1723 {
1724 // Rely on MSWNotify to check whether the message
1725 // belongs to the window or not
1726 wxNode *node = GetChildren().First();
1727 while (node)
1728 {
1729 wxWindow *child = (wxWindow *)node->Data();
1730 if ( child->MSWNotify(wParam, lParam, &result) )
1731 return result;
1732 node = node->Next();
1733 }
1734
1735 // finally try this window too (catches toolbar case)
1736 if ( MSWNotify(wParam, lParam, &result) )
1737 return result;
1738 }
1739 #endif // Win95
1740
1741 // not processed
1742 return Default();
1743 }
1744
1745 void wxWindow::MSWOnMenuHighlight(WXWORD WXUNUSED(item), WXWORD WXUNUSED(flags), WXHMENU WXUNUSED(sysmenu))
1746 {
1747 }
1748
1749 void wxWindow::MSWOnInitMenuPopup(WXHMENU menu, int pos, bool isSystem)
1750 {
1751 }
1752
1753 bool wxWindow::MSWOnActivate(int state, bool WXUNUSED(minimized), WXHWND WXUNUSED(activate))
1754 {
1755 wxActivateEvent event(wxEVT_ACTIVATE, ((state == WA_ACTIVE) || (state == WA_CLICKACTIVE)),
1756 m_windowId);
1757 event.SetEventObject(this);
1758 GetEventHandler()->ProcessEvent(event);
1759 return 0;
1760 }
1761
1762 bool wxWindow::MSWOnSetFocus(WXHWND WXUNUSED(hwnd))
1763 {
1764 // Deal with caret
1765 if (m_caretEnabled && (m_caretWidth > 0) && (m_caretHeight > 0))
1766 {
1767 ::CreateCaret((HWND) GetHWND(), NULL, m_caretWidth, m_caretHeight);
1768 if (m_caretShown)
1769 ::ShowCaret((HWND) GetHWND());
1770 }
1771
1772 // panel wants to track the window which was the last to have focus in it
1773 wxWindow *parent = GetParent();
1774 if ( parent && parent->IsKindOf(CLASSINFO(wxPanel)) )
1775 {
1776 ((wxPanel *)parent)->SetLastFocus(GetId());
1777 }
1778
1779 wxFocusEvent event(wxEVT_SET_FOCUS, m_windowId);
1780 event.SetEventObject(this);
1781 if (!GetEventHandler()->ProcessEvent(event))
1782 Default();
1783 return TRUE;
1784 }
1785
1786 bool wxWindow::MSWOnKillFocus(WXHWND WXUNUSED(hwnd))
1787 {
1788 // Deal with caret
1789 if (m_caretEnabled)
1790 {
1791 ::DestroyCaret();
1792 }
1793
1794 wxFocusEvent event(wxEVT_KILL_FOCUS, m_windowId);
1795 event.SetEventObject(this);
1796 if (!GetEventHandler()->ProcessEvent(event))
1797 Default();
1798 return TRUE;
1799 }
1800
1801 void wxWindow::MSWOnDropFiles(WXWPARAM wParam)
1802 {
1803
1804 HDROP hFilesInfo = (HDROP) wParam;
1805 POINT dropPoint;
1806 DragQueryPoint(hFilesInfo, (LPPOINT) &dropPoint);
1807
1808 // Get the total number of files dropped
1809 WORD gwFilesDropped = (WORD)DragQueryFile ((HDROP)hFilesInfo,
1810 (UINT)-1,
1811 (LPSTR)0,
1812 (UINT)0);
1813
1814 wxString *files = new wxString[gwFilesDropped];
1815 int wIndex;
1816 for (wIndex=0; wIndex < (int)gwFilesDropped; wIndex++)
1817 {
1818 DragQueryFile (hFilesInfo, wIndex, (LPSTR) wxBuffer, 1000);
1819 files[wIndex] = wxBuffer;
1820 }
1821 DragFinish (hFilesInfo);
1822
1823 wxDropFilesEvent event(wxEVT_DROP_FILES, gwFilesDropped, files);
1824 event.m_eventObject = this;
1825 event.m_pos.x = dropPoint.x; event.m_pos.x = dropPoint.y;
1826
1827 if (!GetEventHandler()->ProcessEvent(event))
1828 Default();
1829
1830 delete[] files;
1831 }
1832
1833 bool wxWindow::MSWOnDrawItem(int id, WXDRAWITEMSTRUCT *itemStruct)
1834 {
1835 #if wxUSE_OWNER_DRAWN
1836 if ( id == 0 ) { // is it a menu item?
1837 DRAWITEMSTRUCT *pDrawStruct = (DRAWITEMSTRUCT *)itemStruct;
1838 wxMenuItem *pMenuItem = (wxMenuItem *)(pDrawStruct->itemData);
1839 wxCHECK( pMenuItem->IsKindOf(CLASSINFO(wxMenuItem)), FALSE );
1840
1841 // prepare to call OnDrawItem()
1842 wxDC dc;
1843 dc.SetHDC((WXHDC)pDrawStruct->hDC, FALSE);
1844 wxRect rect(pDrawStruct->rcItem.left, pDrawStruct->rcItem.top,
1845 pDrawStruct->rcItem.right - pDrawStruct->rcItem.left,
1846 pDrawStruct->rcItem.bottom - pDrawStruct->rcItem.top);
1847 return pMenuItem->OnDrawItem(
1848 dc, rect,
1849 (wxOwnerDrawn::wxODAction)pDrawStruct->itemAction,
1850 (wxOwnerDrawn::wxODStatus)pDrawStruct->itemState
1851 );
1852 }
1853 #endif // owner-drawn menus
1854
1855 wxWindow *item = FindItem(id);
1856 #if wxUSE_DYNAMIC_CLASSES
1857 if (item && item->IsKindOf(CLASSINFO(wxControl)))
1858 {
1859 return ((wxControl *)item)->MSWOnDraw(itemStruct);
1860 }
1861 else
1862 #endif
1863 return FALSE;
1864 }
1865
1866 bool wxWindow::MSWOnMeasureItem(int id, WXMEASUREITEMSTRUCT *itemStruct)
1867 {
1868 #if wxUSE_OWNER_DRAWN
1869 if ( id == 0 ) { // is it a menu item?
1870 MEASUREITEMSTRUCT *pMeasureStruct = (MEASUREITEMSTRUCT *)itemStruct;
1871 wxMenuItem *pMenuItem = (wxMenuItem *)(pMeasureStruct->itemData);
1872 wxCHECK( pMenuItem->IsKindOf(CLASSINFO(wxMenuItem)), FALSE );
1873
1874 return pMenuItem->OnMeasureItem(&pMeasureStruct->itemWidth,
1875 &pMeasureStruct->itemHeight);
1876 }
1877 #endif // owner-drawn menus
1878
1879 wxWindow *item = FindItem(id);
1880 #if wxUSE_DYNAMIC_CLASSES
1881 if (item && item->IsKindOf(CLASSINFO(wxControl)))
1882 {
1883 return ((wxControl *)item)->MSWOnMeasure(itemStruct);
1884 }
1885 else
1886 #endif
1887 return FALSE;
1888 }
1889
1890 WXHBRUSH wxWindow::MSWOnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
1891 WXUINT message, WXWPARAM wParam, WXLPARAM lParam)
1892 {
1893 if (nCtlColor == CTLCOLOR_DLG)
1894 {
1895 return OnCtlColor(pDC, pWnd, nCtlColor, message, wParam, lParam);
1896 }
1897
1898 wxControl *item = (wxControl *)FindItemByHWND(pWnd, TRUE);
1899
1900 WXHBRUSH hBrush = 0;
1901
1902 if ( item )
1903 hBrush = item->OnCtlColor(pDC, pWnd, nCtlColor, message, wParam, lParam);
1904
1905 // I think that even for dialogs, we may need to call DefWindowProc (?)
1906 // Or maybe just rely on the usual default behaviour.
1907 if ( !hBrush )
1908 hBrush = (WXHBRUSH) MSWDefWindowProc(message, wParam, lParam);
1909
1910 return hBrush ;
1911 }
1912
1913 // Define for each class of dialog and control
1914 WXHBRUSH wxWindow::OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
1915 WXUINT message, WXWPARAM wParam, WXLPARAM lParam)
1916 {
1917 return (WXHBRUSH) MSWDefWindowProc(message, wParam, lParam);
1918 }
1919
1920 bool wxWindow::MSWOnColorChange(WXHWND hWnd, WXUINT message, WXWPARAM wParam, WXLPARAM lParam)
1921 {
1922 wxSysColourChangedEvent event;
1923 event.SetEventObject(this);
1924
1925 // Check if app handles this.
1926 if (GetEventHandler()->ProcessEvent(event))
1927 return 0;
1928
1929 // We didn't process it
1930 return 1;
1931 }
1932
1933 long wxWindow::MSWOnPaletteChanged(WXHWND hWndPalChange)
1934 {
1935 wxPaletteChangedEvent event(GetId());
1936 event.SetEventObject(this);
1937 event.SetChangedWindow(wxFindWinFromHandle(hWndPalChange));
1938 GetEventHandler()->ProcessEvent(event);
1939 return 0;
1940 }
1941
1942 long wxWindow::MSWOnQueryNewPalette()
1943 {
1944 wxQueryNewPaletteEvent event(GetId());
1945 event.SetEventObject(this);
1946 if (!GetEventHandler()->ProcessEvent(event) || !event.GetPaletteRealized())
1947 {
1948 return (long) FALSE;
1949 }
1950 else
1951 return (long) TRUE;
1952 }
1953
1954 // Responds to colour changes: passes event on to children.
1955 void wxWindow::OnSysColourChanged(wxSysColourChangedEvent& event)
1956 {
1957 wxNode *node = GetChildren().First();
1958 while ( node )
1959 {
1960 // Only propagate to non-top-level windows
1961 wxWindow *win = (wxWindow *)node->Data();
1962 if ( win->GetParent() )
1963 {
1964 wxSysColourChangedEvent event2;
1965 event.m_eventObject = win;
1966 win->GetEventHandler()->ProcessEvent(event2);
1967 }
1968
1969 node = node->Next();
1970 }
1971 }
1972
1973 long wxWindow::MSWDefWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam)
1974 {
1975 if ( m_oldWndProc )
1976 return ::CallWindowProc(CASTWNDPROC m_oldWndProc, (HWND) GetHWND(), (UINT) nMsg, (WPARAM) wParam, (LPARAM) lParam);
1977 else
1978 return ::DefWindowProc((HWND) GetHWND(), nMsg, wParam, lParam);
1979 }
1980
1981 long wxWindow::Default()
1982 {
1983 // Ignore 'fake' events (perhaps generated as a result of a separate real event)
1984 if (m_lastMsg == 0)
1985 return 0;
1986
1987 #ifdef __WXDEBUG__
1988 wxLogTrace(wxTraceMessages, "Forwarding %s to DefWindowProc.",
1989 wxGetMessageName(m_lastMsg));
1990 #endif // __WXDEBUG__
1991
1992 return this->MSWDefWindowProc(m_lastMsg, m_lastWParam, m_lastLParam);
1993 }
1994
1995 bool wxWindow::MSWProcessMessage(WXMSG* pMsg)
1996 {
1997 if ( m_hWnd != 0 && (GetWindowStyleFlag() & wxTAB_TRAVERSAL) ) {
1998 // intercept dialog navigation keys
1999 MSG *msg = (MSG *)pMsg;
2000 bool bProcess = TRUE;
2001 if ( msg->message != WM_KEYDOWN )
2002 bProcess = FALSE;
2003
2004 if ( bProcess && (HIWORD(msg->lParam) & KF_ALTDOWN) == KF_ALTDOWN )
2005 bProcess = FALSE;
2006
2007 if ( bProcess )
2008 {
2009 bool bCtrlDown = (::GetKeyState(VK_CONTROL) & 0x100) != 0;
2010
2011 // WM_GETDLGCODE: ask the control if it wants the key for itself,
2012 // don't process it if it's the case (except for Ctrl-Tab/Enter
2013 // combinations which are always processed)
2014 LONG lDlgCode = 0;
2015 if ( !bCtrlDown )
2016 {
2017 lDlgCode = ::SendMessage(msg->hwnd, WM_GETDLGCODE, 0, 0);
2018 }
2019
2020 bool bForward = TRUE,
2021 bWindowChange = FALSE;
2022
2023 switch ( msg->wParam )
2024 {
2025 case VK_TAB:
2026 if ( lDlgCode & DLGC_WANTTAB ) {
2027 bProcess = FALSE;
2028 }
2029 else {
2030 // Ctrl-Tab cycles thru notebook pages
2031 bWindowChange = bCtrlDown;
2032 bForward = !(::GetKeyState(VK_SHIFT) & 0x100);
2033 }
2034 break;
2035
2036 case VK_UP:
2037 case VK_LEFT:
2038 if ( (lDlgCode & DLGC_WANTARROWS) || bCtrlDown )
2039 bProcess = FALSE;
2040 else
2041 bForward = FALSE;
2042 break;
2043
2044 case VK_DOWN:
2045 case VK_RIGHT:
2046 if ( (lDlgCode & DLGC_WANTARROWS) || bCtrlDown )
2047 bProcess = FALSE;
2048 break;
2049
2050 case VK_RETURN:
2051 {
2052 if ( lDlgCode & DLGC_WANTMESSAGE )
2053 {
2054 // control wants to process Enter itself, don't
2055 // call IsDialogMessage() which would interpret
2056 // it
2057 return FALSE;
2058 }
2059 #ifndef __WIN16__
2060 wxButton *btnDefault = GetDefaultItem();
2061 if ( btnDefault && !bCtrlDown )
2062 {
2063 // if there is a default button, Enter should
2064 // press it
2065 (void)::SendMessage((HWND)btnDefault->GetHWND(),
2066 BM_CLICK, 0, 0);
2067 return TRUE;
2068 }
2069 // else: but if there is not it makes sense to make it
2070 // work like a TAB - and that's what we do.
2071 // Note that Ctrl-Enter always works this way.
2072 #endif
2073 }
2074 break;
2075
2076 default:
2077 bProcess = FALSE;
2078 }
2079
2080 if ( bProcess )
2081 {
2082 wxNavigationKeyEvent event;
2083 event.SetDirection(bForward);
2084 event.SetWindowChange(bWindowChange);
2085 event.SetEventObject(this);
2086
2087 if ( GetEventHandler()->ProcessEvent(event) )
2088 return TRUE;
2089 }
2090 }
2091
2092 if ( ::IsDialogMessage((HWND)GetHWND(), msg) )
2093 return TRUE;
2094 }
2095 #if wxUSE_TOOLTIPS
2096 if ( m_tooltip )
2097 {
2098 // relay mouse move events to the tooltip control
2099 MSG *msg = (MSG *)pMsg;
2100 if ( msg->message == WM_MOUSEMOVE )
2101 m_tooltip->RelayEvent(pMsg);
2102 }
2103 #endif // wxUSE_TOOLTIPS
2104
2105 return FALSE;
2106 }
2107
2108 bool wxWindow::MSWTranslateMessage(WXMSG* pMsg)
2109 {
2110 if (m_acceleratorTable.Ok() &&
2111 ::TranslateAccelerator((HWND) GetHWND(), (HACCEL) m_acceleratorTable.GetHACCEL(), (MSG *)pMsg))
2112 return TRUE;
2113 else
2114 return FALSE;
2115 }
2116
2117 long wxWindow::MSWOnMDIActivate(long WXUNUSED(flag), WXHWND WXUNUSED(activate), WXHWND WXUNUSED(deactivate))
2118 {
2119 return 1;
2120 }
2121
2122 void wxWindow::MSWDetachWindowMenu()
2123 {
2124 if (m_hMenu)
2125 {
2126 int N = GetMenuItemCount((HMENU) m_hMenu);
2127 int i;
2128 for (i = 0; i < N; i++)
2129 {
2130 char buf[100];
2131 int chars = GetMenuString((HMENU) m_hMenu, i, buf, 100, MF_BYPOSITION);
2132 if ((chars > 0) && (strcmp(buf, "&Window") == 0))
2133 {
2134 RemoveMenu((HMENU) m_hMenu, i, MF_BYPOSITION);
2135 break;
2136 }
2137 }
2138 }
2139 }
2140
2141 bool wxWindow::MSWOnPaint()
2142 {
2143 #ifdef __WIN32__
2144 HRGN hRegion = ::CreateRectRgn(0, 0, 0, 0); // Dummy call to get a handle
2145 ::GetUpdateRgn((HWND) GetHWND(), hRegion, FALSE);
2146
2147 m_updateRegion = wxRegion((WXHRGN) hRegion);
2148 #else
2149 RECT updateRect;
2150 ::GetUpdateRect((HWND) GetHWND(), & updateRect, FALSE);
2151
2152 m_updateRegion = wxRegion(updateRect.left, updateRect.top,
2153 updateRect.right - updateRect.left, updateRect.bottom - updateRect.top);
2154 #endif
2155
2156 wxPaintEvent event(m_windowId);
2157 event.SetEventObject(this);
2158 if (!GetEventHandler()->ProcessEvent(event))
2159 Default();
2160 return TRUE;
2161 }
2162
2163 void wxWindow::MSWOnSize(int w, int h, WXUINT WXUNUSED(flag))
2164 {
2165 if (m_inOnSize)
2166 return;
2167
2168 if (!m_hWnd)
2169 return;
2170
2171 m_inOnSize = TRUE;
2172
2173 wxSizeEvent event(wxSize(w, h), m_windowId);
2174 event.SetEventObject(this);
2175 if (!GetEventHandler()->ProcessEvent(event))
2176 Default();
2177
2178 m_inOnSize = FALSE;
2179 }
2180
2181 void wxWindow::MSWOnWindowPosChanging(void *WXUNUSED(lpPos))
2182 {
2183 Default();
2184 }
2185
2186 // Deal with child commands from buttons etc.
2187 bool wxWindow::MSWOnCommand(WXWORD id, WXWORD cmd, WXHWND control)
2188 {
2189 if (wxCurrentPopupMenu)
2190 {
2191 wxMenu *popupMenu = wxCurrentPopupMenu;
2192 wxCurrentPopupMenu = NULL;
2193 bool succ = popupMenu->MSWCommand(cmd, id);
2194 return succ;
2195 }
2196
2197 wxWindow *item = FindItem(id);
2198 if (item)
2199 {
2200 bool value = item->MSWCommand(cmd, id);
2201 return value;
2202 }
2203 else
2204 {
2205 wxWindow *win = wxFindWinFromHandle(control);
2206 if (win)
2207 return win->MSWCommand(cmd, id);
2208 }
2209 return FALSE;
2210 }
2211
2212 long wxWindow::MSWOnSysCommand(WXWPARAM wParam, WXLPARAM lParam)
2213 {
2214 switch (wParam & 0xFFFFFFF0)
2215 {
2216 case SC_MAXIMIZE:
2217 {
2218 wxMaximizeEvent event(m_windowId);
2219 event.SetEventObject(this);
2220 if (!GetEventHandler()->ProcessEvent(event))
2221 return Default();
2222 else
2223 return 0;
2224 break;
2225 }
2226 case SC_MINIMIZE:
2227 {
2228 wxIconizeEvent event(m_windowId);
2229 event.SetEventObject(this);
2230 if (!GetEventHandler()->ProcessEvent(event))
2231 return Default();
2232 else
2233 return 0;
2234 break;
2235 }
2236 default:
2237 return Default();
2238 }
2239 return 0;
2240 }
2241
2242 void wxWindow::MSWOnLButtonDown(int x, int y, WXUINT flags)
2243 {
2244 wxMouseEvent event(wxEVT_LEFT_DOWN);
2245
2246 event.m_x = x; event.m_y = y;
2247 event.m_shiftDown = ((flags & MK_SHIFT) != 0);
2248 event.m_controlDown = ((flags & MK_CONTROL) != 0);
2249 event.m_leftDown = ((flags & MK_LBUTTON) != 0);
2250 event.m_middleDown = ((flags & MK_MBUTTON) != 0);
2251 event.m_rightDown = ((flags & MK_RBUTTON) != 0);
2252 event.SetTimestamp(wxApp::sm_lastMessageTime);
2253 event.m_eventObject = this;
2254
2255 m_lastXPos = event.m_x; m_lastYPos = event.m_y; m_lastEvent = wxEVT_LEFT_DOWN;
2256
2257 if (!GetEventHandler()->ProcessEvent(event))
2258 Default();
2259 }
2260
2261 void wxWindow::MSWOnLButtonUp(int x, int y, WXUINT flags)
2262 {
2263 wxMouseEvent event(wxEVT_LEFT_UP);
2264
2265 event.m_x = x; event.m_y = y;
2266 event.m_shiftDown = ((flags & MK_SHIFT) != 0);
2267 event.m_controlDown = ((flags & MK_CONTROL) != 0);
2268 event.m_leftDown = ((flags & MK_LBUTTON) != 0);
2269 event.m_middleDown = ((flags & MK_MBUTTON) != 0);
2270 event.m_rightDown = ((flags & MK_RBUTTON) != 0);
2271 event.SetTimestamp(wxApp::sm_lastMessageTime);
2272 event.m_eventObject = this;
2273
2274 m_lastXPos = event.m_x; m_lastYPos = event.m_y; m_lastEvent = wxEVT_LEFT_UP;
2275
2276 if (!GetEventHandler()->ProcessEvent(event))
2277 Default();
2278 }
2279
2280 void wxWindow::MSWOnLButtonDClick(int x, int y, WXUINT flags)
2281 {
2282 wxMouseEvent event(wxEVT_LEFT_DCLICK);
2283
2284 event.m_x = x; event.m_y = y;
2285 event.m_shiftDown = ((flags & MK_SHIFT) != 0);
2286 event.m_controlDown = ((flags & MK_CONTROL) != 0);
2287 event.m_leftDown = ((flags & MK_LBUTTON) != 0);
2288 event.m_middleDown = ((flags & MK_MBUTTON) != 0);
2289 event.m_rightDown = ((flags & MK_RBUTTON) != 0);
2290 event.SetTimestamp(wxApp::sm_lastMessageTime);
2291 event.m_eventObject = this;
2292
2293 m_lastXPos = event.m_x; m_lastYPos = event.m_y; m_lastEvent = wxEVT_LEFT_DCLICK;
2294
2295 if (!GetEventHandler()->ProcessEvent(event))
2296 Default();
2297 }
2298
2299 void wxWindow::MSWOnMButtonDown(int x, int y, WXUINT flags)
2300 {
2301 wxMouseEvent event(wxEVT_MIDDLE_DOWN);
2302
2303 event.m_x = x; event.m_y = y;
2304 event.m_shiftDown = ((flags & MK_SHIFT) != 0);
2305 event.m_controlDown = ((flags & MK_CONTROL) != 0);
2306 event.m_leftDown = ((flags & MK_LBUTTON) != 0);
2307 event.m_middleDown = ((flags & MK_MBUTTON) != 0);
2308 event.m_rightDown = ((flags & MK_RBUTTON) != 0);
2309 event.SetTimestamp(wxApp::sm_lastMessageTime);
2310 event.m_eventObject = this;
2311
2312 m_lastXPos = event.m_x; m_lastYPos = event.m_y; m_lastEvent = wxEVT_MIDDLE_DOWN;
2313
2314 if (!GetEventHandler()->ProcessEvent(event))
2315 Default();
2316 }
2317
2318 void wxWindow::MSWOnMButtonUp(int x, int y, WXUINT flags)
2319 {
2320 wxMouseEvent event(wxEVT_MIDDLE_UP);
2321
2322 event.m_x = x; event.m_y = y;
2323 event.m_shiftDown = ((flags & MK_SHIFT) != 0);
2324 event.m_controlDown = ((flags & MK_CONTROL) != 0);
2325 event.m_leftDown = ((flags & MK_LBUTTON) != 0);
2326 event.m_middleDown = ((flags & MK_MBUTTON) != 0);
2327 event.m_rightDown = ((flags & MK_RBUTTON) != 0);
2328 event.SetTimestamp(wxApp::sm_lastMessageTime);
2329 event.m_eventObject = this;
2330
2331 m_lastXPos = event.m_x; m_lastYPos = event.m_y; m_lastEvent = wxEVT_MIDDLE_UP;
2332
2333 if (!GetEventHandler()->ProcessEvent(event))
2334 Default();
2335 }
2336
2337 void wxWindow::MSWOnMButtonDClick(int x, int y, WXUINT flags)
2338 {
2339 wxMouseEvent event(wxEVT_MIDDLE_DCLICK);
2340
2341 event.m_x = x; event.m_y = y;
2342 event.m_shiftDown = ((flags & MK_SHIFT) != 0);
2343 event.m_controlDown = ((flags & MK_CONTROL) != 0);
2344 event.m_leftDown = ((flags & MK_LBUTTON) != 0);
2345 event.m_middleDown = ((flags & MK_MBUTTON) != 0);
2346 event.m_rightDown = ((flags & MK_RBUTTON) != 0);
2347 event.SetTimestamp(wxApp::sm_lastMessageTime);
2348 event.m_eventObject = this;
2349
2350 m_lastXPos = event.m_x; m_lastYPos = event.m_y; m_lastEvent = wxEVT_MIDDLE_DCLICK;
2351
2352 if (!GetEventHandler()->ProcessEvent(event))
2353 Default();
2354 }
2355
2356 void wxWindow::MSWOnRButtonDown(int x, int y, WXUINT flags)
2357 {
2358 wxMouseEvent event(wxEVT_RIGHT_DOWN);
2359
2360 event.m_x = x; event.m_y = y;
2361 event.m_shiftDown = ((flags & MK_SHIFT) != 0);
2362 event.m_controlDown = ((flags & MK_CONTROL) != 0);
2363 event.m_leftDown = ((flags & MK_LBUTTON) != 0);
2364 event.m_middleDown = ((flags & MK_MBUTTON) != 0);
2365 event.m_rightDown = ((flags & MK_RBUTTON) != 0);
2366 event.SetTimestamp(wxApp::sm_lastMessageTime);
2367 event.m_eventObject = this;
2368
2369 m_lastXPos = event.m_x; m_lastYPos = event.m_y; m_lastEvent = wxEVT_RIGHT_DOWN;
2370
2371 if (!GetEventHandler()->ProcessEvent(event))
2372 Default();
2373 }
2374
2375 void wxWindow::MSWOnRButtonUp(int x, int y, WXUINT flags)
2376 {
2377 wxMouseEvent event(wxEVT_RIGHT_UP);
2378
2379 event.m_x = x; event.m_y = y;
2380 event.m_shiftDown = ((flags & MK_SHIFT) != 0);
2381 event.m_controlDown = ((flags & MK_CONTROL) != 0);
2382 event.m_leftDown = ((flags & MK_LBUTTON) != 0);
2383 event.m_middleDown = ((flags & MK_MBUTTON) != 0);
2384 event.m_rightDown = ((flags & MK_RBUTTON) != 0);
2385 event.m_eventObject = this;
2386 event.SetTimestamp(wxApp::sm_lastMessageTime);
2387
2388 m_lastXPos = event.m_x; m_lastYPos = event.m_y; m_lastEvent = wxEVT_RIGHT_UP;
2389
2390 if (!GetEventHandler()->ProcessEvent(event))
2391 Default();
2392 }
2393
2394 void wxWindow::MSWOnRButtonDClick(int x, int y, WXUINT flags)
2395 {
2396 wxMouseEvent event(wxEVT_RIGHT_DCLICK);
2397
2398 event.m_x = x; event.m_y = y;
2399 event.m_shiftDown = ((flags & MK_SHIFT) != 0);
2400 event.m_controlDown = ((flags & MK_CONTROL) != 0);
2401 event.m_leftDown = ((flags & MK_LBUTTON) != 0);
2402 event.m_middleDown = ((flags & MK_MBUTTON) != 0);
2403 event.m_rightDown = ((flags & MK_RBUTTON) != 0);
2404 event.SetTimestamp(wxApp::sm_lastMessageTime);
2405 event.m_eventObject = this;
2406
2407 m_lastXPos = event.m_x; m_lastYPos = event.m_y; m_lastEvent = wxEVT_RIGHT_DCLICK;
2408
2409 if (!GetEventHandler()->ProcessEvent(event))
2410 Default();
2411 }
2412
2413 void wxWindow::MSWOnMouseMove(int x, int y, WXUINT flags)
2414 {
2415 // 'normal' move event...
2416 // Set cursor, but only if we're not in 'busy' mode
2417
2418 // Trouble with this is that it sets the cursor for controls too :-(
2419 if (m_windowCursor.Ok() && !wxIsBusy())
2420 ::SetCursor((HCURSOR) m_windowCursor.GetHCURSOR());
2421
2422 if (!m_mouseInWindow)
2423 {
2424 // Generate an ENTER event
2425 m_mouseInWindow = TRUE;
2426 MSWOnMouseEnter(x, y, flags);
2427 }
2428
2429 wxMouseEvent event(wxEVT_MOTION);
2430
2431 event.m_x = x; event.m_y = y;
2432 event.m_shiftDown = ((flags & MK_SHIFT) != 0);
2433 event.m_controlDown = ((flags & MK_CONTROL) != 0);
2434 event.m_leftDown = ((flags & MK_LBUTTON) != 0);
2435 event.m_middleDown = ((flags & MK_MBUTTON) != 0);
2436 event.m_rightDown = ((flags & MK_RBUTTON) != 0);
2437 event.SetTimestamp(wxApp::sm_lastMessageTime);
2438 event.m_eventObject = this;
2439
2440 // Window gets a click down message followed by a mouse move
2441 // message even if position isn't changed! We want to discard
2442 // the trailing move event if x and y are the same.
2443 if ((m_lastEvent == wxEVT_RIGHT_DOWN || m_lastEvent == wxEVT_LEFT_DOWN ||
2444 m_lastEvent == wxEVT_MIDDLE_DOWN) &&
2445 (m_lastXPos == event.m_x && m_lastYPos == event.m_y))
2446 {
2447 m_lastXPos = event.m_x; m_lastYPos = event.m_y;
2448 m_lastEvent = wxEVT_MOTION;
2449 return;
2450 }
2451
2452 m_lastEvent = wxEVT_MOTION;
2453 m_lastXPos = event.m_x; m_lastYPos = event.m_y;
2454
2455 if (!GetEventHandler()->ProcessEvent(event))
2456 Default();
2457 }
2458
2459 void wxWindow::MSWOnMouseEnter(int x, int y, WXUINT flags)
2460 {
2461 wxMouseEvent event(wxEVT_ENTER_WINDOW);
2462
2463 event.m_x = x; event.m_y = y;
2464 event.m_shiftDown = ((flags & MK_SHIFT) != 0);
2465 event.m_controlDown = ((flags & MK_CONTROL) != 0);
2466 event.m_leftDown = ((flags & MK_LBUTTON) != 0);
2467 event.m_middleDown = ((flags & MK_MBUTTON) != 0);
2468 event.m_rightDown = ((flags & MK_RBUTTON) != 0);
2469 event.SetTimestamp(wxApp::sm_lastMessageTime);
2470 event.m_eventObject = this;
2471
2472 m_lastEvent = wxEVT_ENTER_WINDOW;
2473 m_lastXPos = event.m_x; m_lastYPos = event.m_y;
2474 // No message - ensure we don't try to call the default behaviour accidentally.
2475 m_lastMsg = 0;
2476 GetEventHandler()->ProcessEvent(event);
2477 }
2478
2479 void wxWindow::MSWOnMouseLeave(int x, int y, WXUINT flags)
2480 {
2481 wxMouseEvent event(wxEVT_LEAVE_WINDOW);
2482
2483 event.m_x = x; event.m_y = y;
2484 event.m_shiftDown = ((flags & MK_SHIFT) != 0);
2485 event.m_controlDown = ((flags & MK_CONTROL) != 0);
2486 event.m_leftDown = ((flags & MK_LBUTTON) != 0);
2487 event.m_middleDown = ((flags & MK_MBUTTON) != 0);
2488 event.m_rightDown = ((flags & MK_RBUTTON) != 0);
2489 event.SetTimestamp(wxApp::sm_lastMessageTime);
2490 event.m_eventObject = this;
2491
2492 m_lastEvent = wxEVT_LEAVE_WINDOW;
2493 m_lastXPos = event.m_x; m_lastYPos = event.m_y;
2494 // No message - ensure we don't try to call the default behaviour accidentally.
2495 m_lastMsg = 0;
2496 GetEventHandler()->ProcessEvent(event);
2497 }
2498
2499 bool wxWindow::MSWOnChar(WXWORD wParam, WXLPARAM lParam, bool isASCII)
2500 {
2501 int id;
2502 bool tempControlDown = FALSE;
2503 if (isASCII)
2504 {
2505 // If 1 -> 26, translate to CTRL plus a letter.
2506 id = wParam;
2507 if ((id > 0) && (id < 27))
2508 {
2509 switch (id)
2510 {
2511 case 13:
2512 {
2513 id = WXK_RETURN;
2514 break;
2515 }
2516 case 8:
2517 {
2518 id = WXK_BACK;
2519 break;
2520 }
2521 case 9:
2522 {
2523 id = WXK_TAB;
2524 break;
2525 }
2526 default:
2527 {
2528 tempControlDown = TRUE;
2529 id = id + 96;
2530 }
2531 }
2532 }
2533 }
2534 else if ((id = wxCharCodeMSWToWX(wParam)) == 0) {
2535 // it's ASCII and will be processed here only when called from
2536 // WM_CHAR (i.e. when isASCII = TRUE)
2537 id = -1;
2538 }
2539
2540 if (id != -1)
2541 {
2542 wxKeyEvent event(wxEVT_CHAR);
2543 event.m_shiftDown = (::GetKeyState(VK_SHIFT)&0x100?TRUE:FALSE);
2544 event.m_controlDown = (::GetKeyState(VK_CONTROL)&0x100?TRUE:FALSE);
2545 if ((HIWORD(lParam) & KF_ALTDOWN) == KF_ALTDOWN)
2546 event.m_altDown = TRUE;
2547
2548 event.m_eventObject = this;
2549 event.m_keyCode = id;
2550 event.SetTimestamp(wxApp::sm_lastMessageTime);
2551
2552 POINT pt ;
2553 GetCursorPos(&pt) ;
2554 RECT rect ;
2555 GetWindowRect((HWND) GetHWND(),&rect) ;
2556 pt.x -= rect.left ;
2557 pt.y -= rect.top ;
2558
2559 event.m_x = pt.x; event.m_y = pt.y;
2560
2561 if (GetEventHandler()->ProcessEvent(event))
2562 return TRUE;
2563 else
2564 return FALSE;
2565 }
2566 else
2567 return FALSE;
2568 }
2569
2570 bool wxWindow::MSWOnKeyDown(WXWORD wParam, WXLPARAM lParam, bool isASCII)
2571 {
2572 int id;
2573
2574 if ((id = wxCharCodeMSWToWX(wParam)) == 0) {
2575 id = wParam;
2576 }
2577
2578 if (id != -1)
2579 {
2580 wxKeyEvent event(wxEVT_KEY_DOWN);
2581 event.m_shiftDown = (::GetKeyState(VK_SHIFT)&0x100?TRUE:FALSE);
2582 event.m_controlDown = (::GetKeyState(VK_CONTROL)&0x100?TRUE:FALSE);
2583 if ((HIWORD(lParam) & KF_ALTDOWN) == KF_ALTDOWN)
2584 event.m_altDown = TRUE;
2585
2586 event.m_eventObject = this;
2587 event.m_keyCode = id;
2588 event.SetTimestamp(wxApp::sm_lastMessageTime);
2589
2590 POINT pt ;
2591 GetCursorPos(&pt) ;
2592 RECT rect ;
2593 GetWindowRect((HWND) GetHWND(),&rect) ;
2594 pt.x -= rect.left ;
2595 pt.y -= rect.top ;
2596
2597 event.m_x = pt.x; event.m_y = pt.y;
2598
2599 if (GetEventHandler()->ProcessEvent(event))
2600 {
2601 return TRUE;
2602 }
2603 else return FALSE;
2604 }
2605 else
2606 {
2607 return FALSE;
2608 }
2609 }
2610
2611 bool wxWindow::MSWOnKeyUp(WXWORD wParam, WXLPARAM lParam, bool isASCII)
2612 {
2613 int id;
2614
2615 if ((id = wxCharCodeMSWToWX(wParam)) == 0) {
2616 id = wParam;
2617 }
2618
2619 if (id != -1)
2620 {
2621 wxKeyEvent event(wxEVT_KEY_UP);
2622 event.m_shiftDown = (::GetKeyState(VK_SHIFT)&0x100?TRUE:FALSE);
2623 event.m_controlDown = (::GetKeyState(VK_CONTROL)&0x100?TRUE:FALSE);
2624 if ((HIWORD(lParam) & KF_ALTDOWN) == KF_ALTDOWN)
2625 event.m_altDown = TRUE;
2626
2627 event.m_eventObject = this;
2628 event.m_keyCode = id;
2629 event.SetTimestamp(wxApp::sm_lastMessageTime);
2630
2631 POINT pt ;
2632 GetCursorPos(&pt) ;
2633 RECT rect ;
2634 GetWindowRect((HWND) GetHWND(),&rect) ;
2635 pt.x -= rect.left ;
2636 pt.y -= rect.top ;
2637
2638 event.m_x = pt.x; event.m_y = pt.y;
2639
2640 if (GetEventHandler()->ProcessEvent(event))
2641 return TRUE;
2642 else
2643 return FALSE;
2644 }
2645 else
2646 return FALSE;
2647 }
2648
2649 void wxWindow::MSWOnJoyDown(int joystick, int x, int y, WXUINT flags)
2650 {
2651 int buttons = 0;
2652 int change = 0;
2653 if (flags & JOY_BUTTON1CHG)
2654 change = wxJOY_BUTTON1;
2655 if (flags & JOY_BUTTON2CHG)
2656 change = wxJOY_BUTTON2;
2657 if (flags & JOY_BUTTON3CHG)
2658 change = wxJOY_BUTTON3;
2659 if (flags & JOY_BUTTON4CHG)
2660 change = wxJOY_BUTTON4;
2661
2662 if (flags & JOY_BUTTON1)
2663 buttons |= wxJOY_BUTTON1;
2664 if (flags & JOY_BUTTON2)
2665 buttons |= wxJOY_BUTTON2;
2666 if (flags & JOY_BUTTON3)
2667 buttons |= wxJOY_BUTTON3;
2668 if (flags & JOY_BUTTON4)
2669 buttons |= wxJOY_BUTTON4;
2670
2671 wxJoystickEvent event(wxEVT_JOY_BUTTON_DOWN, buttons, joystick, change);
2672 event.SetPosition(wxPoint(x, y));
2673 event.SetEventObject(this);
2674
2675 GetEventHandler()->ProcessEvent(event);
2676 }
2677
2678 void wxWindow::MSWOnJoyUp(int joystick, int x, int y, WXUINT flags)
2679 {
2680 int buttons = 0;
2681 int change = 0;
2682 if (flags & JOY_BUTTON1CHG)
2683 change = wxJOY_BUTTON1;
2684 if (flags & JOY_BUTTON2CHG)
2685 change = wxJOY_BUTTON2;
2686 if (flags & JOY_BUTTON3CHG)
2687 change = wxJOY_BUTTON3;
2688 if (flags & JOY_BUTTON4CHG)
2689 change = wxJOY_BUTTON4;
2690
2691 if (flags & JOY_BUTTON1)
2692 buttons |= wxJOY_BUTTON1;
2693 if (flags & JOY_BUTTON2)
2694 buttons |= wxJOY_BUTTON2;
2695 if (flags & JOY_BUTTON3)
2696 buttons |= wxJOY_BUTTON3;
2697 if (flags & JOY_BUTTON4)
2698 buttons |= wxJOY_BUTTON4;
2699
2700 wxJoystickEvent event(wxEVT_JOY_BUTTON_UP, buttons, joystick, change);
2701 event.SetPosition(wxPoint(x, y));
2702 event.SetEventObject(this);
2703
2704 GetEventHandler()->ProcessEvent(event);
2705 }
2706
2707 void wxWindow::MSWOnJoyMove(int joystick, int x, int y, WXUINT flags)
2708 {
2709 int buttons = 0;
2710 if (flags & JOY_BUTTON1)
2711 buttons |= wxJOY_BUTTON1;
2712 if (flags & JOY_BUTTON2)
2713 buttons |= wxJOY_BUTTON2;
2714 if (flags & JOY_BUTTON3)
2715 buttons |= wxJOY_BUTTON3;
2716 if (flags & JOY_BUTTON4)
2717 buttons |= wxJOY_BUTTON4;
2718
2719 wxJoystickEvent event(wxEVT_JOY_MOVE, buttons, joystick, 0);
2720 event.SetPosition(wxPoint(x, y));
2721 event.SetEventObject(this);
2722
2723 GetEventHandler()->ProcessEvent(event);
2724 }
2725
2726 void wxWindow::MSWOnJoyZMove(int joystick, int z, WXUINT flags)
2727 {
2728 int buttons = 0;
2729 if (flags & JOY_BUTTON1)
2730 buttons |= wxJOY_BUTTON1;
2731 if (flags & JOY_BUTTON2)
2732 buttons |= wxJOY_BUTTON2;
2733 if (flags & JOY_BUTTON3)
2734 buttons |= wxJOY_BUTTON3;
2735 if (flags & JOY_BUTTON4)
2736 buttons |= wxJOY_BUTTON4;
2737
2738 wxJoystickEvent event(wxEVT_JOY_ZMOVE, buttons, joystick, 0);
2739 event.SetZPosition(z);
2740 event.SetEventObject(this);
2741
2742 GetEventHandler()->ProcessEvent(event);
2743 }
2744
2745 void wxWindow::MSWOnVScroll(WXWORD wParam, WXWORD pos, WXHWND control)
2746 {
2747 if (control)
2748 {
2749 wxWindow *child = wxFindWinFromHandle(control);
2750 if ( child )
2751 child->MSWOnVScroll(wParam, pos, control);
2752 return;
2753 }
2754
2755 wxScrollEvent event;
2756 event.SetPosition(pos);
2757 event.SetOrientation(wxVERTICAL);
2758 event.m_eventObject = this;
2759
2760 switch ( wParam )
2761 {
2762 case SB_TOP:
2763 event.m_eventType = wxEVT_SCROLL_TOP;
2764 break;
2765
2766 case SB_BOTTOM:
2767 event.m_eventType = wxEVT_SCROLL_BOTTOM;
2768 break;
2769
2770 case SB_LINEUP:
2771 event.m_eventType = wxEVT_SCROLL_LINEUP;
2772 break;
2773
2774 case SB_LINEDOWN:
2775 event.m_eventType = wxEVT_SCROLL_LINEDOWN;
2776 break;
2777
2778 case SB_PAGEUP:
2779 event.m_eventType = wxEVT_SCROLL_PAGEUP;
2780 break;
2781
2782 case SB_PAGEDOWN:
2783 event.m_eventType = wxEVT_SCROLL_PAGEDOWN;
2784 break;
2785
2786 case SB_THUMBTRACK:
2787 case SB_THUMBPOSITION:
2788 event.m_eventType = wxEVT_SCROLL_THUMBTRACK;
2789 break;
2790
2791 default:
2792 return;
2793 break;
2794 }
2795
2796 if (!GetEventHandler()->ProcessEvent(event))
2797 Default();
2798 }
2799
2800 void wxWindow::MSWOnHScroll( WXWORD wParam, WXWORD pos, WXHWND control)
2801 {
2802 if (control)
2803 {
2804 wxWindow *child = wxFindWinFromHandle(control);
2805 if ( child ) {
2806 child->MSWOnHScroll(wParam, pos, control);
2807
2808 return;
2809 }
2810 }
2811 else {
2812 wxScrollEvent event;
2813 event.SetPosition(pos);
2814 event.SetOrientation(wxHORIZONTAL);
2815 event.m_eventObject = this;
2816
2817 switch ( wParam )
2818 {
2819 case SB_TOP:
2820 event.m_eventType = wxEVT_SCROLL_TOP;
2821 break;
2822
2823 case SB_BOTTOM:
2824 event.m_eventType = wxEVT_SCROLL_BOTTOM;
2825 break;
2826
2827 case SB_LINEUP:
2828 event.m_eventType = wxEVT_SCROLL_LINEUP;
2829 break;
2830
2831 case SB_LINEDOWN:
2832 event.m_eventType = wxEVT_SCROLL_LINEDOWN;
2833 break;
2834
2835 case SB_PAGEUP:
2836 event.m_eventType = wxEVT_SCROLL_PAGEUP;
2837 break;
2838
2839 case SB_PAGEDOWN:
2840 event.m_eventType = wxEVT_SCROLL_PAGEDOWN;
2841 break;
2842
2843 case SB_THUMBTRACK:
2844 case SB_THUMBPOSITION:
2845 event.m_eventType = wxEVT_SCROLL_THUMBTRACK;
2846 break;
2847
2848 default:
2849 return;
2850 }
2851
2852 if ( GetEventHandler()->ProcessEvent(event) )
2853 return;
2854 }
2855
2856 // call the default WM_HSCROLL handler: it's non trivial in some common
2857 // controls (up-down control for example)
2858 Default();
2859 }
2860
2861 void wxWindow::MSWOnShow(bool show, int status)
2862 {
2863 wxShowEvent event(GetId(), show);
2864 event.m_eventObject = this;
2865 GetEventHandler()->ProcessEvent(event);
2866 }
2867
2868 bool wxWindow::MSWOnInitDialog(WXHWND WXUNUSED(hWndFocus))
2869 {
2870 wxInitDialogEvent event(GetId());
2871 event.m_eventObject = this;
2872 GetEventHandler()->ProcessEvent(event);
2873 return TRUE;
2874 }
2875
2876 void wxWindow::InitDialog()
2877 {
2878 wxInitDialogEvent event(GetId());
2879 event.SetEventObject( this );
2880 GetEventHandler()->ProcessEvent(event);
2881 }
2882
2883 // Default init dialog behaviour is to transfer data to window
2884 void wxWindow::OnInitDialog(wxInitDialogEvent& event)
2885 {
2886 TransferDataToWindow();
2887 }
2888
2889 void wxGetCharSize(WXHWND wnd, int *x, int *y,wxFont *the_font)
2890 {
2891 TEXTMETRIC tm;
2892 HDC dc = ::GetDC((HWND) wnd);
2893 HFONT fnt =0;
2894 HFONT was = 0;
2895 if (the_font)
2896 {
2897 // the_font->UseResource();
2898 // the_font->RealizeResource();
2899 fnt = (HFONT)the_font->GetResourceHandle();
2900 if ( fnt )
2901 was = (HFONT) SelectObject(dc,fnt) ;
2902 }
2903 GetTextMetrics(dc, &tm);
2904 if (the_font && fnt && was)
2905 {
2906 SelectObject(dc,was) ;
2907 }
2908 ReleaseDC((HWND)wnd, dc);
2909 *x = tm.tmAveCharWidth;
2910 *y = tm.tmHeight + tm.tmExternalLeading;
2911
2912 // if (the_font)
2913 // the_font->ReleaseResource();
2914 }
2915
2916 // Returns 0 if was a normal ASCII value, not a special key. This indicates that
2917 // the key should be ignored by WM_KEYDOWN and processed by WM_CHAR instead.
2918 int wxCharCodeMSWToWX(int keySym)
2919 {
2920 int id = 0;
2921 switch (keySym)
2922 {
2923 case VK_CANCEL: id = WXK_CANCEL; break;
2924 case VK_BACK: id = WXK_BACK; break;
2925 case VK_TAB: id = WXK_TAB; break;
2926 case VK_CLEAR: id = WXK_CLEAR; break;
2927 case VK_RETURN: id = WXK_RETURN; break;
2928 case VK_SHIFT: id = WXK_SHIFT; break;
2929 case VK_CONTROL: id = WXK_CONTROL; break;
2930 case VK_MENU : id = WXK_MENU; break;
2931 case VK_PAUSE: id = WXK_PAUSE; break;
2932 case VK_SPACE: id = WXK_SPACE; break;
2933 case VK_ESCAPE: id = WXK_ESCAPE; break;
2934 case VK_PRIOR: id = WXK_PRIOR; break;
2935 case VK_NEXT : id = WXK_NEXT; break;
2936 case VK_END: id = WXK_END; break;
2937 case VK_HOME : id = WXK_HOME; break;
2938 case VK_LEFT : id = WXK_LEFT; break;
2939 case VK_UP: id = WXK_UP; break;
2940 case VK_RIGHT: id = WXK_RIGHT; break;
2941 case VK_DOWN : id = WXK_DOWN; break;
2942 case VK_SELECT: id = WXK_SELECT; break;
2943 case VK_PRINT: id = WXK_PRINT; break;
2944 case VK_EXECUTE: id = WXK_EXECUTE; break;
2945 case VK_INSERT: id = WXK_INSERT; break;
2946 case VK_DELETE: id = WXK_DELETE; break;
2947 case VK_HELP : id = WXK_HELP; break;
2948 case VK_NUMPAD0: id = WXK_NUMPAD0; break;
2949 case VK_NUMPAD1: id = WXK_NUMPAD1; break;
2950 case VK_NUMPAD2: id = WXK_NUMPAD2; break;
2951 case VK_NUMPAD3: id = WXK_NUMPAD3; break;
2952 case VK_NUMPAD4: id = WXK_NUMPAD4; break;
2953 case VK_NUMPAD5: id = WXK_NUMPAD5; break;
2954 case VK_NUMPAD6: id = WXK_NUMPAD6; break;
2955 case VK_NUMPAD7: id = WXK_NUMPAD7; break;
2956 case VK_NUMPAD8: id = WXK_NUMPAD8; break;
2957 case VK_NUMPAD9: id = WXK_NUMPAD9; break;
2958 case VK_MULTIPLY: id = WXK_MULTIPLY; break;
2959 case VK_ADD: id = WXK_ADD; break;
2960 case VK_SUBTRACT: id = WXK_SUBTRACT; break;
2961 case VK_DECIMAL: id = WXK_DECIMAL; break;
2962 case VK_DIVIDE: id = WXK_DIVIDE; break;
2963 case VK_F1: id = WXK_F1; break;
2964 case VK_F2: id = WXK_F2; break;
2965 case VK_F3: id = WXK_F3; break;
2966 case VK_F4: id = WXK_F4; break;
2967 case VK_F5: id = WXK_F5; break;
2968 case VK_F6: id = WXK_F6; break;
2969 case VK_F7: id = WXK_F7; break;
2970 case VK_F8: id = WXK_F8; break;
2971 case VK_F9: id = WXK_F9; break;
2972 case VK_F10: id = WXK_F10; break;
2973 case VK_F11: id = WXK_F11; break;
2974 case VK_F12: id = WXK_F12; break;
2975 case VK_F13: id = WXK_F13; break;
2976 case VK_F14: id = WXK_F14; break;
2977 case VK_F15: id = WXK_F15; break;
2978 case VK_F16: id = WXK_F16; break;
2979 case VK_F17: id = WXK_F17; break;
2980 case VK_F18: id = WXK_F18; break;
2981 case VK_F19: id = WXK_F19; break;
2982 case VK_F20: id = WXK_F20; break;
2983 case VK_F21: id = WXK_F21; break;
2984 case VK_F22: id = WXK_F22; break;
2985 case VK_F23: id = WXK_F23; break;
2986 case VK_F24: id = WXK_F24; break;
2987 case VK_NUMLOCK: id = WXK_NUMLOCK; break;
2988 case VK_SCROLL: id = WXK_SCROLL; break;
2989 default:
2990 {
2991 return 0;
2992 }
2993 }
2994 return id;
2995 }
2996
2997 int wxCharCodeWXToMSW(int id, bool *isVirtual)
2998 {
2999 *isVirtual = TRUE;
3000 int keySym = 0;
3001 switch (id)
3002 {
3003 case WXK_CANCEL: keySym = VK_CANCEL; break;
3004 case WXK_CLEAR: keySym = VK_CLEAR; break;
3005 case WXK_SHIFT: keySym = VK_SHIFT; break;
3006 case WXK_CONTROL: keySym = VK_CONTROL; break;
3007 case WXK_MENU : keySym = VK_MENU; break;
3008 case WXK_PAUSE: keySym = VK_PAUSE; break;
3009 case WXK_PRIOR: keySym = VK_PRIOR; break;
3010 case WXK_NEXT : keySym = VK_NEXT; break;
3011 case WXK_END: keySym = VK_END; break;
3012 case WXK_HOME : keySym = VK_HOME; break;
3013 case WXK_LEFT : keySym = VK_LEFT; break;
3014 case WXK_UP: keySym = VK_UP; break;
3015 case WXK_RIGHT: keySym = VK_RIGHT; break;
3016 case WXK_DOWN : keySym = VK_DOWN; break;
3017 case WXK_SELECT: keySym = VK_SELECT; break;
3018 case WXK_PRINT: keySym = VK_PRINT; break;
3019 case WXK_EXECUTE: keySym = VK_EXECUTE; break;
3020 case WXK_INSERT: keySym = VK_INSERT; break;
3021 case WXK_DELETE: keySym = VK_DELETE; break;
3022 case WXK_HELP : keySym = VK_HELP; break;
3023 case WXK_NUMPAD0: keySym = VK_NUMPAD0; break;
3024 case WXK_NUMPAD1: keySym = VK_NUMPAD1; break;
3025 case WXK_NUMPAD2: keySym = VK_NUMPAD2; break;
3026 case WXK_NUMPAD3: keySym = VK_NUMPAD3; break;
3027 case WXK_NUMPAD4: keySym = VK_NUMPAD4; break;
3028 case WXK_NUMPAD5: keySym = VK_NUMPAD5; break;
3029 case WXK_NUMPAD6: keySym = VK_NUMPAD6; break;
3030 case WXK_NUMPAD7: keySym = VK_NUMPAD7; break;
3031 case WXK_NUMPAD8: keySym = VK_NUMPAD8; break;
3032 case WXK_NUMPAD9: keySym = VK_NUMPAD9; break;
3033 case WXK_MULTIPLY: keySym = VK_MULTIPLY; break;
3034 case WXK_ADD: keySym = VK_ADD; break;
3035 case WXK_SUBTRACT: keySym = VK_SUBTRACT; break;
3036 case WXK_DECIMAL: keySym = VK_DECIMAL; break;
3037 case WXK_DIVIDE: keySym = VK_DIVIDE; break;
3038 case WXK_F1: keySym = VK_F1; break;
3039 case WXK_F2: keySym = VK_F2; break;
3040 case WXK_F3: keySym = VK_F3; break;
3041 case WXK_F4: keySym = VK_F4; break;
3042 case WXK_F5: keySym = VK_F5; break;
3043 case WXK_F6: keySym = VK_F6; break;
3044 case WXK_F7: keySym = VK_F7; break;
3045 case WXK_F8: keySym = VK_F8; break;
3046 case WXK_F9: keySym = VK_F9; break;
3047 case WXK_F10: keySym = VK_F10; break;
3048 case WXK_F11: keySym = VK_F11; break;
3049 case WXK_F12: keySym = VK_F12; break;
3050 case WXK_F13: keySym = VK_F13; break;
3051 case WXK_F14: keySym = VK_F14; break;
3052 case WXK_F15: keySym = VK_F15; break;
3053 case WXK_F16: keySym = VK_F16; break;
3054 case WXK_F17: keySym = VK_F17; break;
3055 case WXK_F18: keySym = VK_F18; break;
3056 case WXK_F19: keySym = VK_F19; break;
3057 case WXK_F20: keySym = VK_F20; break;
3058 case WXK_F21: keySym = VK_F21; break;
3059 case WXK_F22: keySym = VK_F22; break;
3060 case WXK_F23: keySym = VK_F23; break;
3061 case WXK_F24: keySym = VK_F24; break;
3062 case WXK_NUMLOCK: keySym = VK_NUMLOCK; break;
3063 case WXK_SCROLL: keySym = VK_SCROLL; break;
3064 default:
3065 {
3066 *isVirtual = FALSE;
3067 keySym = id;
3068 break;
3069 }
3070 }
3071 return keySym;
3072 }
3073
3074 // Caret manipulation
3075 void wxWindow::CreateCaret(int w, int h)
3076 {
3077 m_caretWidth = w;
3078 m_caretHeight = h;
3079 m_caretEnabled = TRUE;
3080 }
3081
3082 void wxWindow::CreateCaret(const wxBitmap *WXUNUSED(bitmap))
3083 {
3084 // Not implemented
3085 }
3086
3087 void wxWindow::ShowCaret(bool show)
3088 {
3089 if (m_caretEnabled)
3090 {
3091 if (show)
3092 ::ShowCaret((HWND) GetHWND());
3093 else
3094 ::HideCaret((HWND) GetHWND());
3095 m_caretShown = show;
3096 }
3097 }
3098
3099 void wxWindow::DestroyCaret()
3100 {
3101 m_caretEnabled = FALSE;
3102 }
3103
3104 void wxWindow::SetCaretPos(int x, int y)
3105 {
3106 ::SetCaretPos(x, y);
3107 }
3108
3109 void wxWindow::GetCaretPos(int *x, int *y) const
3110 {
3111 POINT point;
3112 ::GetCaretPos(&point);
3113 *x = point.x;
3114 *y = point.y;
3115 }
3116
3117 wxWindow *wxGetActiveWindow()
3118 {
3119 HWND hWnd = GetActiveWindow();
3120 if (hWnd != 0)
3121 {
3122 return wxFindWinFromHandle((WXHWND) hWnd);
3123 }
3124 return NULL;
3125 }
3126
3127 // Windows keyboard hook. Allows interception of e.g. F1, ESCAPE
3128 // in active frames and dialogs, regardless of where the focus is.
3129 static HHOOK wxTheKeyboardHook = 0;
3130 static FARPROC wxTheKeyboardHookProc = 0;
3131 int APIENTRY _EXPORT
3132 wxKeyboardHook(int nCode, WORD wParam, DWORD lParam);
3133
3134 void wxSetKeyboardHook(bool doIt)
3135 {
3136 if (doIt)
3137 {
3138 wxTheKeyboardHookProc = MakeProcInstance((FARPROC) wxKeyboardHook, wxGetInstance());
3139 wxTheKeyboardHook = SetWindowsHookEx(WH_KEYBOARD, (HOOKPROC) wxTheKeyboardHookProc, wxGetInstance(),
3140 #if defined(__WIN32__) && !defined(__TWIN32__)
3141 GetCurrentThreadId());
3142 // (DWORD)GetCurrentProcess()); // This is another possibility. Which is right?
3143 #else
3144 GetCurrentTask());
3145 #endif
3146 }
3147 else
3148 {
3149 UnhookWindowsHookEx(wxTheKeyboardHook);
3150 FreeProcInstance(wxTheKeyboardHookProc);
3151 }
3152 }
3153
3154 int APIENTRY _EXPORT
3155 wxKeyboardHook(int nCode, WORD wParam, DWORD lParam)
3156 {
3157 DWORD hiWord = HIWORD(lParam);
3158 if (nCode != HC_NOREMOVE && ((hiWord & KF_UP) == 0))
3159 {
3160 int id;
3161 if ((id = wxCharCodeMSWToWX(wParam)) != 0)
3162 {
3163 wxKeyEvent event(wxEVT_CHAR_HOOK);
3164 if ((HIWORD(lParam) & KF_ALTDOWN) == KF_ALTDOWN)
3165 event.m_altDown = TRUE;
3166
3167 event.m_eventObject = NULL;
3168 event.m_keyCode = id;
3169 /* begin Albert's fix for control and shift key 26.5 */
3170 event.m_shiftDown = (::GetKeyState(VK_SHIFT)&0x100?TRUE:FALSE);
3171 event.m_controlDown = (::GetKeyState(VK_CONTROL)&0x100?TRUE:FALSE);
3172 /* end Albert's fix for control and shift key 26.5 */
3173 event.SetTimestamp(wxApp::sm_lastMessageTime);
3174
3175 wxWindow *win = wxGetActiveWindow();
3176 if (win)
3177 {
3178 if (win->GetEventHandler()->ProcessEvent(event))
3179 return 1;
3180 }
3181 else
3182 {
3183 if ( wxTheApp && wxTheApp->ProcessEvent(event) )
3184 return 1;
3185 }
3186 }
3187 }
3188 return (int)CallNextHookEx(wxTheKeyboardHook, nCode, wParam, lParam);
3189 }
3190
3191 void wxWindow::SetSizeHints(int minW, int minH, int maxW, int maxH, int WXUNUSED(incW), int WXUNUSED(incH))
3192 {
3193 m_minSizeX = minW;
3194 m_minSizeY = minH;
3195 m_maxSizeX = maxW;
3196 m_maxSizeY = maxH;
3197 }
3198
3199 void wxWindow::Centre(int direction)
3200 {
3201 int x, y, width, height, panel_width, panel_height, new_x, new_y;
3202
3203 wxWindow *father = (wxWindow *)GetParent();
3204 if (!father)
3205 return;
3206
3207 father->GetClientSize(&panel_width, &panel_height);
3208 GetSize(&width, &height);
3209 GetPosition(&x, &y);
3210
3211 new_x = -1;
3212 new_y = -1;
3213
3214 if (direction & wxHORIZONTAL)
3215 new_x = (int)((panel_width - width)/2);
3216
3217 if (direction & wxVERTICAL)
3218 new_y = (int)((panel_height - height)/2);
3219
3220 SetSize(new_x, new_y, -1, -1);
3221
3222 }
3223
3224 void wxWindow::WarpPointer (int x_pos, int y_pos)
3225 {
3226 // Move the pointer to (x_pos,y_pos) coordinates. They are expressed in
3227 // pixel coordinates, relatives to the canvas -- So, we first need to
3228 // substract origin of the window, then convert to screen position
3229
3230 int x = x_pos; int y = y_pos;
3231 RECT rect;
3232 GetWindowRect ((HWND) GetHWND(), &rect);
3233
3234 x += rect.left;
3235 y += rect.top;
3236
3237 SetCursorPos (x, y);
3238 }
3239
3240 void wxWindow::MSWDeviceToLogical (float *x, float *y) const
3241 {
3242 }
3243
3244 bool wxWindow::MSWOnEraseBkgnd (WXHDC pDC)
3245 {
3246 wxDC dc ;
3247
3248 dc.SetHDC(pDC);
3249 dc.SetWindow(this);
3250 dc.BeginDrawing();
3251
3252 wxEraseEvent event(m_windowId, &dc);
3253 event.m_eventObject = this;
3254 if (!GetEventHandler()->ProcessEvent(event))
3255 {
3256 dc.EndDrawing();
3257 dc.SelectOldObjects(pDC);
3258 return FALSE;
3259 }
3260 else
3261 {
3262 dc.EndDrawing();
3263 dc.SelectOldObjects(pDC);
3264 }
3265
3266 dc.SetHDC((WXHDC) NULL);
3267 return TRUE;
3268 }
3269
3270 void wxWindow::OnEraseBackground(wxEraseEvent& event)
3271 {
3272 if (!GetHWND())
3273 return;
3274
3275 RECT rect;
3276 ::GetClientRect((HWND) GetHWND(), &rect);
3277
3278 COLORREF ref = PALETTERGB(m_backgroundColour.Red(), m_backgroundColour.Green(), m_backgroundColour.Blue()) ;
3279 HBRUSH hBrush = ::CreateSolidBrush(ref);
3280 int mode = ::SetMapMode((HDC) event.GetDC()->GetHDC(), MM_TEXT);
3281
3282 // ::GetClipBox((HDC) event.GetDC()->GetHDC(), &rect);
3283 ::FillRect ((HDC) event.GetDC()->GetHDC(), &rect, hBrush);
3284 ::DeleteObject(hBrush);
3285 ::SetMapMode((HDC) event.GetDC()->GetHDC(), mode);
3286 /*
3287 // Less efficient version (and doesn't account for scrolling)
3288 int w, h;
3289 GetClientSize(& w, & h);
3290 wxBrush *brush = wxTheBrushList->FindOrCreateBrush(& GetBackgroundColour(), wxSOLID);
3291 event.GetDC()->SetBrush(brush);
3292 event.GetDC()->SetPen(wxTRANSPARENT_PEN);
3293
3294 event.GetDC()->DrawRectangle(0, 0, w+1, h+1);
3295 */
3296 }
3297
3298 #if WXWIN_COMPATIBILITY
3299 void wxWindow::SetScrollRange(int orient, int range, bool refresh)
3300 {
3301 #if defined(__WIN95__)
3302
3303 int range1 = range;
3304
3305 // Try to adjust the range to cope with page size > 1
3306 // - a Windows API quirk
3307 int pageSize = GetScrollPage(orient);
3308 if ( pageSize > 1 && range > 0)
3309 {
3310 range1 += (pageSize - 1);
3311 }
3312
3313 SCROLLINFO info;
3314 int dir;
3315
3316 if (orient == wxHORIZONTAL) {
3317 dir = SB_HORZ;
3318 } else {
3319 dir = SB_VERT;
3320 }
3321
3322 info.cbSize = sizeof(SCROLLINFO);
3323 info.nPage = pageSize; // Have to set this, or scrollbar goes awry
3324 info.nMin = 0;
3325 info.nMax = range1;
3326 info.nPos = 0;
3327 info.fMask = SIF_RANGE | SIF_PAGE;
3328
3329 HWND hWnd = (HWND) GetHWND();
3330 if (hWnd)
3331 ::SetScrollInfo(hWnd, dir, &info, refresh);
3332 #else
3333 int wOrient ;
3334 if (orient == wxHORIZONTAL)
3335 wOrient = SB_HORZ;
3336 else
3337 wOrient = SB_VERT;
3338
3339 HWND hWnd = (HWND) GetHWND();
3340 if (hWnd)
3341 ::SetScrollRange(hWnd, wOrient, 0, range, refresh);
3342 #endif
3343 }
3344
3345 void wxWindow::SetScrollPage(int orient, int page, bool refresh)
3346 {
3347 #if defined(__WIN95__)
3348 SCROLLINFO info;
3349 int dir;
3350
3351 if (orient == wxHORIZONTAL) {
3352 dir = SB_HORZ;
3353 m_xThumbSize = page;
3354 } else {
3355 dir = SB_VERT;
3356 m_yThumbSize = page;
3357 }
3358
3359 info.cbSize = sizeof(SCROLLINFO);
3360 info.nPage = page;
3361 info.nMin = 0;
3362 info.fMask = SIF_PAGE ;
3363
3364 HWND hWnd = (HWND) GetHWND();
3365 if (hWnd)
3366 ::SetScrollInfo(hWnd, dir, &info, refresh);
3367 #else
3368 if (orient == wxHORIZONTAL)
3369 m_xThumbSize = page;
3370 else
3371 m_yThumbSize = page;
3372 #endif
3373 }
3374
3375 int wxWindow::OldGetScrollRange(int orient) const
3376 {
3377 int wOrient ;
3378 if (orient == wxHORIZONTAL)
3379 wOrient = SB_HORZ;
3380 else
3381 wOrient = SB_VERT;
3382
3383 #if __WATCOMC__ && defined(__WINDOWS_386__)
3384 short minPos, maxPos;
3385 #else
3386 int minPos, maxPos;
3387 #endif
3388 HWND hWnd = (HWND) GetHWND();
3389 if (hWnd)
3390 {
3391 ::GetScrollRange(hWnd, wOrient, &minPos, &maxPos);
3392 #if defined(__WIN95__)
3393 // Try to adjust the range to cope with page size > 1
3394 // - a Windows API quirk
3395 int pageSize = GetScrollPage(orient);
3396 if ( pageSize > 1 )
3397 {
3398 maxPos -= (pageSize - 1);
3399 }
3400 #endif
3401 return maxPos;
3402 }
3403 else
3404 return 0;
3405 }
3406
3407 int wxWindow::GetScrollPage(int orient) const
3408 {
3409 if (orient == wxHORIZONTAL)
3410 return m_xThumbSize;
3411 else
3412 return m_yThumbSize;
3413 }
3414 #endif
3415
3416 int wxWindow::GetScrollPos(int orient) const
3417 {
3418 int wOrient ;
3419 if (orient == wxHORIZONTAL)
3420 wOrient = SB_HORZ;
3421 else
3422 wOrient = SB_VERT;
3423 HWND hWnd = (HWND) GetHWND();
3424 if (hWnd)
3425 {
3426 return ::GetScrollPos(hWnd, wOrient);
3427 }
3428 else
3429 return 0;
3430 }
3431
3432 // This now returns the whole range, not just the number
3433 // of positions that we can scroll.
3434 int wxWindow::GetScrollRange(int orient) const
3435 {
3436 int wOrient ;
3437 if (orient == wxHORIZONTAL)
3438 wOrient = SB_HORZ;
3439 else
3440 wOrient = SB_VERT;
3441
3442 #if __WATCOMC__ && defined(__WINDOWS_386__)
3443 short minPos, maxPos;
3444 #else
3445 int minPos, maxPos;
3446 #endif
3447 HWND hWnd = (HWND) GetHWND();
3448 if (hWnd)
3449 {
3450 ::GetScrollRange(hWnd, wOrient, &minPos, &maxPos);
3451 #if defined(__WIN95__)
3452 // Try to adjust the range to cope with page size > 1
3453 // - a Windows API quirk
3454 int pageSize = GetScrollThumb(orient);
3455 if ( pageSize > 1 )
3456 {
3457 maxPos -= (pageSize - 1);
3458 }
3459 // October 10th: new range concept.
3460 maxPos += pageSize;
3461 #endif
3462
3463 return maxPos;
3464 }
3465 else
3466 return 0;
3467 }
3468
3469 int wxWindow::GetScrollThumb(int orient) const
3470 {
3471 if (orient == wxHORIZONTAL)
3472 return m_xThumbSize;
3473 else
3474 return m_yThumbSize;
3475 }
3476
3477 void wxWindow::SetScrollPos(int orient, int pos, bool refresh)
3478 {
3479 #if defined(__WIN95__)
3480 SCROLLINFO info;
3481 int dir;
3482
3483 if (orient == wxHORIZONTAL) {
3484 dir = SB_HORZ;
3485 } else {
3486 dir = SB_VERT;
3487 }
3488
3489 info.cbSize = sizeof(SCROLLINFO);
3490 info.nPage = 0;
3491 info.nMin = 0;
3492 info.nPos = pos;
3493 info.fMask = SIF_POS ;
3494
3495 HWND hWnd = (HWND) GetHWND();
3496 if (hWnd)
3497 ::SetScrollInfo(hWnd, dir, &info, refresh);
3498 #else
3499 int wOrient ;
3500 if (orient == wxHORIZONTAL)
3501 wOrient = SB_HORZ;
3502 else
3503 wOrient = SB_VERT;
3504
3505 HWND hWnd = (HWND) GetHWND();
3506 if (hWnd)
3507 ::SetScrollPos(hWnd, wOrient, pos, refresh);
3508 #endif
3509 }
3510
3511 // New function that will replace some of the above.
3512 void wxWindow::SetScrollbar(int orient, int pos, int thumbVisible,
3513 int range, bool refresh)
3514 {
3515 /*
3516 SetScrollPage(orient, thumbVisible, FALSE);
3517
3518 int oldRange = range - thumbVisible ;
3519 SetScrollRange(orient, oldRange, FALSE);
3520
3521 SetScrollPos(orient, pos, refresh);
3522 */
3523 #if defined(__WIN95__)
3524 int oldRange = range - thumbVisible ;
3525
3526 int range1 = oldRange;
3527
3528 // Try to adjust the range to cope with page size > 1
3529 // - a Windows API quirk
3530 int pageSize = thumbVisible;
3531 if ( pageSize > 1 && range > 0)
3532 {
3533 range1 += (pageSize - 1);
3534 }
3535
3536 SCROLLINFO info;
3537 int dir;
3538
3539 if (orient == wxHORIZONTAL) {
3540 dir = SB_HORZ;
3541 } else {
3542 dir = SB_VERT;
3543 }
3544
3545 info.cbSize = sizeof(SCROLLINFO);
3546 info.nPage = pageSize; // Have to set this, or scrollbar goes awry
3547 info.nMin = 0;
3548 info.nMax = range1;
3549 info.nPos = pos;
3550 info.fMask = SIF_RANGE | SIF_PAGE | SIF_POS;
3551
3552 HWND hWnd = (HWND) GetHWND();
3553 if (hWnd)
3554 ::SetScrollInfo(hWnd, dir, &info, refresh);
3555 #else
3556 int wOrient ;
3557 if (orient == wxHORIZONTAL)
3558 wOrient = SB_HORZ;
3559 else
3560 wOrient = SB_VERT;
3561
3562 HWND hWnd = (HWND) GetHWND();
3563 if (hWnd)
3564 {
3565 ::SetScrollRange(hWnd, wOrient, 0, range, FALSE);
3566 ::SetScrollPos(hWnd, wOrient, pos, refresh);
3567 }
3568 #endif
3569 if (orient == wxHORIZONTAL) {
3570 m_xThumbSize = thumbVisible;
3571 } else {
3572 m_yThumbSize = thumbVisible;
3573 }
3574 }
3575
3576 void wxWindow::ScrollWindow(int dx, int dy, const wxRect *rect)
3577 {
3578 RECT rect2;
3579 if ( rect )
3580 {
3581 rect2.left = rect->x;
3582 rect2.top = rect->y;
3583 rect2.right = rect->x + rect->width;
3584 rect2.bottom = rect->y + rect->height;
3585 }
3586
3587 if ( rect )
3588 ::ScrollWindow((HWND) GetHWND(), dx, dy, &rect2, NULL);
3589 else
3590 ::ScrollWindow((HWND) GetHWND(), dx, dy, NULL, NULL);
3591 }
3592
3593 void wxWindow::SetFont(const wxFont& font)
3594 {
3595 m_windowFont = font;
3596
3597 if (!m_windowFont.Ok())
3598 return;
3599
3600 HWND hWnd = (HWND) GetHWND();
3601 if (hWnd != 0)
3602 {
3603 if (m_windowFont.GetResourceHandle())
3604 SendMessage(hWnd, WM_SETFONT,
3605 (WPARAM)m_windowFont.GetResourceHandle(),TRUE);
3606 }
3607 }
3608
3609 void wxWindow::SubclassWin(WXHWND hWnd)
3610 {
3611 wxASSERT_MSG( !m_oldWndProc, "subclassing window twice?" );
3612
3613 wxAssociateWinWithHandle((HWND)hWnd, this);
3614
3615 m_oldWndProc = (WXFARPROC) GetWindowLong((HWND) hWnd, GWL_WNDPROC);
3616 SetWindowLong((HWND) hWnd, GWL_WNDPROC, (LONG) wxWndProc);
3617 }
3618
3619 void wxWindow::UnsubclassWin()
3620 {
3621 wxRemoveHandleAssociation(this);
3622
3623 // Restore old Window proc
3624 if ((HWND) GetHWND())
3625 {
3626 FARPROC farProc = (FARPROC) GetWindowLong((HWND) GetHWND(), GWL_WNDPROC);
3627 if ((m_oldWndProc != 0) && (farProc != (FARPROC) m_oldWndProc))
3628 {
3629 SetWindowLong((HWND) GetHWND(), GWL_WNDPROC, (LONG) m_oldWndProc);
3630 m_oldWndProc = 0;
3631 }
3632 }
3633 }
3634
3635 // Make a Windows extended style from the given wxWindows window style
3636 WXDWORD wxWindow::MakeExtendedStyle(long style, bool eliminateBorders)
3637 {
3638 WXDWORD exStyle = 0;
3639 if ( style & wxTRANSPARENT_WINDOW )
3640 exStyle |= WS_EX_TRANSPARENT ;
3641
3642 if ( !eliminateBorders )
3643 {
3644 if ( style & wxSUNKEN_BORDER )
3645 exStyle |= WS_EX_CLIENTEDGE ;
3646 if ( style & wxDOUBLE_BORDER )
3647 exStyle |= WS_EX_DLGMODALFRAME ;
3648 #if defined(__WIN95__)
3649 if ( style & wxRAISED_BORDER )
3650 exStyle |= WS_EX_WINDOWEDGE ;
3651 if ( style & wxSTATIC_BORDER )
3652 exStyle |= WS_EX_STATICEDGE ;
3653 #endif
3654 }
3655 return exStyle;
3656 }
3657
3658 // Determines whether native 3D effects or CTL3D should be used,
3659 // applying a default border style if required, and returning an extended
3660 // style to pass to CreateWindowEx.
3661 WXDWORD wxWindow::Determine3DEffects(WXDWORD defaultBorderStyle, bool *want3D)
3662 {
3663 // If matches certain criteria, then assume no 3D effects
3664 // unless specifically requested (dealt with in MakeExtendedStyle)
3665 if ( !GetParent() || !IsKindOf(CLASSINFO(wxControl)) || (m_windowStyle & wxNO_BORDER) )
3666 {
3667 *want3D = FALSE;
3668 return MakeExtendedStyle(m_windowStyle, FALSE);
3669 }
3670
3671 // Determine whether we should be using 3D effects or not.
3672 bool nativeBorder = FALSE; // by default, we don't want a Win95 effect
3673
3674 // 1) App can specify global 3D effects
3675 *want3D = wxTheApp->GetAuto3D();
3676
3677 // 2) If the parent is being drawn with user colours, or simple border specified,
3678 // switch effects off. TODO: replace wxUSER_COLOURS with wxNO_3D
3679 if (GetParent() && (GetParent()->GetWindowStyleFlag() & wxUSER_COLOURS) || (m_windowStyle & wxSIMPLE_BORDER))
3680 *want3D = FALSE;
3681
3682 // 3) Control can override this global setting by defining
3683 // a border style, e.g. wxSUNKEN_BORDER
3684 if (m_windowStyle & wxSUNKEN_BORDER )
3685 *want3D = TRUE;
3686
3687 // 4) If it's a special border, CTL3D can't cope so we want a native border
3688 if ( (m_windowStyle & wxDOUBLE_BORDER) || (m_windowStyle & wxRAISED_BORDER) ||
3689 (m_windowStyle & wxSTATIC_BORDER) )
3690 {
3691 *want3D = TRUE;
3692 nativeBorder = TRUE;
3693 }
3694
3695 // 5) If this isn't a Win95 app, and we are using CTL3D, remove border
3696 // effects from extended style
3697 #if wxUSE_CTL3D
3698 if ( *want3D )
3699 nativeBorder = FALSE;
3700 #endif
3701
3702 DWORD exStyle = MakeExtendedStyle(m_windowStyle, !nativeBorder);
3703
3704 // If we want 3D, but haven't specified a border here,
3705 // apply the default border style specified.
3706 // TODO what about non-Win95 WIN32? Does it have borders?
3707 #if defined(__WIN95__) && !wxUSE_CTL3D
3708 if (defaultBorderStyle && (*want3D) && ! ((m_windowStyle & wxDOUBLE_BORDER) || (m_windowStyle & wxRAISED_BORDER) ||
3709 (m_windowStyle & wxSTATIC_BORDER) || (m_windowStyle & wxSIMPLE_BORDER) ))
3710 exStyle |= defaultBorderStyle; // WS_EX_CLIENTEDGE ;
3711 #endif
3712
3713 return exStyle;
3714 }
3715
3716 void wxWindow::OnChar(wxKeyEvent& event)
3717 {
3718 bool isVirtual;
3719 int id = wxCharCodeWXToMSW((int)event.KeyCode(), &isVirtual);
3720
3721 if ( id == -1 )
3722 id= m_lastWParam;
3723
3724 if ( !event.ControlDown() ) // Why this test?
3725 (void) MSWDefWindowProc(m_lastMsg, (WPARAM) id, m_lastLParam);
3726 }
3727
3728 void wxWindow::OnKeyDown(wxKeyEvent& event)
3729 {
3730 Default();
3731 }
3732
3733 void wxWindow::OnKeyUp(wxKeyEvent& event)
3734 {
3735 Default();
3736 }
3737
3738 void wxWindow::OnPaint(wxPaintEvent& event)
3739 {
3740 Default();
3741 }
3742
3743 bool wxWindow::IsEnabled(void) const
3744 {
3745 return (::IsWindowEnabled((HWND) GetHWND()) != 0);
3746 }
3747
3748 // Dialog support: override these and call
3749 // base class members to add functionality
3750 // that can't be done using validators.
3751 // NOTE: these functions assume that controls
3752 // are direct children of this window, not grandchildren
3753 // or other levels of descendant.
3754
3755 // Transfer values to controls. If returns FALSE,
3756 // it's an application error (pops up a dialog)
3757 bool wxWindow::TransferDataToWindow()
3758 {
3759 wxNode *node = GetChildren().First();
3760 while ( node )
3761 {
3762 wxWindow *child = (wxWindow *)node->Data();
3763 if ( child->GetValidator() && /* child->GetValidator()->Ok() && */
3764 !child->GetValidator()->TransferToWindow() )
3765 {
3766 wxLogError(_("Could not transfer data to window"));
3767 return FALSE;
3768 }
3769
3770 node = node->Next();
3771 }
3772 return TRUE;
3773 }
3774
3775 // Transfer values from controls. If returns FALSE,
3776 // validation failed: don't quit
3777 bool wxWindow::TransferDataFromWindow()
3778 {
3779 wxNode *node = GetChildren().First();
3780 while ( node )
3781 {
3782 wxWindow *child = (wxWindow *)node->Data();
3783 if ( child->GetValidator() && /* child->GetValidator()->Ok() && */ !child->GetValidator()->TransferFromWindow() )
3784 {
3785 return FALSE;
3786 }
3787
3788 node = node->Next();
3789 }
3790 return TRUE;
3791 }
3792
3793 bool wxWindow::Validate()
3794 {
3795 wxNode *node = GetChildren().First();
3796 while ( node )
3797 {
3798 wxWindow *child = (wxWindow *)node->Data();
3799 if ( child->GetValidator() && /* child->GetValidator()->Ok() && */ !child->GetValidator()->Validate(this) )
3800 {
3801 return FALSE;
3802 }
3803
3804 node = node->Next();
3805 }
3806 return TRUE;
3807 }
3808
3809 // Get the window with the focus
3810 wxWindow *wxWindow::FindFocus()
3811 {
3812 HWND hWnd = ::GetFocus();
3813 if ( hWnd )
3814 {
3815 return wxFindWinFromHandle((WXHWND) hWnd);
3816 }
3817 return NULL;
3818 }
3819
3820 void wxWindow::AddChild(wxWindow *child)
3821 {
3822 GetChildren().Append(child);
3823 child->m_windowParent = this;
3824 }
3825
3826 void wxWindow::RemoveChild(wxWindow *child)
3827 {
3828 // if (GetChildren())
3829 GetChildren().DeleteObject(child);
3830 child->m_windowParent = NULL;
3831 }
3832
3833 void wxWindow::DestroyChildren()
3834 {
3835 wxNode *node;
3836 while ((node = GetChildren().First()) != (wxNode *)NULL) {
3837 wxWindow *child;
3838 if ((child = (wxWindow *)node->Data()) != (wxWindow *)NULL) {
3839 delete child;
3840 if ( GetChildren().Member(child) )
3841 delete node;
3842 }
3843 } /* while */
3844 }
3845
3846 void wxWindow::MakeModal(bool modal)
3847 {
3848 // Disable all other windows
3849 if (this->IsKindOf(CLASSINFO(wxDialog)) || this->IsKindOf(CLASSINFO(wxFrame)))
3850 {
3851 wxNode *node = wxTopLevelWindows.First();
3852 while (node)
3853 {
3854 wxWindow *win = (wxWindow *)node->Data();
3855 if (win != this)
3856 win->Enable(!modal);
3857
3858 node = node->Next();
3859 }
3860 }
3861 }
3862
3863 // If nothing defined for this, try the parent.
3864 // E.g. we may be a button loaded from a resource, with no callback function
3865 // defined.
3866 void wxWindow::OnCommand(wxWindow& win, wxCommandEvent& event)
3867 {
3868 if (GetEventHandler()->ProcessEvent(event) )
3869 return;
3870 if (m_windowParent)
3871 m_windowParent->GetEventHandler()->OnCommand(win, event);
3872 }
3873
3874 void wxWindow::SetConstraints(wxLayoutConstraints *c)
3875 {
3876 if (m_constraints)
3877 {
3878 UnsetConstraints(m_constraints);
3879 delete m_constraints;
3880 }
3881 m_constraints = c;
3882 if (m_constraints)
3883 {
3884 // Make sure other windows know they're part of a 'meaningful relationship'
3885 if (m_constraints->left.GetOtherWindow() && (m_constraints->left.GetOtherWindow() != this))
3886 m_constraints->left.GetOtherWindow()->AddConstraintReference((wxWindow *)this);
3887 if (m_constraints->top.GetOtherWindow() && (m_constraints->top.GetOtherWindow() != this))
3888 m_constraints->top.GetOtherWindow()->AddConstraintReference((wxWindow *)this);
3889 if (m_constraints->right.GetOtherWindow() && (m_constraints->right.GetOtherWindow() != this))
3890 m_constraints->right.GetOtherWindow()->AddConstraintReference((wxWindow *)this);
3891 if (m_constraints->bottom.GetOtherWindow() && (m_constraints->bottom.GetOtherWindow() != this))
3892 m_constraints->bottom.GetOtherWindow()->AddConstraintReference((wxWindow *)this);
3893 if (m_constraints->width.GetOtherWindow() && (m_constraints->width.GetOtherWindow() != this))
3894 m_constraints->width.GetOtherWindow()->AddConstraintReference((wxWindow *)this);
3895 if (m_constraints->height.GetOtherWindow() && (m_constraints->height.GetOtherWindow() != this))
3896 m_constraints->height.GetOtherWindow()->AddConstraintReference((wxWindow *)this);
3897 if (m_constraints->centreX.GetOtherWindow() && (m_constraints->centreX.GetOtherWindow() != this))
3898 m_constraints->centreX.GetOtherWindow()->AddConstraintReference((wxWindow *)this);
3899 if (m_constraints->centreY.GetOtherWindow() && (m_constraints->centreY.GetOtherWindow() != this))
3900 m_constraints->centreY.GetOtherWindow()->AddConstraintReference((wxWindow *)this);
3901 }
3902 }
3903
3904 // This removes any dangling pointers to this window
3905 // in other windows' constraintsInvolvedIn lists.
3906 void wxWindow::UnsetConstraints(wxLayoutConstraints *c)
3907 {
3908 if (c)
3909 {
3910 if (c->left.GetOtherWindow() && (c->top.GetOtherWindow() != this))
3911 c->left.GetOtherWindow()->RemoveConstraintReference((wxWindow *)this);
3912 if (c->top.GetOtherWindow() && (c->top.GetOtherWindow() != this))
3913 c->top.GetOtherWindow()->RemoveConstraintReference((wxWindow *)this);
3914 if (c->right.GetOtherWindow() && (c->right.GetOtherWindow() != this))
3915 c->right.GetOtherWindow()->RemoveConstraintReference((wxWindow *)this);
3916 if (c->bottom.GetOtherWindow() && (c->bottom.GetOtherWindow() != this))
3917 c->bottom.GetOtherWindow()->RemoveConstraintReference((wxWindow *)this);
3918 if (c->width.GetOtherWindow() && (c->width.GetOtherWindow() != this))
3919 c->width.GetOtherWindow()->RemoveConstraintReference((wxWindow *)this);
3920 if (c->height.GetOtherWindow() && (c->height.GetOtherWindow() != this))
3921 c->height.GetOtherWindow()->RemoveConstraintReference((wxWindow *)this);
3922 if (c->centreX.GetOtherWindow() && (c->centreX.GetOtherWindow() != this))
3923 c->centreX.GetOtherWindow()->RemoveConstraintReference((wxWindow *)this);
3924 if (c->centreY.GetOtherWindow() && (c->centreY.GetOtherWindow() != this))
3925 c->centreY.GetOtherWindow()->RemoveConstraintReference((wxWindow *)this);
3926 }
3927 }
3928
3929 // Back-pointer to other windows we're involved with, so if we delete
3930 // this window, we must delete any constraints we're involved with.
3931 void wxWindow::AddConstraintReference(wxWindow *otherWin)
3932 {
3933 if (!m_constraintsInvolvedIn)
3934 m_constraintsInvolvedIn = new wxList;
3935 if (!m_constraintsInvolvedIn->Member(otherWin))
3936 m_constraintsInvolvedIn->Append(otherWin);
3937 }
3938
3939 // REMOVE back-pointer to other windows we're involved with.
3940 void wxWindow::RemoveConstraintReference(wxWindow *otherWin)
3941 {
3942 if (m_constraintsInvolvedIn)
3943 m_constraintsInvolvedIn->DeleteObject(otherWin);
3944 }
3945
3946 // Reset any constraints that mention this window
3947 void wxWindow::DeleteRelatedConstraints()
3948 {
3949 if (m_constraintsInvolvedIn)
3950 {
3951 wxNode *node = m_constraintsInvolvedIn->First();
3952 while (node)
3953 {
3954 wxWindow *win = (wxWindow *)node->Data();
3955 wxNode *next = node->Next();
3956 wxLayoutConstraints *constr = win->GetConstraints();
3957
3958 // Reset any constraints involving this window
3959 if (constr)
3960 {
3961 constr->left.ResetIfWin((wxWindow *)this);
3962 constr->top.ResetIfWin((wxWindow *)this);
3963 constr->right.ResetIfWin((wxWindow *)this);
3964 constr->bottom.ResetIfWin((wxWindow *)this);
3965 constr->width.ResetIfWin((wxWindow *)this);
3966 constr->height.ResetIfWin((wxWindow *)this);
3967 constr->centreX.ResetIfWin((wxWindow *)this);
3968 constr->centreY.ResetIfWin((wxWindow *)this);
3969 }
3970 delete node;
3971 node = next;
3972 }
3973 delete m_constraintsInvolvedIn;
3974 m_constraintsInvolvedIn = NULL;
3975 }
3976 }
3977
3978 void wxWindow::SetSizer(wxSizer *sizer)
3979 {
3980 m_windowSizer = sizer;
3981 if (sizer)
3982 sizer->SetSizerParent((wxWindow *)this);
3983 }
3984
3985 /*
3986 * New version
3987 */
3988
3989 bool wxWindow::Layout()
3990 {
3991 if (GetConstraints())
3992 {
3993 int w, h;
3994 GetClientSize(&w, &h);
3995 GetConstraints()->width.SetValue(w);
3996 GetConstraints()->height.SetValue(h);
3997 }
3998
3999 // If top level (one sizer), evaluate the sizer's constraints.
4000 if (GetSizer())
4001 {
4002 int noChanges;
4003 GetSizer()->ResetConstraints(); // Mark all constraints as unevaluated
4004 GetSizer()->LayoutPhase1(&noChanges);
4005 GetSizer()->LayoutPhase2(&noChanges);
4006 GetSizer()->SetConstraintSizes(); // Recursively set the real window sizes
4007 return TRUE;
4008 }
4009 else
4010 {
4011 // Otherwise, evaluate child constraints
4012 ResetConstraints(); // Mark all constraints as unevaluated
4013 DoPhase(1); // Just one phase need if no sizers involved
4014 DoPhase(2);
4015 SetConstraintSizes(); // Recursively set the real window sizes
4016 }
4017 return TRUE;
4018 }
4019
4020
4021 // Do a phase of evaluating constraints:
4022 // the default behaviour. wxSizers may do a similar
4023 // thing, but also impose their own 'constraints'
4024 // and order the evaluation differently.
4025 bool wxWindow::LayoutPhase1(int *noChanges)
4026 {
4027 wxLayoutConstraints *constr = GetConstraints();
4028 if (constr)
4029 {
4030 return constr->SatisfyConstraints((wxWindow *)this, noChanges);
4031 }
4032 else
4033 return TRUE;
4034 }
4035
4036 bool wxWindow::LayoutPhase2(int *noChanges)
4037 {
4038 *noChanges = 0;
4039
4040 // Layout children
4041 DoPhase(1);
4042 DoPhase(2);
4043 return TRUE;
4044 }
4045
4046 // Do a phase of evaluating child constraints
4047 bool wxWindow::DoPhase(int phase)
4048 {
4049 int noIterations = 0;
4050 int maxIterations = 500;
4051 int noChanges = 1;
4052 int noFailures = 0;
4053 wxList succeeded;
4054 while ((noChanges > 0) && (noIterations < maxIterations))
4055 {
4056 noChanges = 0;
4057 noFailures = 0;
4058 wxNode *node = GetChildren().First();
4059 while (node)
4060 {
4061 wxWindow *child = (wxWindow *)node->Data();
4062 if (!child->IsKindOf(CLASSINFO(wxFrame)) && !child->IsKindOf(CLASSINFO(wxDialog)))
4063 {
4064 wxLayoutConstraints *constr = child->GetConstraints();
4065 if (constr)
4066 {
4067 if (succeeded.Member(child))
4068 {
4069 }
4070 else
4071 {
4072 int tempNoChanges = 0;
4073 bool success = ( (phase == 1) ? child->LayoutPhase1(&tempNoChanges) : child->LayoutPhase2(&tempNoChanges) ) ;
4074 noChanges += tempNoChanges;
4075 if (success)
4076 {
4077 succeeded.Append(child);
4078 }
4079 }
4080 }
4081 }
4082 node = node->Next();
4083 }
4084 noIterations ++;
4085 }
4086 return TRUE;
4087 }
4088
4089 void wxWindow::ResetConstraints()
4090 {
4091 wxLayoutConstraints *constr = GetConstraints();
4092 if (constr)
4093 {
4094 constr->left.SetDone(FALSE);
4095 constr->top.SetDone(FALSE);
4096 constr->right.SetDone(FALSE);
4097 constr->bottom.SetDone(FALSE);
4098 constr->width.SetDone(FALSE);
4099 constr->height.SetDone(FALSE);
4100 constr->centreX.SetDone(FALSE);
4101 constr->centreY.SetDone(FALSE);
4102 }
4103 wxNode *node = GetChildren().First();
4104 while (node)
4105 {
4106 wxWindow *win = (wxWindow *)node->Data();
4107 if (!win->IsKindOf(CLASSINFO(wxFrame)) && !win->IsKindOf(CLASSINFO(wxDialog)))
4108 win->ResetConstraints();
4109 node = node->Next();
4110 }
4111 }
4112
4113 // Need to distinguish between setting the 'fake' size for
4114 // windows and sizers, and setting the real values.
4115 void wxWindow::SetConstraintSizes(bool recurse)
4116 {
4117 wxLayoutConstraints *constr = GetConstraints();
4118 if (constr && constr->left.GetDone() && constr->right.GetDone() &&
4119 constr->width.GetDone() && constr->height.GetDone())
4120 {
4121 int x = constr->left.GetValue();
4122 int y = constr->top.GetValue();
4123 int w = constr->width.GetValue();
4124 int h = constr->height.GetValue();
4125
4126 // If we don't want to resize this window, just move it...
4127 if ((constr->width.GetRelationship() != wxAsIs) ||
4128 (constr->height.GetRelationship() != wxAsIs))
4129 {
4130 // Calls Layout() recursively. AAAGH. How can we stop that.
4131 // Simply take Layout() out of non-top level OnSizes.
4132 SizerSetSize(x, y, w, h);
4133 }
4134 else
4135 {
4136 SizerMove(x, y);
4137 }
4138 }
4139 else if (constr)
4140 {
4141 char *windowClass = this->GetClassInfo()->GetClassName();
4142
4143 wxString winName;
4144 if (GetName() == "")
4145 winName = "unnamed";
4146 else
4147 winName = GetName();
4148 wxLogDebug("Constraint(s) not satisfied for window of type %s, name %s:",
4149 (const char *)windowClass, (const char *)winName);
4150 if (!constr->left.GetDone())
4151 wxLogDebug(" unsatisfied 'left' constraint.");
4152 if (!constr->right.GetDone())
4153 wxLogDebug(" unsatisfied 'right' constraint.");
4154 if (!constr->width.GetDone())
4155 wxLogDebug(" unsatisfied 'width' constraint.");
4156 if (!constr->height.GetDone())
4157 wxLogDebug(" unsatisfied 'height' constraint.");
4158 wxLogDebug("Please check constraints: try adding AsIs() constraints.\n");
4159 }
4160
4161 if (recurse)
4162 {
4163 wxNode *node = GetChildren().First();
4164 while (node)
4165 {
4166 wxWindow *win = (wxWindow *)node->Data();
4167 if (!win->IsKindOf(CLASSINFO(wxFrame)) && !win->IsKindOf(CLASSINFO(wxDialog)))
4168 win->SetConstraintSizes();
4169 node = node->Next();
4170 }
4171 }
4172 }
4173
4174 // This assumes that all sizers are 'on' the same
4175 // window, i.e. the parent of this window.
4176 void wxWindow::TransformSizerToActual(int *x, int *y) const
4177 {
4178 if (!m_sizerParent || m_sizerParent->IsKindOf(CLASSINFO(wxDialog)) ||
4179 m_sizerParent->IsKindOf(CLASSINFO(wxFrame)) )
4180 return;
4181
4182 int xp, yp;
4183 m_sizerParent->GetPosition(&xp, &yp);
4184 m_sizerParent->TransformSizerToActual(&xp, &yp);
4185 *x += xp;
4186 *y += yp;
4187 }
4188
4189 void wxWindow::SizerSetSize(int x, int y, int w, int h)
4190 {
4191 int xx = x;
4192 int yy = y;
4193 TransformSizerToActual(&xx, &yy);
4194 SetSize(xx, yy, w, h);
4195 }
4196
4197 void wxWindow::SizerMove(int x, int y)
4198 {
4199 int xx = x;
4200 int yy = y;
4201 TransformSizerToActual(&xx, &yy);
4202 Move(xx, yy);
4203 }
4204
4205 // Only set the size/position of the constraint (if any)
4206 void wxWindow::SetSizeConstraint(int x, int y, int w, int h)
4207 {
4208 wxLayoutConstraints *constr = GetConstraints();
4209 if (constr)
4210 {
4211 if (x != -1)
4212 {
4213 constr->left.SetValue(x);
4214 constr->left.SetDone(TRUE);
4215 }
4216 if (y != -1)
4217 {
4218 constr->top.SetValue(y);
4219 constr->top.SetDone(TRUE);
4220 }
4221 if (w != -1)
4222 {
4223 constr->width.SetValue(w);
4224 constr->width.SetDone(TRUE);
4225 }
4226 if (h != -1)
4227 {
4228 constr->height.SetValue(h);
4229 constr->height.SetDone(TRUE);
4230 }
4231 }
4232 }
4233
4234 void wxWindow::MoveConstraint(int x, int y)
4235 {
4236 wxLayoutConstraints *constr = GetConstraints();
4237 if (constr)
4238 {
4239 if (x != -1)
4240 {
4241 constr->left.SetValue(x);
4242 constr->left.SetDone(TRUE);
4243 }
4244 if (y != -1)
4245 {
4246 constr->top.SetValue(y);
4247 constr->top.SetDone(TRUE);
4248 }
4249 }
4250 }
4251
4252 void wxWindow::GetSizeConstraint(int *w, int *h) const
4253 {
4254 wxLayoutConstraints *constr = GetConstraints();
4255 if (constr)
4256 {
4257 *w = constr->width.GetValue();
4258 *h = constr->height.GetValue();
4259 }
4260 else
4261 GetSize(w, h);
4262 }
4263
4264 void wxWindow::GetClientSizeConstraint(int *w, int *h) const
4265 {
4266 wxLayoutConstraints *constr = GetConstraints();
4267 if (constr)
4268 {
4269 *w = constr->width.GetValue();
4270 *h = constr->height.GetValue();
4271 }
4272 else
4273 GetClientSize(w, h);
4274 }
4275
4276 void wxWindow::GetPositionConstraint(int *x, int *y) const
4277 {
4278 wxLayoutConstraints *constr = GetConstraints();
4279 if (constr)
4280 {
4281 *x = constr->left.GetValue();
4282 *y = constr->top.GetValue();
4283 }
4284 else
4285 GetPosition(x, y);
4286 }
4287
4288 bool wxWindow::Close(bool force)
4289 {
4290 wxCloseEvent event(wxEVT_CLOSE_WINDOW, m_windowId);
4291 event.SetEventObject(this);
4292 #if WXWIN_COMPATIBILITY
4293 event.SetForce(force);
4294 #endif
4295 event.SetCanVeto(!force);
4296
4297 return (GetEventHandler()->ProcessEvent(event) && !event.GetVeto());
4298 }
4299
4300 wxObject* wxWindow::GetChild(int number) const
4301 {
4302 // Return a pointer to the Nth object in the Panel
4303 // if (!GetChildren())
4304 // return(NULL) ;
4305 wxNode *node = GetChildren().First();
4306 int n = number;
4307 while (node && n--)
4308 node = node->Next() ;
4309 if (node)
4310 {
4311 wxObject *obj = (wxObject *)node->Data();
4312 return(obj) ;
4313 }
4314 else
4315 return NULL ;
4316 }
4317
4318 void wxWindow::OnDefaultAction(wxControl *initiatingItem)
4319 {
4320 /* This is obsolete now; if we wish to intercept listbox double-clicks,
4321 * we explicitly intercept the wxEVT_COMMAND_LISTBOX_DOUBLECLICKED
4322 * event.
4323
4324 if (initiatingItem->IsKindOf(CLASSINFO(wxListBox)))
4325 {
4326 wxListBox *lbox = (wxListBox *)initiatingItem;
4327 wxCommandEvent event(wxEVT_COMMAND_LEFT_DCLICK);
4328 event.m_commandInt = -1;
4329 if ((lbox->GetWindowStyleFlag() & wxLB_MULTIPLE) == 0)
4330 {
4331 event.m_commandString = copystring(lbox->GetStringSelection());
4332 event.m_commandInt = lbox->GetSelection();
4333 event.m_clientData = lbox->wxListBox::GetClientData(event.m_commandInt);
4334 }
4335 event.m_eventObject = lbox;
4336
4337 lbox->ProcessCommand(event);
4338
4339 if (event.m_commandString)
4340 delete[] event.m_commandString;
4341 return;
4342 }
4343
4344 wxButton *but = GetDefaultItem();
4345 if (but)
4346 {
4347 wxCommandEvent event(wxEVT_COMMAND_BUTTON_CLICKED);
4348 event.SetEventObject(but);
4349 but->Command(event);
4350 }
4351 */
4352 }
4353
4354 void wxWindow::Clear()
4355 {
4356 wxClientDC dc(this);
4357 wxBrush brush(GetBackgroundColour(), wxSOLID);
4358 dc.SetBackground(brush);
4359 dc.Clear();
4360 }
4361
4362 // Fits the panel around the items
4363 void wxWindow::Fit()
4364 {
4365 int maxX = 0;
4366 int maxY = 0;
4367 wxNode *node = GetChildren().First();
4368 while ( node )
4369 {
4370 wxWindow *win = (wxWindow *)node->Data();
4371 int wx, wy, ww, wh;
4372 win->GetPosition(&wx, &wy);
4373 win->GetSize(&ww, &wh);
4374 if ( wx + ww > maxX )
4375 maxX = wx + ww;
4376 if ( wy + wh > maxY )
4377 maxY = wy + wh;
4378
4379 node = node->Next();
4380 }
4381 SetClientSize(maxX + 5, maxY + 5);
4382 }
4383
4384 void wxWindow::SetValidator(const wxValidator& validator)
4385 {
4386 if ( m_windowValidator )
4387 delete m_windowValidator;
4388 m_windowValidator = validator.Clone();
4389
4390 if ( m_windowValidator )
4391 m_windowValidator->SetWindow(this) ;
4392 }
4393
4394 // Find a window by id or name
4395 wxWindow *wxWindow::FindWindow(long id)
4396 {
4397 if ( GetId() == id)
4398 return this;
4399
4400 wxNode *node = GetChildren().First();
4401 while ( node )
4402 {
4403 wxWindow *child = (wxWindow *)node->Data();
4404 wxWindow *found = child->FindWindow(id);
4405 if ( found )
4406 return found;
4407 node = node->Next();
4408 }
4409 return NULL;
4410 }
4411
4412 wxWindow *wxWindow::FindWindow(const wxString& name)
4413 {
4414 if ( GetName() == name)
4415 return this;
4416
4417 wxNode *node = GetChildren().First();
4418 while ( node )
4419 {
4420 wxWindow *child = (wxWindow *)node->Data();
4421 wxWindow *found = child->FindWindow(name);
4422 if ( found )
4423 return found;
4424 node = node->Next();
4425 }
4426 return NULL;
4427 }
4428
4429 /* TODO
4430 // Default input behaviour for a scrolling canvas should be to scroll
4431 // according to the cursor keys pressed
4432 void wxWindow::OnChar(wxKeyEvent& event)
4433 {
4434 int x_page = 0;
4435 int y_page = 0;
4436 int start_x = 0;
4437 int start_y = 0;
4438 // Bugfix Begin
4439 int v_width = 0;
4440 int v_height = 0;
4441 int y_pages = 0;
4442 // Bugfix End
4443
4444 GetScrollUnitsPerPage(&x_page, &y_page);
4445 // Bugfix Begin
4446 GetVirtualSize(&v_width,&v_height);
4447 // Bugfix End
4448 ViewStart(&start_x, &start_y);
4449 // Bugfix begin
4450 if (vert_units)
4451 y_pages = (int)(v_height/vert_units) - y_page;
4452
4453 #ifdef __WXMSW__
4454 int y = 0;
4455 #else
4456 int y = y_page-1;
4457 #endif
4458 // Bugfix End
4459 switch (event.keyCode)
4460 {
4461 case WXK_PRIOR:
4462 {
4463 // BugFix Begin
4464 if (y_page > 0)
4465 {
4466 if (start_y - y_page > 0)
4467 Scroll(start_x, start_y - y_page);
4468 else
4469 Scroll(start_x, 0);
4470 }
4471 // Bugfix End
4472 break;
4473 }
4474 case WXK_NEXT:
4475 {
4476 // Bugfix Begin
4477 if ((y_page > 0) && (start_y <= y_pages-y-1))
4478 {
4479 if (y_pages + y < start_y + y_page)
4480 Scroll(start_x, y_pages + y);
4481 else
4482 Scroll(start_x, start_y + y_page);
4483 }
4484 // Bugfix End
4485 break;
4486 }
4487 case WXK_UP:
4488 {
4489 if ((y_page > 0) && (start_y >= 1))
4490 Scroll(start_x, start_y - 1);
4491 break;
4492 }
4493 case WXK_DOWN:
4494 {
4495 // Bugfix Begin
4496 if ((y_page > 0) && (start_y <= y_pages-y-1))
4497 // Bugfix End
4498 {
4499 Scroll(start_x, start_y + 1);
4500 }
4501 break;
4502 }
4503 case WXK_LEFT:
4504 {
4505 if ((x_page > 0) && (start_x >= 1))
4506 Scroll(start_x - 1, start_y);
4507 break;
4508 }
4509 case WXK_RIGHT:
4510 {
4511 if (x_page > 0)
4512 Scroll(start_x + 1, start_y);
4513 break;
4514 }
4515 case WXK_HOME:
4516 {
4517 Scroll(0, 0);
4518 break;
4519 }
4520 // This is new
4521 case WXK_END:
4522 {
4523 Scroll(start_x, y_pages+y);
4524 break;
4525 }
4526 // end
4527 }
4528 }
4529 */
4530
4531 // Setup background and foreground colours correctly
4532 void wxWindow::SetupColours()
4533 {
4534 if (GetParent())
4535 SetBackgroundColour(GetParent()->GetBackgroundColour());
4536 }
4537
4538 void wxWindow::OnIdle(wxIdleEvent& event)
4539 {
4540 // Check if we need to send a LEAVE event
4541 if (m_mouseInWindow)
4542 {
4543 POINT pt;
4544 ::GetCursorPos(&pt);
4545 if (::WindowFromPoint(pt) != (HWND) GetHWND())
4546 {
4547 // Generate a LEAVE event
4548 m_mouseInWindow = FALSE;
4549
4550 int state = 0;
4551 if (::GetKeyState(VK_SHIFT) != 0)
4552 state |= MK_SHIFT;
4553 if (::GetKeyState(VK_CONTROL) != 0)
4554 state |= MK_CONTROL;
4555
4556 // Unfortunately the mouse button and keyboard state may have changed
4557 // by the time the OnIdle function is called, so 'state' may be
4558 // meaningless.
4559
4560 MSWOnMouseLeave(pt.x, pt.y, state);
4561 }
4562 }
4563 UpdateWindowUI();
4564 }
4565
4566 // Raise the window to the top of the Z order
4567 void wxWindow::Raise()
4568 {
4569 ::BringWindowToTop((HWND) GetHWND());
4570 }
4571
4572 // Lower the window to the bottom of the Z order
4573 void wxWindow::Lower()
4574 {
4575 ::SetWindowPos((HWND) GetHWND(), HWND_BOTTOM, 0, 0, 0, 0, SWP_NOMOVE|SWP_NOSIZE|SWP_NOACTIVATE);
4576 }
4577
4578 long wxWindow::MSWGetDlgCode()
4579 {
4580 // default: just forward to def window proc (the msg has no parameters)
4581 return MSWDefWindowProc(WM_GETDLGCODE, 0, 0);
4582 }
4583
4584 bool wxWindow::AcceptsFocus() const
4585 {
4586 // invisible and disabled controls don't need focus
4587 return IsShown() && IsEnabled();
4588 }
4589
4590 // Update region access
4591 wxRegion wxWindow::GetUpdateRegion() const
4592 {
4593 return m_updateRegion;
4594 }
4595
4596 bool wxWindow::IsExposed(int x, int y, int w, int h) const
4597 {
4598 return (m_updateRegion.Contains(x, y, w, h) != wxOutRegion);
4599 }
4600
4601 bool wxWindow::IsExposed(const wxPoint& pt) const
4602 {
4603 return (m_updateRegion.Contains(pt) != wxOutRegion);
4604 }
4605
4606 bool wxWindow::IsExposed(const wxRect& rect) const
4607 {
4608 return (m_updateRegion.Contains(rect) != wxOutRegion);
4609 }
4610
4611 // Set this window to be the child of 'parent'.
4612 bool wxWindow::Reparent(wxWindow *parent)
4613 {
4614 if (parent == GetParent())
4615 return TRUE;
4616
4617 // Unlink this window from the existing parent.
4618 if (GetParent())
4619 {
4620 GetParent()->RemoveChild(this);
4621 }
4622 else
4623 wxTopLevelWindows.DeleteObject(this);
4624
4625 HWND hWndParent = 0;
4626 HWND hWndChild = (HWND) GetHWND();
4627 if (parent != (wxWindow*) NULL)
4628 {
4629 parent->AddChild(this);
4630 hWndParent = (HWND) parent->GetHWND();
4631 }
4632 else
4633 wxTopLevelWindows.Append(this);
4634
4635 ::SetParent(hWndChild, hWndParent);
4636
4637 return TRUE;
4638 }
4639
4640 #ifdef __WXDEBUG__
4641 const char *wxGetMessageName(int message)
4642 {
4643 switch ( message ) {
4644 case 0x0000: return "WM_NULL";
4645 case 0x0001: return "WM_CREATE";
4646 case 0x0002: return "WM_DESTROY";
4647 case 0x0003: return "WM_MOVE";
4648 case 0x0005: return "WM_SIZE";
4649 case 0x0006: return "WM_ACTIVATE";
4650 case 0x0007: return "WM_SETFOCUS";
4651 case 0x0008: return "WM_KILLFOCUS";
4652 case 0x000A: return "WM_ENABLE";
4653 case 0x000B: return "WM_SETREDRAW";
4654 case 0x000C: return "WM_SETTEXT";
4655 case 0x000D: return "WM_GETTEXT";
4656 case 0x000E: return "WM_GETTEXTLENGTH";
4657 case 0x000F: return "WM_PAINT";
4658 case 0x0010: return "WM_CLOSE";
4659 case 0x0011: return "WM_QUERYENDSESSION";
4660 case 0x0012: return "WM_QUIT";
4661 case 0x0013: return "WM_QUERYOPEN";
4662 case 0x0014: return "WM_ERASEBKGND";
4663 case 0x0015: return "WM_SYSCOLORCHANGE";
4664 case 0x0016: return "WM_ENDSESSION";
4665 case 0x0017: return "WM_SYSTEMERROR";
4666 case 0x0018: return "WM_SHOWWINDOW";
4667 case 0x0019: return "WM_CTLCOLOR";
4668 case 0x001A: return "WM_WININICHANGE";
4669 case 0x001B: return "WM_DEVMODECHANGE";
4670 case 0x001C: return "WM_ACTIVATEAPP";
4671 case 0x001D: return "WM_FONTCHANGE";
4672 case 0x001E: return "WM_TIMECHANGE";
4673 case 0x001F: return "WM_CANCELMODE";
4674 case 0x0020: return "WM_SETCURSOR";
4675 case 0x0021: return "WM_MOUSEACTIVATE";
4676 case 0x0022: return "WM_CHILDACTIVATE";
4677 case 0x0023: return "WM_QUEUESYNC";
4678 case 0x0024: return "WM_GETMINMAXINFO";
4679 case 0x0026: return "WM_PAINTICON";
4680 case 0x0027: return "WM_ICONERASEBKGND";
4681 case 0x0028: return "WM_NEXTDLGCTL";
4682 case 0x002A: return "WM_SPOOLERSTATUS";
4683 case 0x002B: return "WM_DRAWITEM";
4684 case 0x002C: return "WM_MEASUREITEM";
4685 case 0x002D: return "WM_DELETEITEM";
4686 case 0x002E: return "WM_VKEYTOITEM";
4687 case 0x002F: return "WM_CHARTOITEM";
4688 case 0x0030: return "WM_SETFONT";
4689 case 0x0031: return "WM_GETFONT";
4690 case 0x0037: return "WM_QUERYDRAGICON";
4691 case 0x0039: return "WM_COMPAREITEM";
4692 case 0x0041: return "WM_COMPACTING";
4693 case 0x0044: return "WM_COMMNOTIFY";
4694 case 0x0046: return "WM_WINDOWPOSCHANGING";
4695 case 0x0047: return "WM_WINDOWPOSCHANGED";
4696 case 0x0048: return "WM_POWER";
4697
4698 #ifdef __WIN32__
4699 case 0x004A: return "WM_COPYDATA";
4700 case 0x004B: return "WM_CANCELJOURNAL";
4701 case 0x004E: return "WM_NOTIFY";
4702 case 0x0050: return "WM_INPUTLANGCHANGEREQUEST";
4703 case 0x0051: return "WM_INPUTLANGCHANGE";
4704 case 0x0052: return "WM_TCARD";
4705 case 0x0053: return "WM_HELP";
4706 case 0x0054: return "WM_USERCHANGED";
4707 case 0x0055: return "WM_NOTIFYFORMAT";
4708 case 0x007B: return "WM_CONTEXTMENU";
4709 case 0x007C: return "WM_STYLECHANGING";
4710 case 0x007D: return "WM_STYLECHANGED";
4711 case 0x007E: return "WM_DISPLAYCHANGE";
4712 case 0x007F: return "WM_GETICON";
4713 case 0x0080: return "WM_SETICON";
4714 #endif //WIN32
4715
4716 case 0x0081: return "WM_NCCREATE";
4717 case 0x0082: return "WM_NCDESTROY";
4718 case 0x0083: return "WM_NCCALCSIZE";
4719 case 0x0084: return "WM_NCHITTEST";
4720 case 0x0085: return "WM_NCPAINT";
4721 case 0x0086: return "WM_NCACTIVATE";
4722 case 0x0087: return "WM_GETDLGCODE";
4723 case 0x00A0: return "WM_NCMOUSEMOVE";
4724 case 0x00A1: return "WM_NCLBUTTONDOWN";
4725 case 0x00A2: return "WM_NCLBUTTONUP";
4726 case 0x00A3: return "WM_NCLBUTTONDBLCLK";
4727 case 0x00A4: return "WM_NCRBUTTONDOWN";
4728 case 0x00A5: return "WM_NCRBUTTONUP";
4729 case 0x00A6: return "WM_NCRBUTTONDBLCLK";
4730 case 0x00A7: return "WM_NCMBUTTONDOWN";
4731 case 0x00A8: return "WM_NCMBUTTONUP";
4732 case 0x00A9: return "WM_NCMBUTTONDBLCLK";
4733 case 0x0100: return "WM_KEYDOWN";
4734 case 0x0101: return "WM_KEYUP";
4735 case 0x0102: return "WM_CHAR";
4736 case 0x0103: return "WM_DEADCHAR";
4737 case 0x0104: return "WM_SYSKEYDOWN";
4738 case 0x0105: return "WM_SYSKEYUP";
4739 case 0x0106: return "WM_SYSCHAR";
4740 case 0x0107: return "WM_SYSDEADCHAR";
4741 case 0x0108: return "WM_KEYLAST";
4742
4743 #ifdef __WIN32__
4744 case 0x010D: return "WM_IME_STARTCOMPOSITION";
4745 case 0x010E: return "WM_IME_ENDCOMPOSITION";
4746 case 0x010F: return "WM_IME_COMPOSITION";
4747 #endif //WIN32
4748
4749 case 0x0110: return "WM_INITDIALOG";
4750 case 0x0111: return "WM_COMMAND";
4751 case 0x0112: return "WM_SYSCOMMAND";
4752 case 0x0113: return "WM_TIMER";
4753 case 0x0114: return "WM_HSCROLL";
4754 case 0x0115: return "WM_VSCROLL";
4755 case 0x0116: return "WM_INITMENU";
4756 case 0x0117: return "WM_INITMENUPOPUP";
4757 case 0x011F: return "WM_MENUSELECT";
4758 case 0x0120: return "WM_MENUCHAR";
4759 case 0x0121: return "WM_ENTERIDLE";
4760 case 0x0200: return "WM_MOUSEMOVE";
4761 case 0x0201: return "WM_LBUTTONDOWN";
4762 case 0x0202: return "WM_LBUTTONUP";
4763 case 0x0203: return "WM_LBUTTONDBLCLK";
4764 case 0x0204: return "WM_RBUTTONDOWN";
4765 case 0x0205: return "WM_RBUTTONUP";
4766 case 0x0206: return "WM_RBUTTONDBLCLK";
4767 case 0x0207: return "WM_MBUTTONDOWN";
4768 case 0x0208: return "WM_MBUTTONUP";
4769 case 0x0209: return "WM_MBUTTONDBLCLK";
4770 case 0x0210: return "WM_PARENTNOTIFY";
4771 case 0x0211: return "WM_ENTERMENULOOP";
4772 case 0x0212: return "WM_EXITMENULOOP";
4773
4774 #ifdef __WIN32__
4775 case 0x0213: return "WM_NEXTMENU";
4776 case 0x0214: return "WM_SIZING";
4777 case 0x0215: return "WM_CAPTURECHANGED";
4778 case 0x0216: return "WM_MOVING";
4779 case 0x0218: return "WM_POWERBROADCAST";
4780 case 0x0219: return "WM_DEVICECHANGE";
4781 #endif //WIN32
4782
4783 case 0x0220: return "WM_MDICREATE";
4784 case 0x0221: return "WM_MDIDESTROY";
4785 case 0x0222: return "WM_MDIACTIVATE";
4786 case 0x0223: return "WM_MDIRESTORE";
4787 case 0x0224: return "WM_MDINEXT";
4788 case 0x0225: return "WM_MDIMAXIMIZE";
4789 case 0x0226: return "WM_MDITILE";
4790 case 0x0227: return "WM_MDICASCADE";
4791 case 0x0228: return "WM_MDIICONARRANGE";
4792 case 0x0229: return "WM_MDIGETACTIVE";
4793 case 0x0230: return "WM_MDISETMENU";
4794 case 0x0233: return "WM_DROPFILES";
4795
4796 #ifdef __WIN32__
4797 case 0x0281: return "WM_IME_SETCONTEXT";
4798 case 0x0282: return "WM_IME_NOTIFY";
4799 case 0x0283: return "WM_IME_CONTROL";
4800 case 0x0284: return "WM_IME_COMPOSITIONFULL";
4801 case 0x0285: return "WM_IME_SELECT";
4802 case 0x0286: return "WM_IME_CHAR";
4803 case 0x0290: return "WM_IME_KEYDOWN";
4804 case 0x0291: return "WM_IME_KEYUP";
4805 #endif //WIN32
4806
4807 case 0x0300: return "WM_CUT";
4808 case 0x0301: return "WM_COPY";
4809 case 0x0302: return "WM_PASTE";
4810 case 0x0303: return "WM_CLEAR";
4811 case 0x0304: return "WM_UNDO";
4812 case 0x0305: return "WM_RENDERFORMAT";
4813 case 0x0306: return "WM_RENDERALLFORMATS";
4814 case 0x0307: return "WM_DESTROYCLIPBOARD";
4815 case 0x0308: return "WM_DRAWCLIPBOARD";
4816 case 0x0309: return "WM_PAINTCLIPBOARD";
4817 case 0x030A: return "WM_VSCROLLCLIPBOARD";
4818 case 0x030B: return "WM_SIZECLIPBOARD";
4819 case 0x030C: return "WM_ASKCBFORMATNAME";
4820 case 0x030D: return "WM_CHANGECBCHAIN";
4821 case 0x030E: return "WM_HSCROLLCLIPBOARD";
4822 case 0x030F: return "WM_QUERYNEWPALETTE";
4823 case 0x0310: return "WM_PALETTEISCHANGING";
4824 case 0x0311: return "WM_PALETTECHANGED";
4825
4826 #ifdef __WIN32__
4827 // common controls messages - although they're not strictly speaking
4828 // standard, it's nice to decode them nevertheless
4829
4830 // listview
4831 case 0x1000 + 0: return "LVM_GETBKCOLOR";
4832 case 0x1000 + 1: return "LVM_SETBKCOLOR";
4833 case 0x1000 + 2: return "LVM_GETIMAGELIST";
4834 case 0x1000 + 3: return "LVM_SETIMAGELIST";
4835 case 0x1000 + 4: return "LVM_GETITEMCOUNT";
4836 case 0x1000 + 5: return "LVM_GETITEMA";
4837 case 0x1000 + 75: return "LVM_GETITEMW";
4838 case 0x1000 + 6: return "LVM_SETITEMA";
4839 case 0x1000 + 76: return "LVM_SETITEMW";
4840 case 0x1000 + 7: return "LVM_INSERTITEMA";
4841 case 0x1000 + 77: return "LVM_INSERTITEMW";
4842 case 0x1000 + 8: return "LVM_DELETEITEM";
4843 case 0x1000 + 9: return "LVM_DELETEALLITEMS";
4844 case 0x1000 + 10: return "LVM_GETCALLBACKMASK";
4845 case 0x1000 + 11: return "LVM_SETCALLBACKMASK";
4846 case 0x1000 + 12: return "LVM_GETNEXTITEM";
4847 case 0x1000 + 13: return "LVM_FINDITEMA";
4848 case 0x1000 + 83: return "LVM_FINDITEMW";
4849 case 0x1000 + 14: return "LVM_GETITEMRECT";
4850 case 0x1000 + 15: return "LVM_SETITEMPOSITION";
4851 case 0x1000 + 16: return "LVM_GETITEMPOSITION";
4852 case 0x1000 + 17: return "LVM_GETSTRINGWIDTHA";
4853 case 0x1000 + 87: return "LVM_GETSTRINGWIDTHW";
4854 case 0x1000 + 18: return "LVM_HITTEST";
4855 case 0x1000 + 19: return "LVM_ENSUREVISIBLE";
4856 case 0x1000 + 20: return "LVM_SCROLL";
4857 case 0x1000 + 21: return "LVM_REDRAWITEMS";
4858 case 0x1000 + 22: return "LVM_ARRANGE";
4859 case 0x1000 + 23: return "LVM_EDITLABELA";
4860 case 0x1000 + 118: return "LVM_EDITLABELW";
4861 case 0x1000 + 24: return "LVM_GETEDITCONTROL";
4862 case 0x1000 + 25: return "LVM_GETCOLUMNA";
4863 case 0x1000 + 95: return "LVM_GETCOLUMNW";
4864 case 0x1000 + 26: return "LVM_SETCOLUMNA";
4865 case 0x1000 + 96: return "LVM_SETCOLUMNW";
4866 case 0x1000 + 27: return "LVM_INSERTCOLUMNA";
4867 case 0x1000 + 97: return "LVM_INSERTCOLUMNW";
4868 case 0x1000 + 28: return "LVM_DELETECOLUMN";
4869 case 0x1000 + 29: return "LVM_GETCOLUMNWIDTH";
4870 case 0x1000 + 30: return "LVM_SETCOLUMNWIDTH";
4871 case 0x1000 + 31: return "LVM_GETHEADER";
4872 case 0x1000 + 33: return "LVM_CREATEDRAGIMAGE";
4873 case 0x1000 + 34: return "LVM_GETVIEWRECT";
4874 case 0x1000 + 35: return "LVM_GETTEXTCOLOR";
4875 case 0x1000 + 36: return "LVM_SETTEXTCOLOR";
4876 case 0x1000 + 37: return "LVM_GETTEXTBKCOLOR";
4877 case 0x1000 + 38: return "LVM_SETTEXTBKCOLOR";
4878 case 0x1000 + 39: return "LVM_GETTOPINDEX";
4879 case 0x1000 + 40: return "LVM_GETCOUNTPERPAGE";
4880 case 0x1000 + 41: return "LVM_GETORIGIN";
4881 case 0x1000 + 42: return "LVM_UPDATE";
4882 case 0x1000 + 43: return "LVM_SETITEMSTATE";
4883 case 0x1000 + 44: return "LVM_GETITEMSTATE";
4884 case 0x1000 + 45: return "LVM_GETITEMTEXTA";
4885 case 0x1000 + 115: return "LVM_GETITEMTEXTW";
4886 case 0x1000 + 46: return "LVM_SETITEMTEXTA";
4887 case 0x1000 + 116: return "LVM_SETITEMTEXTW";
4888 case 0x1000 + 47: return "LVM_SETITEMCOUNT";
4889 case 0x1000 + 48: return "LVM_SORTITEMS";
4890 case 0x1000 + 49: return "LVM_SETITEMPOSITION32";
4891 case 0x1000 + 50: return "LVM_GETSELECTEDCOUNT";
4892 case 0x1000 + 51: return "LVM_GETITEMSPACING";
4893 case 0x1000 + 52: return "LVM_GETISEARCHSTRINGA";
4894 case 0x1000 + 117: return "LVM_GETISEARCHSTRINGW";
4895 case 0x1000 + 53: return "LVM_SETICONSPACING";
4896 case 0x1000 + 54: return "LVM_SETEXTENDEDLISTVIEWSTYLE";
4897 case 0x1000 + 55: return "LVM_GETEXTENDEDLISTVIEWSTYLE";
4898 case 0x1000 + 56: return "LVM_GETSUBITEMRECT";
4899 case 0x1000 + 57: return "LVM_SUBITEMHITTEST";
4900 case 0x1000 + 58: return "LVM_SETCOLUMNORDERARRAY";
4901 case 0x1000 + 59: return "LVM_GETCOLUMNORDERARRAY";
4902 case 0x1000 + 60: return "LVM_SETHOTITEM";
4903 case 0x1000 + 61: return "LVM_GETHOTITEM";
4904 case 0x1000 + 62: return "LVM_SETHOTCURSOR";
4905 case 0x1000 + 63: return "LVM_GETHOTCURSOR";
4906 case 0x1000 + 64: return "LVM_APPROXIMATEVIEWRECT";
4907 case 0x1000 + 65: return "LVM_SETWORKAREA";
4908
4909 // tree view
4910 case 0x1100 + 0: return "TVM_INSERTITEMA";
4911 case 0x1100 + 50: return "TVM_INSERTITEMW";
4912 case 0x1100 + 1: return "TVM_DELETEITEM";
4913 case 0x1100 + 2: return "TVM_EXPAND";
4914 case 0x1100 + 4: return "TVM_GETITEMRECT";
4915 case 0x1100 + 5: return "TVM_GETCOUNT";
4916 case 0x1100 + 6: return "TVM_GETINDENT";
4917 case 0x1100 + 7: return "TVM_SETINDENT";
4918 case 0x1100 + 8: return "TVM_GETIMAGELIST";
4919 case 0x1100 + 9: return "TVM_SETIMAGELIST";
4920 case 0x1100 + 10: return "TVM_GETNEXTITEM";
4921 case 0x1100 + 11: return "TVM_SELECTITEM";
4922 case 0x1100 + 12: return "TVM_GETITEMA";
4923 case 0x1100 + 62: return "TVM_GETITEMW";
4924 case 0x1100 + 13: return "TVM_SETITEMA";
4925 case 0x1100 + 63: return "TVM_SETITEMW";
4926 case 0x1100 + 14: return "TVM_EDITLABELA";
4927 case 0x1100 + 65: return "TVM_EDITLABELW";
4928 case 0x1100 + 15: return "TVM_GETEDITCONTROL";
4929 case 0x1100 + 16: return "TVM_GETVISIBLECOUNT";
4930 case 0x1100 + 17: return "TVM_HITTEST";
4931 case 0x1100 + 18: return "TVM_CREATEDRAGIMAGE";
4932 case 0x1100 + 19: return "TVM_SORTCHILDREN";
4933 case 0x1100 + 20: return "TVM_ENSUREVISIBLE";
4934 case 0x1100 + 21: return "TVM_SORTCHILDRENCB";
4935 case 0x1100 + 22: return "TVM_ENDEDITLABELNOW";
4936 case 0x1100 + 23: return "TVM_GETISEARCHSTRINGA";
4937 case 0x1100 + 64: return "TVM_GETISEARCHSTRINGW";
4938 case 0x1100 + 24: return "TVM_SETTOOLTIPS";
4939 case 0x1100 + 25: return "TVM_GETTOOLTIPS";
4940
4941 // header
4942 case 0x1200 + 0: return "HDM_GETITEMCOUNT";
4943 case 0x1200 + 1: return "HDM_INSERTITEMA";
4944 case 0x1200 + 10: return "HDM_INSERTITEMW";
4945 case 0x1200 + 2: return "HDM_DELETEITEM";
4946 case 0x1200 + 3: return "HDM_GETITEMA";
4947 case 0x1200 + 11: return "HDM_GETITEMW";
4948 case 0x1200 + 4: return "HDM_SETITEMA";
4949 case 0x1200 + 12: return "HDM_SETITEMW";
4950 case 0x1200 + 5: return "HDM_LAYOUT";
4951 case 0x1200 + 6: return "HDM_HITTEST";
4952 case 0x1200 + 7: return "HDM_GETITEMRECT";
4953 case 0x1200 + 8: return "HDM_SETIMAGELIST";
4954 case 0x1200 + 9: return "HDM_GETIMAGELIST";
4955 case 0x1200 + 15: return "HDM_ORDERTOINDEX";
4956 case 0x1200 + 16: return "HDM_CREATEDRAGIMAGE";
4957 case 0x1200 + 17: return "HDM_GETORDERARRAY";
4958 case 0x1200 + 18: return "HDM_SETORDERARRAY";
4959 case 0x1200 + 19: return "HDM_SETHOTDIVIDER";
4960
4961 // tab control
4962 case 0x1300 + 2: return "TCM_GETIMAGELIST";
4963 case 0x1300 + 3: return "TCM_SETIMAGELIST";
4964 case 0x1300 + 4: return "TCM_GETITEMCOUNT";
4965 case 0x1300 + 5: return "TCM_GETITEMA";
4966 case 0x1300 + 60: return "TCM_GETITEMW";
4967 case 0x1300 + 6: return "TCM_SETITEMA";
4968 case 0x1300 + 61: return "TCM_SETITEMW";
4969 case 0x1300 + 7: return "TCM_INSERTITEMA";
4970 case 0x1300 + 62: return "TCM_INSERTITEMW";
4971 case 0x1300 + 8: return "TCM_DELETEITEM";
4972 case 0x1300 + 9: return "TCM_DELETEALLITEMS";
4973 case 0x1300 + 10: return "TCM_GETITEMRECT";
4974 case 0x1300 + 11: return "TCM_GETCURSEL";
4975 case 0x1300 + 12: return "TCM_SETCURSEL";
4976 case 0x1300 + 13: return "TCM_HITTEST";
4977 case 0x1300 + 14: return "TCM_SETITEMEXTRA";
4978 case 0x1300 + 40: return "TCM_ADJUSTRECT";
4979 case 0x1300 + 41: return "TCM_SETITEMSIZE";
4980 case 0x1300 + 42: return "TCM_REMOVEIMAGE";
4981 case 0x1300 + 43: return "TCM_SETPADDING";
4982 case 0x1300 + 44: return "TCM_GETROWCOUNT";
4983 case 0x1300 + 45: return "TCM_GETTOOLTIPS";
4984 case 0x1300 + 46: return "TCM_SETTOOLTIPS";
4985 case 0x1300 + 47: return "TCM_GETCURFOCUS";
4986 case 0x1300 + 48: return "TCM_SETCURFOCUS";
4987 case 0x1300 + 49: return "TCM_SETMINTABWIDTH";
4988 case 0x1300 + 50: return "TCM_DESELECTALL";
4989
4990 // toolbar
4991 case WM_USER+1: return "TB_ENABLEBUTTON";
4992 case WM_USER+2: return "TB_CHECKBUTTON";
4993 case WM_USER+3: return "TB_PRESSBUTTON";
4994 case WM_USER+4: return "TB_HIDEBUTTON";
4995 case WM_USER+5: return "TB_INDETERMINATE";
4996 case WM_USER+9: return "TB_ISBUTTONENABLED";
4997 case WM_USER+10: return "TB_ISBUTTONCHECKED";
4998 case WM_USER+11: return "TB_ISBUTTONPRESSED";
4999 case WM_USER+12: return "TB_ISBUTTONHIDDEN";
5000 case WM_USER+13: return "TB_ISBUTTONINDETERMINATE";
5001 case WM_USER+17: return "TB_SETSTATE";
5002 case WM_USER+18: return "TB_GETSTATE";
5003 case WM_USER+19: return "TB_ADDBITMAP";
5004 case WM_USER+20: return "TB_ADDBUTTONS";
5005 case WM_USER+21: return "TB_INSERTBUTTON";
5006 case WM_USER+22: return "TB_DELETEBUTTON";
5007 case WM_USER+23: return "TB_GETBUTTON";
5008 case WM_USER+24: return "TB_BUTTONCOUNT";
5009 case WM_USER+25: return "TB_COMMANDTOINDEX";
5010 case WM_USER+26: return "TB_SAVERESTOREA";
5011 case WM_USER+76: return "TB_SAVERESTOREW";
5012 case WM_USER+27: return "TB_CUSTOMIZE";
5013 case WM_USER+28: return "TB_ADDSTRINGA";
5014 case WM_USER+77: return "TB_ADDSTRINGW";
5015 case WM_USER+29: return "TB_GETITEMRECT";
5016 case WM_USER+30: return "TB_BUTTONSTRUCTSIZE";
5017 case WM_USER+31: return "TB_SETBUTTONSIZE";
5018 case WM_USER+32: return "TB_SETBITMAPSIZE";
5019 case WM_USER+33: return "TB_AUTOSIZE";
5020 case WM_USER+35: return "TB_GETTOOLTIPS";
5021 case WM_USER+36: return "TB_SETTOOLTIPS";
5022 case WM_USER+37: return "TB_SETPARENT";
5023 case WM_USER+39: return "TB_SETROWS";
5024 case WM_USER+40: return "TB_GETROWS";
5025 case WM_USER+42: return "TB_SETCMDID";
5026 case WM_USER+43: return "TB_CHANGEBITMAP";
5027 case WM_USER+44: return "TB_GETBITMAP";
5028 case WM_USER+45: return "TB_GETBUTTONTEXTA";
5029 case WM_USER+75: return "TB_GETBUTTONTEXTW";
5030 case WM_USER+46: return "TB_REPLACEBITMAP";
5031 case WM_USER+47: return "TB_SETINDENT";
5032 case WM_USER+48: return "TB_SETIMAGELIST";
5033 case WM_USER+49: return "TB_GETIMAGELIST";
5034 case WM_USER+50: return "TB_LOADIMAGES";
5035 case WM_USER+51: return "TB_GETRECT";
5036 case WM_USER+52: return "TB_SETHOTIMAGELIST";
5037 case WM_USER+53: return "TB_GETHOTIMAGELIST";
5038 case WM_USER+54: return "TB_SETDISABLEDIMAGELIST";
5039 case WM_USER+55: return "TB_GETDISABLEDIMAGELIST";
5040 case WM_USER+56: return "TB_SETSTYLE";
5041 case WM_USER+57: return "TB_GETSTYLE";
5042 case WM_USER+58: return "TB_GETBUTTONSIZE";
5043 case WM_USER+59: return "TB_SETBUTTONWIDTH";
5044 case WM_USER+60: return "TB_SETMAXTEXTROWS";
5045 case WM_USER+61: return "TB_GETTEXTROWS";
5046 case WM_USER+41: return "TB_GETBITMAPFLAGS";
5047
5048 #endif //WIN32
5049
5050 default:
5051 static char s_szBuf[128];
5052 sprintf(s_szBuf, "<unknown message = %d>", message);
5053 return s_szBuf;
5054 }
5055 }
5056 #endif //__WXDEBUG__