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
*g_focusedWindow
= NULL
;
68 // the window that is currently under mouse cursor:
69 static wxWindowMGL
*g_windowUnderMouse
= NULL
;
71 // ---------------------------------------------------------------------------
73 // ---------------------------------------------------------------------------
75 // Custom identifiers used to distinguish between various event handlers
76 // and capture handlers passed to MGL_wm
79 wxMGL_CAPTURE_MOUSE
= 1,
80 wxMGL_CAPTURE_KEYB
= 2
84 // ---------------------------------------------------------------------------
86 // ---------------------------------------------------------------------------
88 // wxCreateMGL_WM creates MGL display DC and associates it with winmng_t
89 // structure. Dimensions and depth of the DC are fetched from wxSystemOptions
91 // This function is *not* called from wxApp's initialization but rather at
92 // the time when WM is needed, i.e. when first wxWindow is created. This
93 // has two important effects:
94 // a) it is possible to write windowless wxMGL apps
95 // b) the app has plenty of time in wxApp::OnInit to feed wxSystemOptions
96 // with desired settings
98 // FIXME_MGL -- move to app.cpp??
99 static void wxDesktopPainter(window_t
*wnd
, MGLDC
*dc
)
101 // FIXME_MGL - for now...
102 MGL_setColorRGB(0x63, 0x63, 0x96);
103 MGL_fillRectCoord(0, 0, wnd
->width
, wnd
->height
);
107 bool wxCreateMGL_WM()
110 int width
= 640, height
= 480, depth
= 16;
111 int refresh
= MGL_DEFAULT_REFRESH
;
113 #if wxUSE_SYSTEM_OPTIONS
114 // FIXME_MGL -- so what is The Proper Way?
115 if ( wxSystemOptions::HasOption(wxT("mgl.screen-width") )
116 width
= wxSystemOptions::GetOptionInt(wxT("mgl.screen-width"));
117 if ( wxSystemOptions::HasOption(wxT("mgl.screen-height") )
118 height
= wxSystemOptions::GetOptionInt(wxT("mgl.screen-height"));
119 if ( wxSystemOptions::HasOption(wxT("mgl.screen-depth") )
120 depth
= wxSystemOptions::GetOptionInt(wxT("mgl.screen-depth"));
121 if ( wxSystemOptions::HasOption(wxT("mgl.screen-refresh") )
122 refresh
= wxSystemOptions::GetOptionInt(wxT("mgl.screen-refresh"));
125 mode
= MGL_findMode(width
, height
, depth
);
128 wxLogWarning(_("Mode %ix%i-%i not available, falling back to default mode."), width
, height
, depth
);
129 mode
= 0; // always available
131 g_displayDC
= new MGLDisplayDC(mode
, 1, refresh
);
132 if ( !g_displayDC
->isValid() )
139 g_winMng
= MGL_wmCreate(g_displayDC
->getDC());
143 MGL_wmSetWindowPainter(MGL_wmGetRootWindow(g_winMng
), wxDesktopPainter
);
148 void wxDestroyMGL_WM()
152 MGL_wmDestroy(g_winMng
);
162 // ---------------------------------------------------------------------------
164 // ---------------------------------------------------------------------------
166 static void wxWindowPainter(window_t
*wnd
, MGLDC
*dc
)
168 wxWindowMGL
*w
= (wxWindow
*) wnd
->userData
;
169 if (w
&& !(w
->GetStyle() & wxTRANSPARENT_WINDOW
))
172 w
->HandlePaint(&ctx
);
174 // FIXME_MGL -- root window should be a regular window so that
175 // enter/leave and activate/deactivate events work correctly
178 static ibool
wxWindowMouseHandler(window_t
*wnd
, event_t
*e
)
180 wxWindowMGL
*win
= (wxWindowMGL
*)MGL_wmGetWindowUserData(wnd
);
181 wxPoint where
= win
->ScreenToClient(wxPoint(e
->where_x
, e
->where_y
));
183 if ( !win
->IsEnabled() ) return FALSE
;
185 wxEventType type
= wxEVT_NULL
;
187 event
.SetEventObject(win
);
188 event
.SetTimestamp(e
->when
);
191 event
.m_shiftDown
= e
->modifiers
& EVT_SHIFTKEY
;
192 event
.m_controlDown
= e
->modifiers
& EVT_CTRLSTATE
;
193 event
.m_altDown
= e
->modifiers
& EVT_LEFTALT
;
194 event
.m_metaDown
= e
->modifiers
& EVT_RIGHTALT
;
195 event
.m_leftDown
= e
->modifiers
& EVT_LEFTBUT
;
196 event
.m_middleDown
= e
->modifiers
& EVT_MIDDLEBUT
;
197 event
.m_rightDown
= e
->modifiers
& EVT_RIGHTBUT
;
202 if ( e
->message
& EVT_LEFTBMASK
)
203 type
= (e
->message
& EVT_DBLCLICK
) ?
204 wxEVT_LEFT_DCLICK
: wxEVT_LEFT_DOWN
;
205 else if ( e
->message
& EVT_MIDDLEBMASK
)
206 type
= (e
->message
& EVT_DBLCLICK
) ?
207 wxEVT_MIDDLE_DCLICK
: wxEVT_MIDDLE_DOWN
;
208 else if ( e
->message
& EVT_RIGHTBMASK
)
209 type
= (e
->message
& EVT_DBLCLICK
) ?
210 wxEVT_RIGHT_DCLICK
: wxEVT_RIGHT_DOWN
;
214 if ( e
->message
& EVT_LEFTBMASK
)
215 type
= wxEVT_LEFT_UP
;
216 else if ( e
->message
& EVT_MIDDLEBMASK
)
217 type
= wxEVT_MIDDLE_UP
;
218 else if ( e
->message
& EVT_RIGHTBMASK
)
219 type
= wxEVT_RIGHT_UP
;
223 if ( win
!= g_windowUnderMouse
)
225 if ( g_windowUnderMouse
)
227 wxMouseEvent
event2(event
);
228 wxPoint where2
= g_windowUnderMouse
->ScreenToClient(
229 wxPoint(e
->where_x
, e
->where_y
));
230 event2
.m_x
= where2
.x
;
231 event2
.m_y
= where2
.y
;
232 event2
.SetEventObject(g_windowUnderMouse
);
233 event2
.SetEventType(wxEVT_LEAVE_WINDOW
);
234 g_windowUnderMouse
->GetEventHandler()->ProcessEvent(event2
);
237 wxMouseEvent
event3(event
);
238 event3
.SetEventType(wxEVT_ENTER_WINDOW
);
239 win
->GetEventHandler()->ProcessEvent(event3
);
241 g_windowUnderMouse
= win
;
251 if ( type
== wxEVT_NULL
)
257 event
.SetEventType(type
);
258 return win
->GetEventHandler()->ProcessEvent(event
);
262 static long wxScanToKeyCode(event_t
*event
)
264 #define KEY(mgl,wx) case mgl: key = wx; break;
267 switch ( EVT_scanCode(event
->message
) )
269 KEY (KB_padEnter
, WXK_NUMPAD_ENTER
)
270 KEY (KB_padMinus
, WXK_NUMPAD_SUBTRACT
)
271 KEY (KB_padPlus
, WXK_NUMPAD_ADD
)
272 KEY (KB_padTimes
, WXK_NUMPAD_MULTIPLY
)
273 KEY (KB_padDivide
, WXK_NUMPAD_DIVIDE
)
274 KEY (KB_padLeft
, WXK_NUMPAD_LEFT
)
275 KEY (KB_padRight
, WXK_NUMPAD_RIGHT
)
276 KEY (KB_padUp
, WXK_NUMPAD_UP
)
277 KEY (KB_padDown
, WXK_NUMPAD_DOWN
)
278 KEY (KB_padInsert
, WXK_NUMPAD_INSERT
)
279 KEY (KB_padDelete
, WXK_NUMPAD_DELETE
)
280 KEY (KB_padHome
, WXK_NUMPAD_HOME
)
281 KEY (KB_padEnd
, WXK_NUMPAD_END
)
282 KEY (KB_padPageUp
, WXK_NUMPAD_PAGEUP
)
283 //KEY (KB_padPageUp, WXK_NUMPAD_PRIOR)
284 KEY (KB_padPageDown
, WXK_NUMPAD_PAGEDOWN
)
285 //KEY (KB_padPageDown, WXK_NUMPAD_NEXT)
286 KEY (KB_padCenter
, WXK_NUMPAD_SEPARATOR
) // ?
296 KEY (KB_F10
, WXK_F10
)
297 KEY (KB_F11
, WXK_F11
)
298 KEY (KB_F12
, WXK_F12
)
299 KEY (KB_left
, WXK_LEFT
)
300 KEY (KB_right
, WXK_RIGHT
)
302 KEY (KB_down
, WXK_DOWN
)
303 KEY (KB_insert
, WXK_INSERT
)
304 KEY (KB_delete
, WXK_DELETE
)
305 KEY (KB_home
, WXK_HOME
)
306 KEY (KB_end
, WXK_END
)
307 KEY (KB_pageUp
, WXK_PAGEUP
)
308 KEY (KB_pageDown
, WXK_PAGEDOWN
)
309 KEY (KB_capsLock
, WXK_CAPITAL
)
310 KEY (KB_numLock
, WXK_NUMLOCK
)
311 KEY (KB_scrollLock
, WXK_SCROLL
)
312 KEY (KB_leftShift
, WXK_SHIFT
)
313 KEY (KB_rightShift
, WXK_SHIFT
)
314 KEY (KB_leftCtrl
, WXK_CONTROL
)
315 KEY (KB_rightCtrl
, WXK_CONTROL
)
316 KEY (KB_leftAlt
, WXK_ALT
)
317 KEY (KB_rightAlt
, WXK_ALT
)
318 KEY (KB_leftWindows
, WXK_START
)
319 KEY (KB_rightWindows
, WXK_START
)
320 KEY (KB_menu
, WXK_MENU
)
321 KEY (KB_sysReq
, WXK_SNAPSHOT
)
322 KEY (KB_esc
, WXK_ESCAPE
)
333 KEY (KB_minus
, WXK_SUBTRACT
)
334 KEY (KB_equals
, WXK_ADD
)
335 KEY (KB_backSlash
, '\\')
336 KEY (KB_backspace
, WXK_BACK
)
337 KEY (KB_tab
, WXK_TAB
)
348 KEY (KB_leftSquareBrace
,'[')
349 KEY (KB_rightSquareBrace
,']')
350 KEY (KB_enter
, WXK_RETURN
)
360 KEY (KB_semicolon
, ';')
361 KEY (KB_apostrophe
, '\'')
371 KEY (KB_divide
, WXK_DIVIDE
)
372 KEY (KB_space
, WXK_SPACE
)
376 key
= EVT_asciiCode(event
->message
);
383 static long wxAsciiToKeyCode(event_t
*event
)
385 return (long)EVT_asciiCode(event
->message
);
388 static ibool
wxWindowKeybHandler(window_t
*wnd
, event_t
*e
)
390 wxEventType type
= wxEVT_NULL
;
391 wxWindowMGL
*win
= (wxWindowMGL
*)MGL_wmGetWindowUserData(wnd
);
393 if ( !win
->IsEnabled() ) return FALSE
;
395 wxPoint where
= win
->ScreenToClient(wxPoint(e
->where_x
, e
->where_y
));
398 event
.SetEventObject(win
);
399 event
.SetTimestamp(e
->when
);
400 event
.m_keyCode
= wxScanToKeyCode(e
);
401 event
.m_scanCode
= 0; // not used by wx at all
404 event
.m_shiftDown
= e
->modifiers
& EVT_SHIFTKEY
;
405 event
.m_controlDown
= e
->modifiers
& EVT_CTRLSTATE
;
406 event
.m_altDown
= e
->modifiers
& EVT_LEFTALT
;
407 event
.m_metaDown
= e
->modifiers
& EVT_RIGHTALT
;
409 if ( e
->what
== EVT_KEYUP
)
411 event
.SetEventType(wxEVT_KEY_UP
);
412 return win
->GetEventHandler()->ProcessEvent(event
);
419 event
.SetEventType(wxEVT_KEY_DOWN
);
422 ret
= win
->GetEventHandler()->ProcessEvent(event
);
427 for (wxWindowMGL
*w
= win
; w
; w
= w
->GetParent())
429 int command
= w
->GetAcceleratorTable()->GetCommand(event
);
432 wxCommandEvent
eventc(wxEVT_COMMAND_MENU_SELECTED
, command
);
433 ret
= w
->GetEventHandler()->ProcessEvent(eventc
);
436 if ( w
->IsTopLevel() )
440 #endif // wxUSE_ACCEL
442 /* wxMSW doesn't send char events with Alt pressed */
443 /* Only send wxEVT_CHAR event if not processed yet. Thus, ALT-x
444 will only be sent if it is not in an accelerator table. */
445 event2
.m_keyCode
= wxAsciiToKeyCode(e
);
446 if ( !ret
&& event2
.m_keyCode
!= 0 )
448 event2
.SetEventType(wxEVT_CHAR
);
449 ret
= win
->GetEventHandler()->ProcessEvent(event2
);
456 // ---------------------------------------------------------------------------
458 // ---------------------------------------------------------------------------
460 // in wxUniv this class is abstract because it doesn't have DoPopupMenu()
461 IMPLEMENT_ABSTRACT_CLASS(wxWindowMGL
, wxWindowBase
)
463 BEGIN_EVENT_TABLE(wxWindowMGL
, wxWindowBase
)
466 // ===========================================================================
468 // ===========================================================================
470 // ----------------------------------------------------------------------------
471 // constructors and such
472 // ----------------------------------------------------------------------------
474 void wxWindowMGL::Init()
482 m_isBeingDeleted
= FALSE
;
486 m_eraseBackground
= -1;
490 wxWindowMGL::~wxWindowMGL()
492 m_isBeingDeleted
= TRUE
;
494 if ( g_focusedWindow
== this )
496 if ( g_windowUnderMouse
== this )
497 g_windowUnderMouse
= NULL
;
499 // VS: destroy children first and _then_ detach *this from its parent.
500 // If we'd do it the other way around, children wouldn't be able
501 // find their parent frame (see above).
505 m_parent
->RemoveChild(this);
508 MGL_wmDestroyWindow(m_wnd
);
511 // real construction (Init() must have been called before!)
512 bool wxWindowMGL::Create(wxWindow
*parent
,
517 const wxString
& name
)
519 // FIXME_MGL -- temporary!
520 //wxCHECK_MSG( parent, FALSE, wxT("can't create wxWindow without parent") );
522 if ( !CreateBase(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
525 if ( parent
) // FIXME_MGL temporary
526 parent
->AddChild(this);
528 m_isShown
=FALSE
;// FIXME_MGL -- temporary, simulates wxTLW/wxFrame
530 if ( style
& wxPOPUP_WINDOW
)
532 // it is created hidden as other top level windows
537 x
= pos
.x
, y
= pos
.y
;
539 x
= 0; // FIXME_MGL, something better, see GTK+
541 y
= 0; // FIXME_MGL, something better, see GTK+
542 w
= WidthDefault(size
.x
);
543 h
= HeightDefault(size
.y
);
546 if ( !(style
& wxNO_FULL_REPAINT_ON_RESIZE
) )
547 mgl_style
|= MGL_WM_FULL_REPAINT_ON_RESIZE
;
548 if ( style
& wxSTAY_ON_TOP
)
549 mgl_style
|= MGL_WM_ALWAYS_ON_TOP
;
551 m_wnd
= MGL_wmCreateWindow(g_winMng
,
552 parent
? parent
->GetHandle() : NULL
,
555 MGL_wmSetWindowFlags(m_wnd
, mgl_style
);
556 MGL_wmSetWindowUserData(m_wnd
, (void*) this);
557 MGL_wmSetWindowPainter(m_wnd
, wxWindowPainter
);
558 MGL_wmShowWindow(m_wnd
, m_isShown
);
559 MGL_wmSetWindowCursor(m_wnd
, *wxSTANDARD_CURSOR
->GetMGLCursor());
561 MGL_wmPushWindowEventHandler(m_wnd
, wxWindowMouseHandler
, EVT_MOUSEEVT
, 0);
562 MGL_wmPushWindowEventHandler(m_wnd
, wxWindowKeybHandler
, EVT_KEYEVT
, 0);
567 // ---------------------------------------------------------------------------
569 // ---------------------------------------------------------------------------
571 void wxWindowMGL::SetFocus()
574 g_focusedWindow
->KillFocus();
576 g_focusedWindow
= this;
578 MGL_wmCaptureEvents(GetHandle(), EVT_KEYEVT
, wxMGL_CAPTURE_KEYB
);
581 // caret needs to be informed about focus change
582 wxCaret
*caret
= GetCaret();
585 #endif // wxUSE_CARET
589 wxActivateEvent
event(wxEVT_ACTIVATE
, TRUE
, GetId());
590 event
.SetEventObject(this);
591 GetEventHandler()->ProcessEvent(event
);
594 wxFocusEvent
event(wxEVT_SET_FOCUS
, GetId());
595 event
.SetEventObject(this);
596 GetEventHandler()->ProcessEvent(event
);
599 void wxWindowMGL::KillFocus()
601 if ( g_focusedWindow
!= this ) return;
602 g_focusedWindow
= NULL
;
604 if ( m_isBeingDeleted
) return;
606 MGL_wmUncaptureEvents(GetHandle(), wxMGL_CAPTURE_KEYB
);
609 // caret needs to be informed about focus change
610 wxCaret
*caret
= GetCaret();
612 caret
->OnKillFocus();
613 #endif // wxUSE_CARET
617 wxActivateEvent
event(wxEVT_ACTIVATE
, FALSE
, GetId());
618 event
.SetEventObject(this);
619 GetEventHandler()->ProcessEvent(event
);
622 wxFocusEvent
event(wxEVT_KILL_FOCUS
, GetId());
623 event
.SetEventObject(this);
624 GetEventHandler()->ProcessEvent(event
);
627 // ----------------------------------------------------------------------------
628 // this wxWindowBase function is implemented here (in platform-specific file)
629 // because it is static and so couldn't be made virtual
630 // ----------------------------------------------------------------------------
631 wxWindow
*wxWindowBase::FindFocus()
633 return (wxWindow
*)g_focusedWindow
;
636 bool wxWindowMGL::Show(bool show
)
638 if ( !wxWindowBase::Show(show
) )
641 MGL_wmShowWindow(m_wnd
, show
);
645 // Raise the window to the top of the Z order
646 void wxWindowMGL::Raise()
648 MGL_wmRaiseWindow(m_wnd
);
651 // Lower the window to the bottom of the Z order
652 void wxWindowMGL::Lower()
654 MGL_wmLowerWindow(m_wnd
);
657 void wxWindowMGL::CaptureMouse()
659 MGL_wmCaptureEvents(m_wnd
, EVT_MOUSEEVT
, wxMGL_CAPTURE_MOUSE
);
662 void wxWindowMGL::ReleaseMouse()
664 MGL_wmUncaptureEvents(m_wnd
, wxMGL_CAPTURE_MOUSE
);
667 /* static */ wxWindow
*wxWindowBase::GetCapture()
669 for (captureentry_t
*c
= g_winMng
->capturedEvents
; c
; c
= c
->next
)
671 if ( c
->id
== wxMGL_CAPTURE_MOUSE
)
672 return (wxWindow
*)c
->wnd
->userData
;
677 bool wxWindowMGL::SetCursor(const wxCursor
& cursor
)
679 if ( !wxWindowBase::SetCursor(cursor
) )
686 MGL_wmSetWindowCursor(m_wnd
, *m_cursor
.GetMGLCursor());
688 MGL_wmSetWindowCursor(m_wnd
, *wxSTANDARD_CURSOR
->GetMGLCursor());
693 void wxWindowMGL::WarpPointer(int x
, int y
)
695 ClientToScreen(&x
, &y
);
696 EVT_setMousePos(x
, y
);
699 #if WXWIN_COMPATIBILITY
700 // If nothing defined for this, try the parent.
701 // E.g. we may be a button loaded from a resource, with no callback function
703 void wxWindowMGL::OnCommand(wxWindow
& win
, wxCommandEvent
& event
)
705 if ( GetEventHandler()->ProcessEvent(event
) )
708 m_parent
->GetEventHandler()->OnCommand(win
, event
);
710 #endif // WXWIN_COMPATIBILITY_2
712 #if WXWIN_COMPATIBILITY
713 wxObject
* wxWindowMGL::GetChild(int number
) const
715 // Return a pointer to the Nth object in the Panel
716 wxNode
*node
= GetChildren().First();
722 wxObject
*obj
= (wxObject
*)node
->Data();
728 #endif // WXWIN_COMPATIBILITY
730 // Set this window to be the child of 'parent'.
731 bool wxWindowMGL::Reparent(wxWindowBase
*parent
)
733 if ( !wxWindowBase::Reparent(parent
) )
736 MGL_wmReparentWindow(m_wnd
, parent
->GetHandle());
742 // ---------------------------------------------------------------------------
744 // ---------------------------------------------------------------------------
746 #if wxUSE_DRAG_AND_DROP
748 void wxWindowMGL::SetDropTarget(wxDropTarget
*pDropTarget
)
750 if ( m_dropTarget
!= 0 ) {
751 m_dropTarget
->Revoke(m_hWnd
);
755 m_dropTarget
= pDropTarget
;
756 if ( m_dropTarget
!= 0 )
757 m_dropTarget
->Register(m_hWnd
);
760 #endif // wxUSE_DRAG_AND_DROP
762 // old style file-manager drag&drop support: we retain the old-style
763 // DragAcceptFiles in parallel with SetDropTarget.
764 void wxWindowMGL::DragAcceptFiles(bool accept
)
767 HWND hWnd
= GetHwnd();
769 ::DragAcceptFiles(hWnd
, (BOOL
)accept
);
773 // ---------------------------------------------------------------------------
774 // moving and resizing
775 // ---------------------------------------------------------------------------
778 void wxWindowMGL::DoGetSize(int *x
, int *y
) const
780 if (x
) *x
= m_wnd
->width
;
781 if (y
) *y
= m_wnd
->height
;
784 void wxWindowMGL::DoGetPosition(int *x
, int *y
) const
786 if (x
) *x
= m_wnd
->x
;
787 if (y
) *y
= m_wnd
->y
;
790 void wxWindowMGL::DoScreenToClient(int *x
, int *y
) const
793 wxPoint co
= GetClientAreaOrigin();
795 MGL_wmCoordGlobalToLocal(m_wnd
, m_wnd
->x
, m_wnd
->y
, &ax
, &ay
);
804 void wxWindowMGL::DoClientToScreen(int *x
, int *y
) const
807 wxPoint co
= GetClientAreaOrigin();
809 MGL_wmCoordGlobalToLocal(m_wnd
, m_wnd
->x
+co
.x
, m_wnd
->y
+co
.y
, &ax
, &ay
);
816 // Get size *available for subwindows* i.e. excluding menu bar etc.
817 void wxWindowMGL::DoGetClientSize(int *x
, int *y
) const
822 void wxWindowMGL::DoMoveWindow(int x
, int y
, int width
, int height
)
824 MGL_wmSetWindowPosition(GetHandle(), x
, y
, width
, height
);
827 // set the size of the window: if the dimensions are positive, just use them,
828 // but if any of them is equal to -1, it means that we must find the value for
829 // it ourselves (unless sizeFlags contains wxSIZE_ALLOW_MINUS_ONE flag, in
830 // which case -1 is a valid value for x and y)
832 // If sizeFlags contains wxSIZE_AUTO_WIDTH/HEIGHT flags (default), we calculate
833 // the width/height to best suit our contents, otherwise we reuse the current
835 void wxWindowMGL::DoSetSize(int x
, int y
, int width
, int height
, int sizeFlags
)
837 // get the current size and position...
838 int currentX
, currentY
;
839 GetPosition(¤tX
, ¤tY
);
840 int currentW
,currentH
;
841 GetSize(¤tW
, ¤tH
);
843 // ... and don't do anything (avoiding flicker) if it's already ok
844 if ( x
== currentX
&& y
== currentY
&&
845 width
== currentW
&& height
== currentH
)
850 if ( x
== -1 && !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
852 if ( y
== -1 && !(sizeFlags
& wxSIZE_ALLOW_MINUS_ONE
) )
855 AdjustForParentClientOrigin(x
, y
, sizeFlags
);
860 if ( sizeFlags
& wxSIZE_AUTO_WIDTH
)
862 size
= DoGetBestSize();
867 // just take the current one
874 if ( sizeFlags
& wxSIZE_AUTO_HEIGHT
)
878 size
= DoGetBestSize();
880 //else: already called DoGetBestSize() above
886 // just take the current one
891 DoMoveWindow(x
, y
, width
, height
);
893 wxSizeEvent
event(wxSize(width
, height
), GetId());
894 event
.SetEventObject(this);
895 GetEventHandler()->ProcessEvent(event
);
898 void wxWindowMGL::DoSetClientSize(int width
, int height
)
900 SetSize(width
, height
);
903 // ---------------------------------------------------------------------------
905 // ---------------------------------------------------------------------------
907 int wxWindowMGL::GetCharHeight() const
911 return dc
.GetCharHeight();
914 int wxWindowMGL::GetCharWidth() const
918 return dc
.GetCharWidth();
921 void wxWindowMGL::GetTextExtent(const wxString
& string
,
923 int *descent
, int *externalLeading
,
924 const wxFont
*theFont
) const
929 dc
.GetTextExtent(string
, x
, y
, descent
, externalLeading
, (wxFont
*)theFont
);
932 #if wxUSE_CARET && WXWIN_COMPATIBILITY
933 // ---------------------------------------------------------------------------
934 // Caret manipulation
935 // ---------------------------------------------------------------------------
937 void wxWindowMGL::CreateCaret(int w
, int h
)
939 SetCaret(new wxCaret(this, w
, h
));
942 void wxWindowMGL::CreateCaret(const wxBitmap
*WXUNUSED(bitmap
))
944 wxFAIL_MSG("not implemented");
947 void wxWindowMGL::ShowCaret(bool show
)
949 wxCHECK_RET( m_caret
, "no caret to show" );
954 void wxWindowMGL::DestroyCaret()
959 void wxWindowMGL::SetCaretPos(int x
, int y
)
961 wxCHECK_RET( m_caret
, "no caret to move" );
966 void wxWindowMGL::GetCaretPos(int *x
, int *y
) const
968 wxCHECK_RET( m_caret
, "no caret to get position of" );
970 m_caret
->GetPosition(x
, y
);
972 #endif // wxUSE_CARET
975 // ---------------------------------------------------------------------------
977 // ---------------------------------------------------------------------------
979 void wxWindowMGL::Clear()
981 wxClientDC
dc((wxWindow
*)this);
982 wxBrush
brush(GetBackgroundColour(), wxSOLID
);
983 dc
.SetBackground(brush
);
987 void wxWindowMGL::Refresh(bool eraseBack
, const wxRect
*rect
)
989 if ( m_eraseBackground
== -1 )
990 m_eraseBackground
= eraseBack
;
992 m_eraseBackground
|= eraseBack
;
997 r
.left
= rect
->GetLeft(), r
.right
= rect
->GetRight();
998 r
.top
= rect
->GetTop(), r
.bottom
= rect
->GetBottom();
999 MGL_wmInvalidateWindowRect(GetHandle(), &r
);
1002 MGL_wmInvalidateWindow(GetHandle());
1005 void wxWindowMGL::Update()
1008 MGL_wmUpdateDC(g_winMng
);
1011 void wxWindowMGL::Freeze()
1014 m_refreshAfterThaw
= FALSE
;
1017 void wxWindowMGL::Thaw()
1020 if ( m_refreshAfterThaw
)
1024 void wxWindowMGL::HandlePaint(MGLDevCtx
*dc
)
1028 // Don't paint anything if the window is frozen.
1029 m_refreshAfterThaw
= TRUE
;
1034 dc
->getClipRegion(clip
);
1035 m_updateRegion
= wxRegion(clip
);
1038 if ( m_eraseBackground
!= 0 )
1040 wxWindowDC
dc((wxWindow
*)this);
1041 wxEraseEvent
eventEr(m_windowId
, &dc
);
1042 eventEr
.SetEventObject(this);
1043 GetEventHandler()->ProcessEvent(eventEr
);
1045 m_eraseBackground
= -1;
1047 wxNcPaintEvent
eventNc(GetId());
1048 eventNc
.SetEventObject(this);
1049 GetEventHandler()->ProcessEvent(eventNc
);
1051 wxPaintEvent
eventPt(GetId());
1052 eventPt
.SetEventObject(this);
1053 GetEventHandler()->ProcessEvent(eventPt
);
1055 m_paintMGLDC
= NULL
;
1056 m_updateRegion
.Clear();
1060 // Find the wxWindow at the current mouse position, returning the mouse
1062 wxWindow
* wxFindWindowAtPointer(wxPoint
& pt
)
1064 return wxFindWindowAtPoint(pt
= wxGetMousePosition());
1067 wxWindow
* wxFindWindowAtPoint(const wxPoint
& pt
)
1069 window_t
*wnd
= MGL_wmGetWindowAtPosition(g_winMng
, pt
.x
, pt
.y
);
1070 return (wxWindow
*)wnd
->userData
;