git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11700
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// 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!