void wxTopLevelWindowMac::SetTitle(const wxString& title)
{
wxWindow::SetLabel( title ) ;
- m_nowpeer->SetTitle(title, GetFont().GetEncoding() );
+ if ( m_nowpeer )
+ m_nowpeer->SetTitle(title, GetFont().GetEncoding() );
}
wxString wxTopLevelWindowMac::GetTitle() const
return wxWindow::GetLabel();
}
+void wxTopLevelWindowMac::ShowWithoutActivating()
+{
+ return m_nowpeer->ShowWithoutActivating();
+}
+
bool wxTopLevelWindowMac::ShowFullScreen(bool show, long style)
{
return m_nowpeer->ShowFullScreen(show, style);
{
return m_nowpeer->RequestUserAttention(flags);
}
+
+bool wxTopLevelWindowMac::IsActive()
+{
+ return m_nowpeer->IsActive();
+}