]>
git.saurik.com Git - wxWidgets.git/blob - src/mgl/toplevel.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/mgl/toplevel.cpp
4 // Author: Vaclav Slavik
6 // Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com)
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 // For compilers that support precompilation, includes "wx.h".
11 #include "wx/wxprec.h"
17 // ============================================================================
19 // ============================================================================
21 // ----------------------------------------------------------------------------
23 // ----------------------------------------------------------------------------
25 #include "wx/toplevel.h"
31 #include "wx/mgl/private.h"
33 // ----------------------------------------------------------------------------
35 // ----------------------------------------------------------------------------
37 extern int g_openDialogs
;
39 // ----------------------------------------------------------------------------
41 // ----------------------------------------------------------------------------
43 #ifndef __WXUNIVERSAL__
44 IMPLEMENT_DYNAMIC_CLASS(wxTopLevelWindow
, wxWindow
)
48 // ============================================================================
50 // ============================================================================
52 void wxTopLevelWindowMGL::Init()
56 m_isMaximized
= false;
57 m_fsIsShowing
= false;
61 bool wxTopLevelWindowMGL::Create(wxWindow
*parent
,
63 const wxString
& title
,
64 const wxPoint
& posOrig
,
65 const wxSize
& sizeOrig
,
69 // always create a frame of some reasonable, even if arbitrary, size (at
70 // least for MSW compatibility)
71 wxSize size
= sizeOrig
;
72 if ( size
.x
== wxDefaultCoord
|| size
.y
== wxDefaultCoord
)
74 wxSize sizeDefault
= GetDefaultSize();
75 if ( size
.x
== wxDefaultCoord
)
76 size
.x
= sizeDefault
.x
;
77 if ( size
.y
== wxDefaultCoord
)
78 size
.y
= sizeDefault
.y
;
81 // for default positioning, centre the first top level window and
82 // cascade any addtional ones from there.
83 wxPoint pos
= posOrig
;
84 if ( pos
.x
== wxDefaultCoord
|| pos
.y
== wxDefaultCoord
)
86 wxSize sizeDisplay
= wxGetDisplaySize();
87 static wxPoint
nextPos((sizeDisplay
.x
- size
.x
) / 2,
88 (sizeDisplay
.y
- size
.y
) / 2);
90 if ( pos
.x
== wxDefaultCoord
)
92 if ( pos
.y
== wxDefaultCoord
)
94 if ( pos
.x
+ size
.x
> sizeDisplay
.x
|| pos
.y
+ size
.y
> sizeDisplay
.y
)
97 const wxSize
cascadeOffset(16, 20);
98 nextPos
= pos
+ cascadeOffset
;
101 wxWindow::Create(NULL
, id
, pos
, size
, style
, name
);
104 parent
->AddChild(this);
106 wxTopLevelWindows
.Append(this);
112 bool wxTopLevelWindowMGL::ShowFullScreen(bool show
, long style
)
114 if (show
== m_fsIsShowing
) return false; // return what?
116 m_fsIsShowing
= show
;
120 m_fsSaveStyle
= m_windowStyle
;
121 m_fsSaveFlag
= style
;
122 GetPosition(&m_fsSaveFrame
.x
, &m_fsSaveFrame
.y
);
123 GetSize(&m_fsSaveFrame
.width
, &m_fsSaveFrame
.height
);
125 if ( style
& wxFULLSCREEN_NOCAPTION
)
126 m_windowStyle
&= ~wxCAPTION
;
127 if ( style
& wxFULLSCREEN_NOBORDER
)
128 m_windowStyle
= wxSIMPLE_BORDER
;
131 wxDisplaySize(&x
, &y
);
136 m_windowStyle
= m_fsSaveStyle
;
137 SetSize(m_fsSaveFrame
.x
, m_fsSaveFrame
.y
,
138 m_fsSaveFrame
.width
, m_fsSaveFrame
.height
);
144 bool wxTopLevelWindowMGL::Show(bool show
)
146 bool ret
= wxTopLevelWindowBase::Show(show
);
148 // If this is the first time Show was called, send size event,
149 // so that the frame can adjust itself (think auto layout or single child)
153 wxSizeEvent
event(GetSize(), GetId());
154 event
.SetEventObject(this);
155 HandleWindowEvent(event
);
158 if ( ret
&& show
&& CanAcceptFocus() )
160 // FIXME_MGL -- don't do this for popup windows?
164 void wxTopLevelWindowMGL::Maximize(bool maximize
)
167 wxClientDisplayRect(&x
, &y
, &w
, &h
);
169 rect_t screenRect
= MGL_defRect(x
, y
, w
, h
);
170 MGL_wmInvalidateRect(g_winMng
, &screenRect
);
172 if ( maximize
&& !m_isMaximized
)
174 m_isMaximized
= true;
176 GetPosition(&m_savedFrame
.x
, &m_savedFrame
.y
);
177 GetSize(&m_savedFrame
.width
, &m_savedFrame
.height
);
181 else if ( !maximize
&& m_isMaximized
)
183 m_isMaximized
= false;
184 SetSize(m_savedFrame
.x
, m_savedFrame
.y
,
185 m_savedFrame
.width
, m_savedFrame
.height
);
189 bool wxTopLevelWindowMGL::IsMaximized() const
191 return m_isMaximized
;
194 void wxTopLevelWindowMGL::Restore()
206 void wxTopLevelWindowMGL::Iconize(bool WXUNUSED(iconize
))
208 wxFAIL_MSG(wxT("Iconize not supported under wxMGL"));
209 // FIXME_MGL - Iconize is not supported in fullscreen mode.
210 // It will be supported in windowed mode (if ever implemented in MGL...)
213 bool wxTopLevelWindowMGL::IsIconized() const