]> git.saurik.com Git - wxWidgets.git/commitdiff
oops, forgot do add fullscreen stuff to wxTLWBase
authorVáclav Slavík <vslavik@fastmail.fm>
Wed, 26 Sep 2001 22:10:42 +0000 (22:10 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Wed, 26 Sep 2001 22:10:42 +0000 (22:10 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11700 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/toplevel.h

index f4482a2850bebeb81f0e8592ffdf7cc9bc40158c..2725b8f0104f59920605f77c4dd74db9d045d573 100644 (file)
@@ -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!