1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/mgl/window.cpp
4 // Author: Vaclav Slavik
5 // (based on GTK & MSW implementations)
7 // Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com)
8 // Licence: wxWindows license
9 /////////////////////////////////////////////////////////////////////////////
11 // ===========================================================================
13 // ===========================================================================
15 // ---------------------------------------------------------------------------
17 // ---------------------------------------------------------------------------
20 #pragma implementation "window.h"
23 // For compilers that support precompilation, includes "wx.h".
24 #include "wx/wxprec.h"
31 #include "wx/window.h"
35 #include "wx/dcclient.h"
42 #if wxUSE_DRAG_AND_DROP
47 #include "wx/sysopt.h"
48 #include "wx/mgl/private.h"
50 #include "wx/dcscreen.h"
55 #include "wx/tooltip.h"
58 // ---------------------------------------------------------------------------
60 // ---------------------------------------------------------------------------
62 // MGL window manager and associated DC.
63 winmng_t
*g_winMng
= NULL
;
64 MGLDevCtx
*g_displayDC
= NULL
;
66 // the window that has keyboard focus:
67 static wxWindowMGL
*gs_focusedWindow
= NULL
;
68 // the window that is currently under mouse cursor:
69 static wxWindowMGL
*gs_windowUnderMouse
= NULL
;
70 // the window that has mouse capture
71 static wxWindowMGL
*gs_mouseCapture
= NULL
;
72 // the frame that is currently active (i.e. its child has focus). It is
73 // used to generate wxActivateEvents
74 static wxWindowMGL
*gs_activeFrame
= NULL
;
76 // ---------------------------------------------------------------------------
78 // ---------------------------------------------------------------------------
80 // Custom identifiers used to distinguish between various event handlers
81 // and capture handlers passed to MGL_wm
84 wxMGL_CAPTURE_MOUSE
= 1,
85 wxMGL_CAPTURE_KEYB
= 2
89 // ---------------------------------------------------------------------------
91 // ---------------------------------------------------------------------------
93 // wxCreateMGL_WM creates MGL display DC and associates it with winmng_t
94 // structure. Dimensions and depth of the DC are fetched from wxSystemOptions
96 // This function is *not* called from wxApp's initialization but rather at
97 // the time when WM is needed, i.e. when first wxWindow is created. This
98 // has two important effects:
99 // a) it is possible to write windowless wxMGL apps
100 // b) the app has plenty of time in wxApp::OnInit to feed wxSystemOptions
101 // with desired settings
103 // FIXME_MGL -- move to app.cpp??
104 static void wxDesktopPainter(window_t
*wnd
, MGLDC
*dc
)
106 // FIXME_MGL - for now...
107 MGL_setColorRGB(0x63, 0x63, 0x96);
108 MGL_fillRectCoord(0, 0, wnd
->width
, wnd
->height
);
112 bool wxCreateMGL_WM()
115 int width
= 640, height
= 480, depth
= 16;
116 int refresh
= MGL_DEFAULT_REFRESH
;
118 #if wxUSE_SYSTEM_OPTIONS
119 // FIXME_MGL -- so what is The Proper Way?
120 if ( wxSystemOptions::HasOption(wxT("mgl.screen-width") )
121 width
= wxSystemOptions::GetOptionInt(wxT("mgl.screen-width"));
122 if ( wxSystemOptions::HasOption(wxT("mgl.screen-height") )
123 height
= wxSystemOptions::GetOptionInt(wxT("mgl.screen-height"));
124 if ( wxSystemOptions::HasOption(wxT("mgl.screen-depth") )
125 depth
= wxSystemOptions::GetOptionInt(wxT("mgl.screen-depth"));
126 if ( wxSystemOptions::HasOption(wxT("mgl.screen-refresh") )
127 refresh
= wxSystemOptions::GetOptionInt(wxT("mgl.screen-refresh"));
130 mode
= MGL_findMode(width
, height
, depth
);
133 wxLogWarning(_("Mode %ix%i-%i not available, falling back to default mode."), width
, height
, depth
);
134 mode
= 0; // always available
136 g_displayDC
= new MGLDisplayDC(mode
, 1, refresh
);
137 if ( !g_displayDC
->isValid() )
144 g_winMng
= MGL_wmCreate(g_displayDC
->getDC());
148 MGL_wmSetWindowPainter(MGL_wmGetRootWindow(g_winMng
), wxDesktopPainter
);
153 void wxDestroyMGL_WM()
157 MGL_wmDestroy(g_winMng
);
167 // Returns toplevel grandparent of given window:
168 static wxWindowMGL
* wxGetTopLevelParent(wxWindowMGL
*win
)
170 wxWindowMGL
*p
= win
;
171 while (p
&& !p
->IsTopLevel())
176 // ---------------------------------------------------------------------------
178 // ---------------------------------------------------------------------------
180 static void wxWindowPainter(window_t
*wnd
, MGLDC
*dc
)
182 wxWindowMGL
*w
= (wxWindow
*) wnd
->userData
;
184 if ( w
&& !(w
->GetWindowStyle() & wxTRANSPARENT_WINDOW
) )
187 w
->HandlePaint(&ctx
);
189 // FIXME_MGL -- root window should be a regular window so that
190 // enter/leave and activate/deactivate events work correctly
193 static ibool
wxWindowMouseHandler(window_t
*wnd
, event_t
*e
)
195 wxWindowMGL
*win
= (wxWindowMGL
*)MGL_wmGetWindowUserData(wnd
);
198 MGL_wmCoordGlobalToLocal(win
->GetHandle(),
199 e
->where_x
, e
->where_y
, &where
.x
, &where
.y
);
201 for (wxWindowMGL
*w
= win
; w
; w
= w
->GetParent())
203 if ( !w
->IsEnabled() )
205 if ( w
->IsTopLevel() )
209 wxEventType type
= wxEVT_NULL
;
211 event
.SetEventObject(win
);
212 event
.SetTimestamp(e
->when
);
215 event
.m_shiftDown
= e
->modifiers
& EVT_SHIFTKEY
;
216 event
.m_controlDown
= e
->modifiers
& EVT_CTRLSTATE
;
217 event
.m_altDown
= e
->modifiers
& EVT_LEFTALT
;
218 event
.m_metaDown
= e
->modifiers
& EVT_RIGHTALT
;
219 event
.m_leftDown
= e
->modifiers
& EVT_LEFTBUT
;
220 event
.m_middleDown
= e
->modifiers
& EVT_MIDDLEBUT
;
221 event
.m_rightDown
= e
->modifiers
& EVT_RIGHTBUT
;
226 if ( e
->message
& EVT_LEFTBMASK
)
227 type
= (e
->message
& EVT_DBLCLICK
) ?
228 wxEVT_LEFT_DCLICK
: wxEVT_LEFT_DOWN
;
229 else if ( e
->message
& EVT_MIDDLEBMASK
)
230 type
= (e
->message
& EVT_DBLCLICK
) ?
231 wxEVT_MIDDLE_DCLICK
: wxEVT_MIDDLE_DOWN
;
232 else if ( e
->message
& EVT_RIGHTBMASK
)
233 type
= (e
->message
& EVT_DBLCLICK
) ?
234 wxEVT_RIGHT_DCLICK
: wxEVT_RIGHT_DOWN
;
238 if ( e
->message
& EVT_LEFTBMASK
)
239 type
= wxEVT_LEFT_UP
;
240 else if ( e
->message
& EVT_MIDDLEBMASK
)
241 type
= wxEVT_MIDDLE_UP
;
242 else if ( e
->message
& EVT_RIGHTBMASK
)
243 type
= wxEVT_RIGHT_UP
;
247 if ( !gs_mouseCapture
)
249 if ( win
!= gs_windowUnderMouse
)
251 if ( gs_windowUnderMouse
)
253 wxMouseEvent
event2(event
);
254 MGL_wmCoordGlobalToLocal(gs_windowUnderMouse
->GetHandle(),
255 e
->where_x
, e
->where_y
,
256 &event2
.m_x
, &event2
.m_y
);
258 event2
.SetEventObject(gs_windowUnderMouse
);
259 event2
.SetEventType(wxEVT_LEAVE_WINDOW
);
260 gs_windowUnderMouse
->GetEventHandler()->ProcessEvent(event2
);
263 wxMouseEvent
event3(event
);
264 event3
.SetEventType(wxEVT_ENTER_WINDOW
);
265 win
->GetEventHandler()->ProcessEvent(event3
);
267 gs_windowUnderMouse
= win
;
270 else // gs_mouseCapture
272 bool inside
= (where
.x
>= 0 &&
274 where
.x
< win
->GetSize().x
&&
275 where
.y
< win
->GetSize().y
);
276 if ( (inside
&& gs_windowUnderMouse
!= win
) ||
277 (!inside
&& gs_windowUnderMouse
== win
) )
279 wxMouseEvent
evt(inside
?
280 wxEVT_ENTER_WINDOW
: wxEVT_LEAVE_WINDOW
);
281 evt
.SetEventObject(win
);
282 win
->GetEventHandler()->ProcessEvent(evt
);
283 gs_windowUnderMouse
= inside
? win
: NULL
;
294 if ( type
== wxEVT_NULL
)
300 event
.SetEventType(type
);
301 return win
->GetEventHandler()->ProcessEvent(event
);
305 static long wxScanToKeyCode(event_t
*event
)
307 #define KEY(mgl,wx) case mgl: key = wx; break;
310 switch ( EVT_scanCode(event
->message
) )
312 KEY (KB_padEnter
, WXK_NUMPAD_ENTER
)
313 KEY (KB_padMinus
, WXK_NUMPAD_SUBTRACT
)
314 KEY (KB_padPlus
, WXK_NUMPAD_ADD
)
315 KEY (KB_padTimes
, WXK_NUMPAD_MULTIPLY
)
316 KEY (KB_padDivide
, WXK_NUMPAD_DIVIDE
)
317 KEY (KB_padLeft
, WXK_NUMPAD_LEFT
)
318 KEY (KB_padRight
, WXK_NUMPAD_RIGHT
)
319 KEY (KB_padUp
, WXK_NUMPAD_UP
)
320 KEY (KB_padDown
, WXK_NUMPAD_DOWN
)
321 KEY (KB_padInsert
, WXK_NUMPAD_INSERT
)
322 KEY (KB_padDelete
, WXK_NUMPAD_DELETE
)
323 KEY (KB_padHome
, WXK_NUMPAD_HOME
)
324 KEY (KB_padEnd
, WXK_NUMPAD_END
)
325 KEY (KB_padPageUp
, WXK_NUMPAD_PAGEUP
)
326 //KEY (KB_padPageUp, WXK_NUMPAD_PRIOR)
327 KEY (KB_padPageDown
, WXK_NUMPAD_PAGEDOWN
)
328 //KEY (KB_padPageDown, WXK_NUMPAD_NEXT)
329 KEY (KB_padCenter
, WXK_NUMPAD_SEPARATOR
) // ?
339 KEY (KB_F10
, WXK_F10
)
340 KEY (KB_F11
, WXK_F11
)
341 KEY (KB_F12
, WXK_F12
)
342 KEY (KB_left
, WXK_LEFT
)
343 KEY (KB_right
, WXK_RIGHT
)
345 KEY (KB_down
, WXK_DOWN
)
346 KEY (KB_insert
, WXK_INSERT
)
347 KEY (KB_delete
, WXK_DELETE
)
348 KEY (KB_home
, WXK_HOME
)
349 KEY (KB_end
, WXK_END
)
350 KEY (KB_pageUp
, WXK_PAGEUP
)
351 KEY (KB_pageDown
, WXK_PAGEDOWN
)
352 KEY (KB_capsLock
, WXK_CAPITAL
)
353 KEY (KB_numLock
, WXK_NUMLOCK
)
354 KEY (KB_scrollLock
, WXK_SCROLL
)
355 KEY (KB_leftShift
, WXK_SHIFT
)
356 KEY (KB_rightShift
, WXK_SHIFT
)
357 KEY (KB_leftCtrl
, WXK_CONTROL
)
358 KEY (KB_rightCtrl
, WXK_CONTROL
)
359 KEY (KB_leftAlt
, WXK_ALT
)
360 KEY (KB_rightAlt
, WXK_ALT
)
361 KEY (KB_leftWindows
, WXK_START
)
362 KEY (KB_rightWindows
, WXK_START
)
363 KEY (KB_menu
, WXK_MENU
)
364 KEY (KB_sysReq
, WXK_SNAPSHOT
)
365 KEY (KB_esc
, WXK_ESCAPE
)
376 KEY (KB_minus
, WXK_SUBTRACT
)
377 KEY (KB_equals
, WXK_ADD
)
378 KEY (KB_backSlash
, '\\')
379 KEY (KB_backspace
, WXK_BACK
)
380 KEY (KB_tab
, WXK_TAB
)
391 KEY (KB_leftSquareBrace
,'[')
392 KEY (KB_rightSquareBrace
,']')
393 KEY (KB_enter
, WXK_RETURN
)
403 KEY (KB_semicolon
, ';')
404 KEY (KB_apostrophe
, '\'')
414 KEY (KB_divide
, WXK_DIVIDE
)
415 KEY (KB_space
, WXK_SPACE
)
419 key
= EVT_asciiCode(event
->message
);
428 static long wxAsciiToKeyCode(event_t
*event
)
430 return (long)EVT_asciiCode(event
->message
);
433 static ibool
wxWindowKeybHandler(window_t
*wnd
, event_t
*e
)
435 wxWindowMGL
*win
= (wxWindowMGL
*)MGL_wmGetWindowUserData(wnd
);
437 if ( !win
->IsEnabled() ) return FALSE
;
440 MGL_wmCoordGlobalToLocal(win
->GetHandle(),
441 e
->where_x
, e
->where_y
, &where
.x
, &where
.y
);
444 event
.SetEventObject(win
);
445 event
.SetTimestamp(e
->when
);
446 event
.m_keyCode
= wxScanToKeyCode(e
);
447 event
.m_scanCode
= 0; // not used by wx at all
450 event
.m_shiftDown
= e
->modifiers
& EVT_SHIFTKEY
;
451 event
.m_controlDown
= e
->modifiers
& EVT_CTRLSTATE
;
452 event
.m_altDown
= e
->modifiers
& EVT_LEFTALT
;
453 event
.m_metaDown
= e
->modifiers
& EVT_RIGHTALT
;
455 if ( e
->what
== EVT_KEYUP
)
457 event
.SetEventType(wxEVT_KEY_UP
);
458 return win
->GetEventHandler()->ProcessEvent(event
);
465 event
.SetEventType(wxEVT_KEY_DOWN
);
468 ret
= win
->GetEventHandler()->ProcessEvent(event
);
473 for (wxWindowMGL
*w
= win
; w
; w
= w
->GetParent())
475 int command
= w
->GetAcceleratorTable()->GetCommand(event
);
478 wxCommandEvent
eventc(wxEVT_COMMAND_MENU_SELECTED
, command
);
479 ret
= w
->GetEventHandler()->ProcessEvent(eventc
);
482 if ( w
->IsTopLevel() )
486 #endif // wxUSE_ACCEL
488 /* wxMSW doesn't send char events with Alt pressed */
489 /* Only send wxEVT_CHAR event if not processed yet. Thus, ALT-x
490 will only be sent if it is not in an accelerator table. */
491 event2
.m_keyCode
= wxAsciiToKeyCode(e
);
492 if ( !ret
&& event2
.m_keyCode
!= 0 )
494 event2
.SetEventType(wxEVT_CHAR
);
495 ret
= win
->GetEventHandler()->ProcessEvent(event2
);
502 // ---------------------------------------------------------------------------
504 // ---------------------------------------------------------------------------
506 // in wxUniv this class is abstract because it doesn't have DoPopupMenu()
507 IMPLEMENT_ABSTRACT_CLASS(wxWindowMGL
, wxWindowBase
)
509 BEGIN_EVENT_TABLE(wxWindowMGL
, wxWindowBase
)
512 // ===========================================================================
514 // ===========================================================================
516 // ----------------------------------------------------------------------------
517 // constructors and such
518 // ----------------------------------------------------------------------------
520 void wxWindowMGL::Init()
528 m_isBeingDeleted
= FALSE
;
532 m_eraseBackground
= -1;
536 wxWindowMGL::~wxWindowMGL()
538 m_isBeingDeleted
= TRUE
;
540 if ( gs_mouseCapture
== this )
543 if (gs_activeFrame
== this)
545 gs_activeFrame
= NULL
;
546 // activate next frame in Z-order:
549 wxWindowMGL
*win
= (wxWindowMGL
*)m_wnd
->prev
->userData
;
554 if ( gs_focusedWindow
== this )
557 if ( gs_windowUnderMouse
== this )
558 gs_windowUnderMouse
= NULL
;
560 // VS: destroy children first and _then_ detach *this from its parent.
561 // If we'd do it the other way around, children wouldn't be able
562 // find their parent frame (see above).
566 m_parent
->RemoveChild(this);
569 MGL_wmDestroyWindow(m_wnd
);
572 // real construction (Init() must have been called before!)
573 bool wxWindowMGL::Create(wxWindow
*parent
,
578 const wxString
& name
)
580 if ( !CreateBase(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
584 parent
->AddChild(this);
587 x
= pos
.x
, y
= pos
.y
;
589 x
= 0; // FIXME_MGL, something better, see GTK+
591 y
= 0; // FIXME_MGL, something better, see GTK+
592 w
= WidthDefault(size
.x
);
593 h
= HeightDefault(size
.y
);
596 window_t
*wnd_parent
= parent
? parent
->GetHandle() : NULL
;
598 if ( !(style
& wxNO_FULL_REPAINT_ON_RESIZE
) )
600 mgl_style
|= MGL_WM_FULL_REPAINT_ON_RESIZE
;
602 if ( style
& wxSTAY_ON_TOP
)
604 mgl_style
|= MGL_WM_ALWAYS_ON_TOP
;
606 if ( style
& wxPOPUP_WINDOW
)
608 mgl_style
|= MGL_WM_ALWAYS_ON_TOP
;
609 // it is created hidden as other top level windows
614 m_wnd
= MGL_wmCreateWindow(g_winMng
, wnd_parent
, x
, y
, w
, h
);
616 MGL_wmSetWindowFlags(m_wnd
, mgl_style
);
617 MGL_wmSetWindowUserData(m_wnd
, (void*) this);
618 MGL_wmSetWindowPainter(m_wnd
, wxWindowPainter
);
619 MGL_wmShowWindow(m_wnd
, m_isShown
);
620 MGL_wmSetWindowCursor(m_wnd
, *wxSTANDARD_CURSOR
->GetMGLCursor());
622 MGL_wmPushWindowEventHandler(m_wnd
, wxWindowMouseHandler
, EVT_MOUSEEVT
, 0);
623 MGL_wmPushWindowEventHandler(m_wnd
, wxWindowKeybHandler
, EVT_KEYEVT
, 0);
628 // ---------------------------------------------------------------------------
630 // ---------------------------------------------------------------------------
632 void wxWindowMGL::SetFocus()
634 if ( gs_focusedWindow
== this ) return;
636 if ( gs_focusedWindow
)
637 gs_focusedWindow
->KillFocus();
639 gs_focusedWindow
= this;
641 MGL_wmCaptureEvents(GetHandle(), EVT_KEYEVT
, wxMGL_CAPTURE_KEYB
);
644 // caret needs to be informed about focus change
645 wxCaret
*caret
= GetCaret();
648 #endif // wxUSE_CARET
650 wxWindowMGL
*active
= wxGetTopLevelParent(this);
651 if ( !(m_windowStyle
& wxPOPUP_WINDOW
) && active
!= gs_activeFrame
)
653 if ( gs_activeFrame
)
655 wxActivateEvent
event(wxEVT_ACTIVATE
, FALSE
, gs_activeFrame
->GetId());
656 event
.SetEventObject(gs_activeFrame
);
657 gs_activeFrame
->GetEventHandler()->ProcessEvent(event
);
660 gs_activeFrame
= active
;
661 wxActivateEvent
event(wxEVT_ACTIVATE
, TRUE
, gs_activeFrame
->GetId());
662 event
.SetEventObject(gs_activeFrame
);
663 gs_activeFrame
->GetEventHandler()->ProcessEvent(event
);
666 wxFocusEvent
event(wxEVT_SET_FOCUS
, GetId());
667 event
.SetEventObject(this);
668 GetEventHandler()->ProcessEvent(event
);
671 void wxWindowMGL::KillFocus()
673 if ( gs_focusedWindow
!= this ) return;
674 gs_focusedWindow
= NULL
;
676 if ( m_isBeingDeleted
) return;
678 MGL_wmUncaptureEvents(GetHandle(), wxMGL_CAPTURE_KEYB
);
681 // caret needs to be informed about focus change
682 wxCaret
*caret
= GetCaret();
684 caret
->OnKillFocus();
685 #endif // wxUSE_CARET
687 wxFocusEvent
event(wxEVT_KILL_FOCUS
, GetId());
688 event
.SetEventObject(this);
689 GetEventHandler()->ProcessEvent(event
);
692 // ----------------------------------------------------------------------------
693 // this wxWindowBase function is implemented here (in platform-specific file)
694 // because it is static and so couldn't be made virtual
695 // ----------------------------------------------------------------------------
696 wxWindow
*wxWindowBase::FindFocus()
698 return (wxWindow
*)gs_focusedWindow
;
701 bool wxWindowMGL::Show(bool show
)
703 if ( !wxWindowBase::Show(show
) )
706 MGL_wmShowWindow(m_wnd
, show
);
708 if (!show
&& gs_activeFrame
== this)
710 // activate next frame in Z-order:
713 wxWindowMGL
*win
= (wxWindowMGL
*)m_wnd
->prev
->userData
;
721 // Raise the window to the top of the Z order
722 void wxWindowMGL::Raise()
724 MGL_wmRaiseWindow(m_wnd
);
727 // Lower the window to the bottom of the Z order
728 void wxWindowMGL::Lower()
730 MGL_wmLowerWindow(m_wnd
);
733 void wxWindowMGL::CaptureMouse()
735 if ( gs_mouseCapture
)
736 MGL_wmUncaptureEvents(gs_mouseCapture
->m_wnd
, wxMGL_CAPTURE_MOUSE
);
738 gs_mouseCapture
= this;
739 MGL_wmCaptureEvents(m_wnd
, EVT_MOUSEEVT
, wxMGL_CAPTURE_MOUSE
);
742 void wxWindowMGL::ReleaseMouse()
744 wxASSERT_MSG( gs_mouseCapture
== this, wxT("attempt to release mouse, but this window hasn't captured it") )
746 MGL_wmUncaptureEvents(m_wnd
, wxMGL_CAPTURE_MOUSE
);
747 gs_mouseCapture
= NULL
;
750 /* static */ wxWindow
*wxWindowBase::GetCapture()
752 return (wxWindow
*)gs_mouseCapture
;
755 bool wxWindowMGL::SetCursor(const wxCursor
& cursor
)
757 if ( !wxWindowBase::SetCursor(cursor
) )
764 MGL_wmSetWindowCursor(m_wnd
, *m_cursor
.GetMGLCursor());
766 MGL_wmSetWindowCursor(m_wnd
, *wxSTANDARD_CURSOR
->GetMGLCursor());
771 void wxWindowMGL::WarpPointer(int x
, int y
)
773 ClientToScreen(&x
, &y
);
774 EVT_setMousePos(x
, y
);
777 #if WXWIN_COMPATIBILITY
778 // If nothing defined for this, try the parent.
779 // E.g. we may be a button loaded from a resource, with no callback function
781 void wxWindowMGL::OnCommand(wxWindow
& win
, wxCommandEvent
& event
)
783 if ( GetEventHandler()->ProcessEvent(event
) )
786 m_parent
->GetEventHandler()->OnCommand(win
, event
);
788 #endif // WXWIN_COMPATIBILITY_2
790 #if WXWIN_COMPATIBILITY
791 wxObject
* wxWindowMGL::GetChild(int number
) const
793 // Return a pointer to the Nth object in the Panel
794 wxNode
*node
= GetChildren().First();
800 wxObject
*obj
= (wxObject
*)node
->Data();
806 #endif // WXWIN_COMPATIBILITY
808 // Set this window to be the child of 'parent'.
809 bool wxWindowMGL::Reparent(wxWindowBase
*parent
)
811 if ( !wxWindowBase::Reparent(parent
) )
814 MGL_wmReparentWindow(m_wnd
, parent
->GetHandle());
820 // ---------------------------------------------------------------------------
822 // ---------------------------------------------------------------------------
824 #if wxUSE_DRAG_AND_DROP
826 void wxWindowMGL::SetDropTarget(wxDropTarget
*pDropTarget
)
828 if ( m_dropTarget
!= 0 ) {
829 m_dropTarget
->Revoke(m_hWnd
);
833 m_dropTarget
= pDropTarget
;
834 if ( m_dropTarget
!= 0 )
835 m_dropTarget
->Register(m_hWnd
);
838 #endif // wxUSE_DRAG_AND_DROP
840 // old style file-manager drag&drop support: we retain the old-style
841 // DragAcceptFiles in parallel with SetDropTarget.
842 void wxWindowMGL::DragAcceptFiles(bool accept
)
845 HWND hWnd
= GetHwnd();
847 ::DragAcceptFiles(hWnd
, (BOOL
)accept
);
851 // ---------------------------------------------------------------------------
852 // moving and resizing
853 // ---------------------------------------------------------------------------
856 void wxWindowMGL::DoGetSize(int *x
, int *y
) const
858 if (x
) *x
= m_wnd
->width
;
859 if (y
) *y
= m_wnd
->height
;
862 void wxWindowMGL::DoGetPosition(int *x
, int *y
) const
864 if (x
) *x
= m_wnd
->x
;
865 if (y
) *y
= m_wnd
->y
;
868 void wxWindowMGL::DoScreenToClient(int *x
, int *y
) const
871 MGL_wmCoordGlobalToLocal(m_wnd
, 0, 0, &ax
, &ay
);
878 void wxWindowMGL::DoClientToScreen(int *x
, int *y
) const
881 MGL_wmCoordLocalToGlobal(m_wnd
, 0, 0, &ax
, &ay
);
888 // Get size *available for subwindows* i.e. excluding menu bar etc.
889 void wxWindowMGL::DoGetClientSize(int *x
, int *y
) const
894 void wxWindowMGL::DoMoveWindow(int x
, int y
, int width
, int height
)
896 MGL_wmSetWindowPosition(GetHandle(), x
, y
, width
, height
);
899 // set the size of the window: if the dimensions are positive, just use them,
900 // but if any of them is equal to -1, it means that we must find the value for
901 // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
902 // which case -1 is a valid value for x and y)
904 // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
905 // the width/height to best suit our contents, otherwise we reuse the current
907 void wxWindowMGL::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
909 // get the current size and position...
910 int currentX
, currentY
;
911 GetPosition(¤tX
, ¤tY
);
912 int currentW
,currentH
;
913 GetSize(¤tW
, ¤tH
);
915 // ... and don't do anything (avoiding flicker) if it's already ok
916 if ( x
== currentX
&& y
== currentY
&&
917 width
== currentW
&& height
== currentH
)
922 if ( x
== -1 && !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
924 if ( y
== -1 && !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
927 AdjustForParentClientOrigin(x
, y
, sizeFlags
);
932 if ( sizeFlags
& wxSIZE_AUTO_WIDTH
)
934 size
= DoGetBestSize();
939 // just take the current one
946 if ( sizeFlags
& wxSIZE_AUTO_HEIGHT
)
950 size
= DoGetBestSize();
952 //else: already called DoGetBestSize() above
958 // just take the current one
963 DoMoveWindow(x
, y
, width
, height
);
965 wxSizeEvent
event(wxSize(width
, height
), GetId());
966 event
.SetEventObject(this);
967 GetEventHandler()->ProcessEvent(event
);
970 void wxWindowMGL::DoSetClientSize(int width
, int height
)
972 SetSize(width
, height
);
975 // ---------------------------------------------------------------------------
977 // ---------------------------------------------------------------------------
979 int wxWindowMGL::GetCharHeight() const
983 return dc
.GetCharHeight();
986 int wxWindowMGL::GetCharWidth() const
990 return dc
.GetCharWidth();
993 void wxWindowMGL::GetTextExtent(const wxString
& string
,
995 int *descent
, int *externalLeading
,
996 const wxFont
*theFont
) const
1001 dc
.GetTextExtent(string
, x
, y
, descent
, externalLeading
, (wxFont
*)theFont
);
1004 #if wxUSE_CARET && WXWIN_COMPATIBILITY
1005 // ---------------------------------------------------------------------------
1006 // Caret manipulation
1007 // ---------------------------------------------------------------------------
1009 void wxWindowMGL::CreateCaret(int w
, int h
)
1011 SetCaret(new wxCaret(this, w
, h
));
1014 void wxWindowMGL::CreateCaret(const wxBitmap
*WXUNUSED(bitmap
))
1016 wxFAIL_MSG("not implemented");
1019 void wxWindowMGL::ShowCaret(bool show
)
1021 wxCHECK_RET( m_caret
, "no caret to show" );
1023 m_caret
->Show(show
);
1026 void wxWindowMGL::DestroyCaret()
1031 void wxWindowMGL::SetCaretPos(int x
, int y
)
1033 wxCHECK_RET( m_caret
, "no caret to move" );
1035 m_caret
->Move(x
, y
);
1038 void wxWindowMGL::GetCaretPos(int *x
, int *y
) const
1040 wxCHECK_RET( m_caret
, "no caret to get position of" );
1042 m_caret
->GetPosition(x
, y
);
1044 #endif // wxUSE_CARET
1047 // ---------------------------------------------------------------------------
1049 // ---------------------------------------------------------------------------
1051 void wxWindowMGL::Clear()
1053 wxClientDC
dc((wxWindow
*)this);
1054 wxBrush
brush(GetBackgroundColour(), wxSOLID
);
1055 dc
.SetBackground(brush
);
1059 #include "wx/menu.h"
1060 void wxWindowMGL::Refresh(bool eraseBack
, const wxRect
*rect
)
1062 if ( m_eraseBackground
== -1 )
1063 m_eraseBackground
= eraseBack
;
1065 m_eraseBackground
|= eraseBack
;
1070 r
.left
= rect
->GetLeft(), r
.right
= rect
->GetRight();
1071 r
.top
= rect
->GetTop(), r
.bottom
= rect
->GetBottom();
1072 MGL_wmInvalidateWindowRect(GetHandle(), &r
);
1075 MGL_wmInvalidateWindow(GetHandle());
1078 void wxWindowMGL::Update()
1081 MGL_wmUpdateDC(g_winMng
);
1084 void wxWindowMGL::Freeze()
1087 m_refreshAfterThaw
= FALSE
;
1090 void wxWindowMGL::Thaw()
1093 if ( m_refreshAfterThaw
)
1097 void wxWindowMGL::HandlePaint(MGLDevCtx
*dc
)
1101 // Don't paint anything if the window is frozen.
1102 m_refreshAfterThaw
= TRUE
;
1106 #if 0 // FIXME_MGL -- debugging stuff!
1107 dc
->setColorRGB(255,0,255);
1108 dc
->fillRect(-1000,-1000,2000,2000);
1113 dc
->getClipRegion(clip
);
1114 m_updateRegion
= wxRegion(clip
);
1117 if ( m_eraseBackground
!= 0 )
1119 wxWindowDC
dc((wxWindow
*)this);
1120 wxEraseEvent
eventEr(m_windowId
, &dc
);
1121 eventEr
.SetEventObject(this);
1122 GetEventHandler()->ProcessEvent(eventEr
);
1124 m_eraseBackground
= -1;
1126 wxNcPaintEvent
eventNc(GetId());
1127 eventNc
.SetEventObject(this);
1128 GetEventHandler()->ProcessEvent(eventNc
);
1130 wxPaintEvent
eventPt(GetId());
1131 eventPt
.SetEventObject(this);
1132 GetEventHandler()->ProcessEvent(eventPt
);
1134 m_paintMGLDC
= NULL
;
1135 m_updateRegion
.Clear();
1139 // Find the wxWindow at the current mouse position, returning the mouse
1141 wxWindow
* wxFindWindowAtPointer(wxPoint
& pt
)
1143 return wxFindWindowAtPoint(pt
= wxGetMousePosition());
1146 wxWindow
* wxFindWindowAtPoint(const wxPoint
& pt
)
1148 window_t
*wnd
= MGL_wmGetWindowAtPosition(g_winMng
, pt
.x
, pt
.y
);
1149 return (wxWindow
*)wnd
->userData
;