From c8e8ae85c83383a8134defb48f2b35d09b035a45 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Wed, 26 Sep 2001 22:10:42 +0000 Subject: [PATCH] oops, forgot do add fullscreen stuff to wxTLWBase git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11700 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/toplevel.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/wx/toplevel.h b/include/wx/toplevel.h index f4482a2850..2725b8f010 100644 --- a/include/wx/toplevel.h +++ b/include/wx/toplevel.h @@ -77,6 +77,12 @@ public: // set the frame icon virtual void SetIcon(const wxIcon& icon) { m_icon = icon; } + // maximize the window to cover entire screen + virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL) = 0; + + // return TRUE if the frame is in fullscreen mode + virtual bool IsFullScreen() const = 0; + /* for now we already have them in wxWindow, but this is wrong: these methods really only make sense for wxTopLevelWindow! -- 2.45.2