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 width
=800, height
=600;
121 if ( wxSystemOptions::HasOption(wxT("mgl.screen-width") )
122 width
= wxSystemOptions::GetOptionInt(wxT("mgl.screen-width"));
123 if ( wxSystemOptions::HasOption(wxT("mgl.screen-height") )
124 height
= wxSystemOptions::GetOptionInt(wxT("mgl.screen-height"));
125 if ( wxSystemOptions::HasOption(wxT("mgl.screen-depth") )
126 depth
= wxSystemOptions::GetOptionInt(wxT("mgl.screen-depth"));
127 if ( wxSystemOptions::HasOption(wxT("mgl.screen-refresh") )
128 refresh
= wxSystemOptions::GetOptionInt(wxT("mgl.screen-refresh"));
131 mode
= MGL_findMode(width
, height
, depth
);
134 wxLogWarning(_("Mode %ix%i-%i not available, falling back to default mode."), width
, height
, depth
);
135 mode
= 0; // always available
137 g_displayDC
= new MGLDisplayDC(mode
, 1, refresh
);
138 if ( !g_displayDC
->isValid() )
145 g_winMng
= MGL_wmCreate(g_displayDC
->getDC());
149 MGL_wmSetWindowPainter(MGL_wmGetRootWindow(g_winMng
), wxDesktopPainter
);
154 void wxDestroyMGL_WM()
158 MGL_wmDestroy(g_winMng
);
168 // Returns toplevel grandparent of given window:
169 static wxWindowMGL
* wxGetTopLevelParent(wxWindowMGL
*win
)
171 wxWindowMGL
*p
= win
;
172 while (p
&& !p
->IsTopLevel())
177 // ---------------------------------------------------------------------------
179 // ---------------------------------------------------------------------------
181 static void wxWindowPainter(window_t
*wnd
, MGLDC
*dc
)
183 wxWindowMGL
*w
= (wxWindow
*) wnd
->userData
;
185 if ( w
&& !(w
->GetWindowStyle() & wxTRANSPARENT_WINDOW
) )
188 w
->HandlePaint(&ctx
);
190 // FIXME_MGL -- root window should be a regular window so that
191 // enter/leave and activate/deactivate events work correctly
194 static ibool
wxWindowMouseHandler(window_t
*wnd
, event_t
*e
)
196 wxWindowMGL
*win
= (wxWindowMGL
*)MGL_wmGetWindowUserData(wnd
);
199 MGL_wmCoordGlobalToLocal(win
->GetHandle(),
200 e
->where_x
, e
->where_y
, &where
.x
, &where
.y
);
202 if ( !win
->IsEnabled() ) return FALSE
;
204 wxEventType type
= wxEVT_NULL
;
206 event
.SetEventObject(win
);
207 event
.SetTimestamp(e
->when
);
210 event
.m_shiftDown
= e
->modifiers
& EVT_SHIFTKEY
;
211 event
.m_controlDown
= e
->modifiers
& EVT_CTRLSTATE
;
212 event
.m_altDown
= e
->modifiers
& EVT_LEFTALT
;
213 event
.m_metaDown
= e
->modifiers
& EVT_RIGHTALT
;
214 event
.m_leftDown
= e
->modifiers
& EVT_LEFTBUT
;
215 event
.m_middleDown
= e
->modifiers
& EVT_MIDDLEBUT
;
216 event
.m_rightDown
= e
->modifiers
& EVT_RIGHTBUT
;
221 if ( e
->message
& EVT_LEFTBMASK
)
222 type
= (e
->message
& EVT_DBLCLICK
) ?
223 wxEVT_LEFT_DCLICK
: wxEVT_LEFT_DOWN
;
224 else if ( e
->message
& EVT_MIDDLEBMASK
)
225 type
= (e
->message
& EVT_DBLCLICK
) ?
226 wxEVT_MIDDLE_DCLICK
: wxEVT_MIDDLE_DOWN
;
227 else if ( e
->message
& EVT_RIGHTBMASK
)
228 type
= (e
->message
& EVT_DBLCLICK
) ?
229 wxEVT_RIGHT_DCLICK
: wxEVT_RIGHT_DOWN
;
233 if ( e
->message
& EVT_LEFTBMASK
)
234 type
= wxEVT_LEFT_UP
;
235 else if ( e
->message
& EVT_MIDDLEBMASK
)
236 type
= wxEVT_MIDDLE_UP
;
237 else if ( e
->message
& EVT_RIGHTBMASK
)
238 type
= wxEVT_RIGHT_UP
;
242 if ( !gs_mouseCapture
)
244 if ( win
!= gs_windowUnderMouse
)
246 if ( gs_windowUnderMouse
)
248 wxMouseEvent
event2(event
);
249 MGL_wmCoordGlobalToLocal(gs_windowUnderMouse
->GetHandle(),
250 e
->where_x
, e
->where_y
,
251 &event2
.m_x
, &event2
.m_y
);
253 event2
.SetEventObject(gs_windowUnderMouse
);
254 event2
.SetEventType(wxEVT_LEAVE_WINDOW
);
255 gs_windowUnderMouse
->GetEventHandler()->ProcessEvent(event2
);
258 wxMouseEvent
event3(event
);
259 event3
.SetEventType(wxEVT_ENTER_WINDOW
);
260 win
->GetEventHandler()->ProcessEvent(event3
);
262 gs_windowUnderMouse
= win
;
265 else // gs_mouseCapture
267 bool inside
= (where
.x
>= 0 &&
269 where
.x
< win
->GetSize().x
&&
270 where
.y
< win
->GetSize().y
);
271 if ( (inside
&& gs_windowUnderMouse
!= win
) ||
272 (!inside
&& gs_windowUnderMouse
== win
) )
274 wxMouseEvent
evt(inside
?
275 wxEVT_ENTER_WINDOW
: wxEVT_LEAVE_WINDOW
);
276 evt
.SetEventObject(win
);
277 win
->GetEventHandler()->ProcessEvent(evt
);
278 gs_windowUnderMouse
= inside
? win
: NULL
;
289 if ( type
== wxEVT_NULL
)
295 event
.SetEventType(type
);
296 return win
->GetEventHandler()->ProcessEvent(event
);
300 static long wxScanToKeyCode(event_t
*event
)
302 #define KEY(mgl,wx) case mgl: key = wx; break;
305 switch ( EVT_scanCode(event
->message
) )
307 KEY (KB_padEnter
, WXK_NUMPAD_ENTER
)
308 KEY (KB_padMinus
, WXK_NUMPAD_SUBTRACT
)
309 KEY (KB_padPlus
, WXK_NUMPAD_ADD
)
310 KEY (KB_padTimes
, WXK_NUMPAD_MULTIPLY
)
311 KEY (KB_padDivide
, WXK_NUMPAD_DIVIDE
)
312 KEY (KB_padLeft
, WXK_NUMPAD_LEFT
)
313 KEY (KB_padRight
, WXK_NUMPAD_RIGHT
)
314 KEY (KB_padUp
, WXK_NUMPAD_UP
)
315 KEY (KB_padDown
, WXK_NUMPAD_DOWN
)
316 KEY (KB_padInsert
, WXK_NUMPAD_INSERT
)
317 KEY (KB_padDelete
, WXK_NUMPAD_DELETE
)
318 KEY (KB_padHome
, WXK_NUMPAD_HOME
)
319 KEY (KB_padEnd
, WXK_NUMPAD_END
)
320 KEY (KB_padPageUp
, WXK_NUMPAD_PAGEUP
)
321 //KEY (KB_padPageUp, WXK_NUMPAD_PRIOR)
322 KEY (KB_padPageDown
, WXK_NUMPAD_PAGEDOWN
)
323 //KEY (KB_padPageDown, WXK_NUMPAD_NEXT)
324 KEY (KB_padCenter
, WXK_NUMPAD_SEPARATOR
) // ?
334 KEY (KB_F10
, WXK_F10
)
335 KEY (KB_F11
, WXK_F11
)
336 KEY (KB_F12
, WXK_F12
)
337 KEY (KB_left
, WXK_LEFT
)
338 KEY (KB_right
, WXK_RIGHT
)
340 KEY (KB_down
, WXK_DOWN
)
341 KEY (KB_insert
, WXK_INSERT
)
342 KEY (KB_delete
, WXK_DELETE
)
343 KEY (KB_home
, WXK_HOME
)
344 KEY (KB_end
, WXK_END
)
345 KEY (KB_pageUp
, WXK_PAGEUP
)
346 KEY (KB_pageDown
, WXK_PAGEDOWN
)
347 KEY (KB_capsLock
, WXK_CAPITAL
)
348 KEY (KB_numLock
, WXK_NUMLOCK
)
349 KEY (KB_scrollLock
, WXK_SCROLL
)
350 KEY (KB_leftShift
, WXK_SHIFT
)
351 KEY (KB_rightShift
, WXK_SHIFT
)
352 KEY (KB_leftCtrl
, WXK_CONTROL
)
353 KEY (KB_rightCtrl
, WXK_CONTROL
)
354 KEY (KB_leftAlt
, WXK_ALT
)
355 KEY (KB_rightAlt
, WXK_ALT
)
356 KEY (KB_leftWindows
, WXK_START
)
357 KEY (KB_rightWindows
, WXK_START
)
358 KEY (KB_menu
, WXK_MENU
)
359 KEY (KB_sysReq
, WXK_SNAPSHOT
)
360 KEY (KB_esc
, WXK_ESCAPE
)
371 KEY (KB_minus
, WXK_SUBTRACT
)
372 KEY (KB_equals
, WXK_ADD
)
373 KEY (KB_backSlash
, '\\')
374 KEY (KB_backspace
, WXK_BACK
)
375 KEY (KB_tab
, WXK_TAB
)
386 KEY (KB_leftSquareBrace
,'[')
387 KEY (KB_rightSquareBrace
,']')
388 KEY (KB_enter
, WXK_RETURN
)
398 KEY (KB_semicolon
, ';')
399 KEY (KB_apostrophe
, '\'')
409 KEY (KB_divide
, WXK_DIVIDE
)
410 KEY (KB_space
, WXK_SPACE
)
414 key
= EVT_asciiCode(event
->message
);
423 static long wxAsciiToKeyCode(event_t
*event
)
425 return (long)EVT_asciiCode(event
->message
);
428 static ibool
wxWindowKeybHandler(window_t
*wnd
, event_t
*e
)
430 wxWindowMGL
*win
= (wxWindowMGL
*)MGL_wmGetWindowUserData(wnd
);
432 if ( !win
->IsEnabled() ) return FALSE
;
435 MGL_wmCoordGlobalToLocal(win
->GetHandle(),
436 e
->where_x
, e
->where_y
, &where
.x
, &where
.y
);
439 event
.SetEventObject(win
);
440 event
.SetTimestamp(e
->when
);
441 event
.m_keyCode
= wxScanToKeyCode(e
);
442 event
.m_scanCode
= 0; // not used by wx at all
445 event
.m_shiftDown
= e
->modifiers
& EVT_SHIFTKEY
;
446 event
.m_controlDown
= e
->modifiers
& EVT_CTRLSTATE
;
447 event
.m_altDown
= e
->modifiers
& EVT_LEFTALT
;
448 event
.m_metaDown
= e
->modifiers
& EVT_RIGHTALT
;
450 if ( e
->what
== EVT_KEYUP
)
452 event
.SetEventType(wxEVT_KEY_UP
);
453 return win
->GetEventHandler()->ProcessEvent(event
);
460 event
.SetEventType(wxEVT_KEY_DOWN
);
463 ret
= win
->GetEventHandler()->ProcessEvent(event
);
468 for (wxWindowMGL
*w
= win
; w
; w
= w
->GetParent())
470 int command
= w
->GetAcceleratorTable()->GetCommand(event
);
473 wxCommandEvent
eventc(wxEVT_COMMAND_MENU_SELECTED
, command
);
474 ret
= w
->GetEventHandler()->ProcessEvent(eventc
);
477 if ( w
->IsTopLevel() )
481 #endif // wxUSE_ACCEL
483 /* wxMSW doesn't send char events with Alt pressed */
484 /* Only send wxEVT_CHAR event if not processed yet. Thus, ALT-x
485 will only be sent if it is not in an accelerator table. */
486 event2
.m_keyCode
= wxAsciiToKeyCode(e
);
487 if ( !ret
&& event2
.m_keyCode
!= 0 )
489 event2
.SetEventType(wxEVT_CHAR
);
490 ret
= win
->GetEventHandler()->ProcessEvent(event2
);
497 // ---------------------------------------------------------------------------
499 // ---------------------------------------------------------------------------
501 // in wxUniv this class is abstract because it doesn't have DoPopupMenu()
502 IMPLEMENT_ABSTRACT_CLASS(wxWindowMGL
, wxWindowBase
)
504 BEGIN_EVENT_TABLE(wxWindowMGL
, wxWindowBase
)
507 // ===========================================================================
509 // ===========================================================================
511 // ----------------------------------------------------------------------------
512 // constructors and such
513 // ----------------------------------------------------------------------------
515 void wxWindowMGL::Init()
523 m_isBeingDeleted
= FALSE
;
527 m_eraseBackground
= -1;
531 wxWindowMGL::~wxWindowMGL()
533 m_isBeingDeleted
= TRUE
;
535 if ( gs_mouseCapture
== this )
538 if (gs_activeFrame
== this)
540 gs_activeFrame
= NULL
;
541 // activate next frame in Z-order:
544 wxWindowMGL
*win
= (wxWindowMGL
*)m_wnd
->prev
->userData
;
549 if ( gs_focusedWindow
== this )
552 if ( gs_windowUnderMouse
== this )
553 gs_windowUnderMouse
= NULL
;
555 // VS: destroy children first and _then_ detach *this from its parent.
556 // If we'd do it the other way around, children wouldn't be able
557 // find their parent frame (see above).
561 m_parent
->RemoveChild(this);
564 MGL_wmDestroyWindow(m_wnd
);
567 // real construction (Init() must have been called before!)
568 bool wxWindowMGL::Create(wxWindow
*parent
,
573 const wxString
& name
)
575 if ( !CreateBase(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
579 parent
->AddChild(this);
582 x
= pos
.x
, y
= pos
.y
;
584 x
= 0; // FIXME_MGL, something better, see GTK+
586 y
= 0; // FIXME_MGL, something better, see GTK+
587 w
= WidthDefault(size
.x
);
588 h
= HeightDefault(size
.y
);
591 window_t
*wnd_parent
= parent
? parent
->GetHandle() : NULL
;
593 if ( !(style
& wxNO_FULL_REPAINT_ON_RESIZE
) )
595 mgl_style
|= MGL_WM_FULL_REPAINT_ON_RESIZE
;
597 if ( style
& wxSTAY_ON_TOP
)
599 mgl_style
|= MGL_WM_ALWAYS_ON_TOP
;
601 if ( style
& wxPOPUP_WINDOW
)
603 mgl_style
|= MGL_WM_ALWAYS_ON_TOP
;
604 // it is created hidden as other top level windows
609 m_wnd
= MGL_wmCreateWindow(g_winMng
, wnd_parent
, x
, y
, w
, h
);
611 MGL_wmSetWindowFlags(m_wnd
, mgl_style
);
612 MGL_wmSetWindowUserData(m_wnd
, (void*) this);
613 MGL_wmSetWindowPainter(m_wnd
, wxWindowPainter
);
614 MGL_wmShowWindow(m_wnd
, m_isShown
);
615 MGL_wmSetWindowCursor(m_wnd
, *wxSTANDARD_CURSOR
->GetMGLCursor());
617 MGL_wmPushWindowEventHandler(m_wnd
, wxWindowMouseHandler
, EVT_MOUSEEVT
, 0);
618 MGL_wmPushWindowEventHandler(m_wnd
, wxWindowKeybHandler
, EVT_KEYEVT
, 0);
623 // ---------------------------------------------------------------------------
625 // ---------------------------------------------------------------------------
627 void wxWindowMGL::SetFocus()
629 if ( gs_focusedWindow
)
630 gs_focusedWindow
->KillFocus();
632 gs_focusedWindow
= this;
634 MGL_wmCaptureEvents(GetHandle(), EVT_KEYEVT
, wxMGL_CAPTURE_KEYB
);
637 // caret needs to be informed about focus change
638 wxCaret
*caret
= GetCaret();
641 #endif // wxUSE_CARET
643 wxWindowMGL
*active
= wxGetTopLevelParent(this);
644 if ( !(m_windowStyle
& wxPOPUP_WINDOW
) && active
!= gs_activeFrame
)
646 if ( gs_activeFrame
)
648 wxActivateEvent
event(wxEVT_ACTIVATE
, FALSE
, gs_activeFrame
->GetId());
649 event
.SetEventObject(gs_activeFrame
);
650 gs_activeFrame
->GetEventHandler()->ProcessEvent(event
);
653 gs_activeFrame
= active
;
654 wxActivateEvent
event(wxEVT_ACTIVATE
, TRUE
, gs_activeFrame
->GetId());
655 event
.SetEventObject(gs_activeFrame
);
656 gs_activeFrame
->GetEventHandler()->ProcessEvent(event
);
659 wxFocusEvent
event(wxEVT_SET_FOCUS
, GetId());
660 event
.SetEventObject(this);
661 AddPendingEvent(event
);
664 void wxWindowMGL::KillFocus()
666 if ( gs_focusedWindow
!= this ) return;
667 gs_focusedWindow
= NULL
;
669 if ( m_isBeingDeleted
) return;
671 MGL_wmUncaptureEvents(GetHandle(), wxMGL_CAPTURE_KEYB
);
674 // caret needs to be informed about focus change
675 wxCaret
*caret
= GetCaret();
677 caret
->OnKillFocus();
678 #endif // wxUSE_CARET
680 wxFocusEvent
event(wxEVT_KILL_FOCUS
, GetId());
681 event
.SetEventObject(this);
682 AddPendingEvent(event
);
685 // ----------------------------------------------------------------------------
686 // this wxWindowBase function is implemented here (in platform-specific file)
687 // because it is static and so couldn't be made virtual
688 // ----------------------------------------------------------------------------
689 wxWindow
*wxWindowBase::FindFocus()
691 return (wxWindow
*)gs_focusedWindow
;
694 bool wxWindowMGL::Show(bool show
)
696 if ( !wxWindowBase::Show(show
) )
699 MGL_wmShowWindow(m_wnd
, show
);
701 if (!show
&& gs_activeFrame
== this)
703 // activate next frame in Z-order:
706 wxWindowMGL
*win
= (wxWindowMGL
*)m_wnd
->prev
->userData
;
714 // Raise the window to the top of the Z order
715 void wxWindowMGL::Raise()
717 MGL_wmRaiseWindow(m_wnd
);
720 // Lower the window to the bottom of the Z order
721 void wxWindowMGL::Lower()
723 MGL_wmLowerWindow(m_wnd
);
726 void wxWindowMGL::CaptureMouse()
728 if ( gs_mouseCapture
)
729 MGL_wmUncaptureEvents(gs_mouseCapture
->m_wnd
, wxMGL_CAPTURE_MOUSE
);
731 gs_mouseCapture
= this;
732 MGL_wmCaptureEvents(m_wnd
, EVT_MOUSEEVT
, wxMGL_CAPTURE_MOUSE
);
735 void wxWindowMGL::ReleaseMouse()
737 wxASSERT_MSG( gs_mouseCapture
== this, wxT("attempt to release mouse, but this window hasn't captured it") )
739 MGL_wmUncaptureEvents(m_wnd
, wxMGL_CAPTURE_MOUSE
);
740 gs_mouseCapture
= NULL
;
743 /* static */ wxWindow
*wxWindowBase::GetCapture()
745 return (wxWindow
*)gs_mouseCapture
;
748 bool wxWindowMGL::SetCursor(const wxCursor
& cursor
)
750 if ( !wxWindowBase::SetCursor(cursor
) )
757 MGL_wmSetWindowCursor(m_wnd
, *m_cursor
.GetMGLCursor());
759 MGL_wmSetWindowCursor(m_wnd
, *wxSTANDARD_CURSOR
->GetMGLCursor());
764 void wxWindowMGL::WarpPointer(int x
, int y
)
766 ClientToScreen(&x
, &y
);
767 EVT_setMousePos(x
, y
);
770 #if WXWIN_COMPATIBILITY
771 // If nothing defined for this, try the parent.
772 // E.g. we may be a button loaded from a resource, with no callback function
774 void wxWindowMGL::OnCommand(wxWindow
& win
, wxCommandEvent
& event
)
776 if ( GetEventHandler()->ProcessEvent(event
) )
779 m_parent
->GetEventHandler()->OnCommand(win
, event
);
781 #endif // WXWIN_COMPATIBILITY_2
783 #if WXWIN_COMPATIBILITY
784 wxObject
* wxWindowMGL::GetChild(int number
) const
786 // Return a pointer to the Nth object in the Panel
787 wxNode
*node
= GetChildren().First();
793 wxObject
*obj
= (wxObject
*)node
->Data();
799 #endif // WXWIN_COMPATIBILITY
801 // Set this window to be the child of 'parent'.
802 bool wxWindowMGL::Reparent(wxWindowBase
*parent
)
804 if ( !wxWindowBase::Reparent(parent
) )
807 MGL_wmReparentWindow(m_wnd
, parent
->GetHandle());
813 // ---------------------------------------------------------------------------
815 // ---------------------------------------------------------------------------
817 #if wxUSE_DRAG_AND_DROP
819 void wxWindowMGL::SetDropTarget(wxDropTarget
*pDropTarget
)
821 if ( m_dropTarget
!= 0 ) {
822 m_dropTarget
->Revoke(m_hWnd
);
826 m_dropTarget
= pDropTarget
;
827 if ( m_dropTarget
!= 0 )
828 m_dropTarget
->Register(m_hWnd
);
831 #endif // wxUSE_DRAG_AND_DROP
833 // old style file-manager drag&drop support: we retain the old-style
834 // DragAcceptFiles in parallel with SetDropTarget.
835 void wxWindowMGL::DragAcceptFiles(bool accept
)
838 HWND hWnd
= GetHwnd();
840 ::DragAcceptFiles(hWnd
, (BOOL
)accept
);
844 // ---------------------------------------------------------------------------
845 // moving and resizing
846 // ---------------------------------------------------------------------------
849 void wxWindowMGL::DoGetSize(int *x
, int *y
) const
851 if (x
) *x
= m_wnd
->width
;
852 if (y
) *y
= m_wnd
->height
;
855 void wxWindowMGL::DoGetPosition(int *x
, int *y
) const
857 if (x
) *x
= m_wnd
->x
;
858 if (y
) *y
= m_wnd
->y
;
861 void wxWindowMGL::DoScreenToClient(int *x
, int *y
) const
864 MGL_wmCoordGlobalToLocal(m_wnd
, 0, 0, &ax
, &ay
);
871 void wxWindowMGL::DoClientToScreen(int *x
, int *y
) const
874 MGL_wmCoordLocalToGlobal(m_wnd
, 0, 0, &ax
, &ay
);
881 // Get size *available for subwindows* i.e. excluding menu bar etc.
882 void wxWindowMGL::DoGetClientSize(int *x
, int *y
) const
887 void wxWindowMGL::DoMoveWindow(int x
, int y
, int width
, int height
)
889 MGL_wmSetWindowPosition(GetHandle(), x
, y
, width
, height
);
892 // set the size of the window: if the dimensions are positive, just use them,
893 // but if any of them is equal to -1, it means that we must find the value for
894 // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
895 // which case -1 is a valid value for x and y)
897 // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
898 // the width/height to best suit our contents, otherwise we reuse the current
900 void wxWindowMGL::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
902 // get the current size and position...
903 int currentX
, currentY
;
904 GetPosition(¤tX
, ¤tY
);
905 int currentW
,currentH
;
906 GetSize(¤tW
, ¤tH
);
908 // ... and don't do anything (avoiding flicker) if it's already ok
909 if ( x
== currentX
&& y
== currentY
&&
910 width
== currentW
&& height
== currentH
)
915 if ( x
== -1 && !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
917 if ( y
== -1 && !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
920 AdjustForParentClientOrigin(x
, y
, sizeFlags
);
925 if ( sizeFlags
& wxSIZE_AUTO_WIDTH
)
927 size
= DoGetBestSize();
932 // just take the current one
939 if ( sizeFlags
& wxSIZE_AUTO_HEIGHT
)
943 size
= DoGetBestSize();
945 //else: already called DoGetBestSize() above
951 // just take the current one
956 DoMoveWindow(x
, y
, width
, height
);
958 wxSizeEvent
event(wxSize(width
, height
), GetId());
959 event
.SetEventObject(this);
960 GetEventHandler()->ProcessEvent(event
);
963 void wxWindowMGL::DoSetClientSize(int width
, int height
)
965 SetSize(width
, height
);
968 // ---------------------------------------------------------------------------
970 // ---------------------------------------------------------------------------
972 int wxWindowMGL::GetCharHeight() const
976 return dc
.GetCharHeight();
979 int wxWindowMGL::GetCharWidth() const
983 return dc
.GetCharWidth();
986 void wxWindowMGL::GetTextExtent(const wxString
& string
,
988 int *descent
, int *externalLeading
,
989 const wxFont
*theFont
) const
994 dc
.GetTextExtent(string
, x
, y
, descent
, externalLeading
, (wxFont
*)theFont
);
997 #if wxUSE_CARET && WXWIN_COMPATIBILITY
998 // ---------------------------------------------------------------------------
999 // Caret manipulation
1000 // ---------------------------------------------------------------------------
1002 void wxWindowMGL::CreateCaret(int w
, int h
)
1004 SetCaret(new wxCaret(this, w
, h
));
1007 void wxWindowMGL::CreateCaret(const wxBitmap
*WXUNUSED(bitmap
))
1009 wxFAIL_MSG("not implemented");
1012 void wxWindowMGL::ShowCaret(bool show
)
1014 wxCHECK_RET( m_caret
, "no caret to show" );
1016 m_caret
->Show(show
);
1019 void wxWindowMGL::DestroyCaret()
1024 void wxWindowMGL::SetCaretPos(int x
, int y
)
1026 wxCHECK_RET( m_caret
, "no caret to move" );
1028 m_caret
->Move(x
, y
);
1031 void wxWindowMGL::GetCaretPos(int *x
, int *y
) const
1033 wxCHECK_RET( m_caret
, "no caret to get position of" );
1035 m_caret
->GetPosition(x
, y
);
1037 #endif // wxUSE_CARET
1040 // ---------------------------------------------------------------------------
1042 // ---------------------------------------------------------------------------
1044 void wxWindowMGL::Clear()
1046 wxClientDC
dc((wxWindow
*)this);
1047 wxBrush
brush(GetBackgroundColour(), wxSOLID
);
1048 dc
.SetBackground(brush
);
1052 #include "wx/menu.h"
1053 void wxWindowMGL::Refresh(bool eraseBack
, const wxRect
*rect
)
1055 if ( m_eraseBackground
== -1 )
1056 m_eraseBackground
= eraseBack
;
1058 m_eraseBackground
|= eraseBack
;
1063 r
.left
= rect
->GetLeft(), r
.right
= rect
->GetRight();
1064 r
.top
= rect
->GetTop(), r
.bottom
= rect
->GetBottom();
1065 MGL_wmInvalidateWindowRect(GetHandle(), &r
);
1068 MGL_wmInvalidateWindow(GetHandle());
1071 void wxWindowMGL::Update()
1074 MGL_wmUpdateDC(g_winMng
);
1077 void wxWindowMGL::Freeze()
1080 m_refreshAfterThaw
= FALSE
;
1083 void wxWindowMGL::Thaw()
1086 if ( m_refreshAfterThaw
)
1090 void wxWindowMGL::HandlePaint(MGLDevCtx
*dc
)
1094 // Don't paint anything if the window is frozen.
1095 m_refreshAfterThaw
= TRUE
;
1100 dc
->getClipRegion(clip
);
1101 m_updateRegion
= wxRegion(clip
);
1104 if ( m_eraseBackground
!= 0 )
1106 wxWindowDC
dc((wxWindow
*)this);
1107 wxEraseEvent
eventEr(m_windowId
, &dc
);
1108 eventEr
.SetEventObject(this);
1109 GetEventHandler()->ProcessEvent(eventEr
);
1111 m_eraseBackground
= -1;
1113 wxNcPaintEvent
eventNc(GetId());
1114 eventNc
.SetEventObject(this);
1115 GetEventHandler()->ProcessEvent(eventNc
);
1117 wxPaintEvent
eventPt(GetId());
1118 eventPt
.SetEventObject(this);
1119 GetEventHandler()->ProcessEvent(eventPt
);
1121 m_paintMGLDC
= NULL
;
1122 m_updateRegion
.Clear();
1126 // Find the wxWindow at the current mouse position, returning the mouse
1128 wxWindow
* wxFindWindowAtPointer(wxPoint
& pt
)
1130 return wxFindWindowAtPoint(pt
= wxGetMousePosition());
1133 wxWindow
* wxFindWindowAtPoint(const wxPoint
& pt
)
1135 window_t
*wnd
= MGL_wmGetWindowAtPosition(g_winMng
, pt
.x
, pt
.y
);
1136 return (wxWindow
*)wnd
->userData
;