]>
git.saurik.com Git - wxWidgets.git/blob - src/osx/toplevel_osx.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/osx/toplevel.cpp
3 // Purpose: implements wxTopLevelWindow for Mac
4 // Author: Stefan Csomor
8 // Copyright: (c) 2001-2004 Stefan Csomor
9 // License: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
27 #include "wx/toplevel.h"
32 #include "wx/string.h"
35 #include "wx/settings.h"
36 #include "wx/strconv.h"
37 #include "wx/control.h"
40 #include "wx/tooltip.h"
43 #if wxUSE_SYSTEM_OPTIONS
44 #include "wx/sysopt.h"
48 #include "wx/osx/private.h"
50 // ============================================================================
51 // wxTopLevelWindowMac implementation
52 // ============================================================================
54 BEGIN_EVENT_TABLE(wxTopLevelWindowMac
, wxTopLevelWindowBase
)
57 // ----------------------------------------------------------------------------
58 // wxTopLevelWindowMac creation
59 // ----------------------------------------------------------------------------
62 void wxTopLevelWindowMac::Init()
65 m_maximizeOnShow
= false;
68 bool wxTopLevelWindowMac::Create(wxWindow
*parent
,
70 const wxString
& title
,
76 int w
= WidthDefault(size
.x
);
77 int h
= HeightDefault(size
.y
);
79 if ( !wxNonOwnedWindow::Create(parent
, id
, pos
, wxSize(w
,h
), style
, name
) )
82 wxWindow::SetLabel( title
) ;
83 m_nowpeer
->SetTitle(title
, GetFont().GetEncoding() );
84 wxTopLevelWindows
.Append(this);
89 wxTopLevelWindowMac::~wxTopLevelWindowMac()
93 bool wxTopLevelWindowMac::Destroy()
95 // NB: this will get called during destruction if we don't do it now,
96 // and may fire a kill focus event on a control being destroyed
98 if (m_nowpeer
&& m_nowpeer
->GetWXWindow())
99 ClearKeyboardFocus( (WindowRef
)m_nowpeer
->GetWXWindow() );
101 return wxTopLevelWindowBase::Destroy();
105 // ----------------------------------------------------------------------------
106 // wxTopLevelWindowMac maximize/minimize
107 // ----------------------------------------------------------------------------
109 void wxTopLevelWindowMac::Maximize(bool maximize
)
111 if ( IsMaximized() != maximize
)
112 m_nowpeer
->Maximize(maximize
);
115 bool wxTopLevelWindowMac::IsMaximized() const
117 if ( m_nowpeer
== NULL
)
120 return m_nowpeer
->IsMaximized();
123 void wxTopLevelWindowMac::Iconize(bool iconize
)
125 if ( IsIconized() != iconize
)
126 m_nowpeer
->Iconize(iconize
);
129 bool wxTopLevelWindowMac::IsIconized() const
131 if ( m_nowpeer
== NULL
)
134 return m_nowpeer
->IsIconized();
137 void wxTopLevelWindowMac::Restore()
141 else if ( IsIconized() )
145 // ----------------------------------------------------------------------------
146 // wxTopLevelWindowMac misc
147 // ----------------------------------------------------------------------------
149 wxPoint
wxTopLevelWindowMac::GetClientAreaOrigin() const
151 return wxPoint(0, 0) ;
154 void wxTopLevelWindowMac::SetTitle(const wxString
& title
)
156 wxWindow::SetLabel( title
) ;
158 m_nowpeer
->SetTitle(title
, GetFont().GetEncoding() );
161 wxString
wxTopLevelWindowMac::GetTitle() const
163 return wxWindow::GetLabel();
166 void wxTopLevelWindowMac::ShowWithoutActivating()
168 // wxTopLevelWindowBase is derived from wxNonOwnedWindow, so don't
170 if ( !wxWindow::Show(true) )
173 m_nowpeer
->ShowWithoutActivating();
175 // TODO: Should we call EVT_SIZE here?
178 bool wxTopLevelWindowMac::ShowFullScreen(bool show
, long style
)
180 return m_nowpeer
->ShowFullScreen(show
, style
);
183 bool wxTopLevelWindowMac::IsFullScreen() const
185 return m_nowpeer
->IsFullScreen();
188 void wxTopLevelWindowMac::RequestUserAttention(int flags
)
190 return m_nowpeer
->RequestUserAttention(flags
);
193 bool wxTopLevelWindowMac::IsActive()
195 return m_nowpeer
->IsActive();
198 void wxTopLevelWindowMac::OSXSetModified(bool modified
)
200 m_nowpeer
->SetModified(modified
);
203 bool wxTopLevelWindowMac::OSXIsModified() const
205 return m_nowpeer
->IsModified();