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
This commit is contained in:
Václav Slavík 2001-09-26 22:10:42 +00:00
parent bcbf288197
commit c8e8ae85c8

View 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!