]>
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 if ( !wxNonOwnedWindow::Create(parent
, id
, pos
, size
, style
, name
) )
79 wxWindow::SetLabel( title
) ;
80 m_nowpeer
->SetTitle(title
, GetFont().GetEncoding() );
81 wxTopLevelWindows
.Append(this);
86 wxTopLevelWindowMac::~wxTopLevelWindowMac()
90 bool wxTopLevelWindowMac::Destroy()
92 // NB: this will get called during destruction if we don't do it now,
93 // and may fire a kill focus event on a control being destroyed
95 if (m_nowpeer
->GetWXWindow())
96 ClearKeyboardFocus( (WindowRef
)m_nowpeer
->GetWXWindow() );
98 return wxTopLevelWindowBase::Destroy();
102 // ----------------------------------------------------------------------------
103 // wxTopLevelWindowMac maximize/minimize
104 // ----------------------------------------------------------------------------
106 void wxTopLevelWindowMac::Maximize(bool maximize
)
108 if ( IsMaximized() != maximize
)
109 m_nowpeer
->Maximize(maximize
);
112 bool wxTopLevelWindowMac::IsMaximized() const
114 return m_nowpeer
->IsMaximized();
117 void wxTopLevelWindowMac::Iconize(bool iconize
)
119 if ( IsIconized() != iconize
)
120 m_nowpeer
->Iconize(iconize
);
123 bool wxTopLevelWindowMac::IsIconized() const
125 return m_nowpeer
->IsIconized();
128 void wxTopLevelWindowMac::Restore()
132 else if ( IsIconized() )
136 // ----------------------------------------------------------------------------
137 // wxTopLevelWindowMac misc
138 // ----------------------------------------------------------------------------
140 wxPoint
wxTopLevelWindowMac::GetClientAreaOrigin() const
142 return wxPoint(0, 0) ;
145 void wxTopLevelWindowMac::SetTitle(const wxString
& title
)
147 wxWindow::SetLabel( title
) ;
148 m_nowpeer
->SetTitle(title
, GetFont().GetEncoding() );
151 wxString
wxTopLevelWindowMac::GetTitle() const
153 return wxWindow::GetLabel();
156 bool wxTopLevelWindowMac::ShowFullScreen(bool show
, long style
)
158 return m_nowpeer
->ShowFullScreen(show
, style
);
161 bool wxTopLevelWindowMac::IsFullScreen() const
163 return m_nowpeer
->IsFullScreen();
166 void wxTopLevelWindowMac::RequestUserAttention(int flags
)
168 return m_nowpeer
->RequestUserAttention(flags
);