X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/cd0d451b082ad2e3adc3691116eff24528d7a646..0738b901b17340f09766524b8d9d79e9ed1268e7:/src/osx/toplevel_osx.cpp?ds=inline diff --git a/src/osx/toplevel_osx.cpp b/src/osx/toplevel_osx.cpp index 91ac80da69..0e646c5f69 100644 --- a/src/osx/toplevel_osx.cpp +++ b/src/osx/toplevel_osx.cpp @@ -157,6 +157,11 @@ 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); @@ -171,3 +176,8 @@ void wxTopLevelWindowMac::RequestUserAttention(int flags) { return m_nowpeer->RequestUserAttention(flags); } + +bool wxTopLevelWindowMac::IsActive() +{ + return m_nowpeer->IsActive(); +}