X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a6e2b3a8316c430a68f91b3c894e856987dd972e..bfb9ee966d5d1f29e49f38e340812ade4b3cc956:/include/wx/gtk/frame.h diff --git a/include/wx/gtk/frame.h b/include/wx/gtk/frame.h index 34cb29433b..702f519005 100644 --- a/include/wx/gtk/frame.h +++ b/include/wx/gtk/frame.h @@ -69,6 +69,9 @@ public: virtual void MakeModal(bool modal = TRUE); virtual void Restore(); + virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL); + virtual bool IsFullScreen() const { return m_fsIsShowing; }; + virtual void SetMenuBar( wxMenuBar *menuBar ); #if wxUSE_STATUSBAR @@ -111,6 +114,13 @@ public: bool m_toolBarDetached; bool m_insertInClientArea; /* not from within OnCreateXXX */ + bool m_isIconized; + + bool m_fsIsShowing; /* full screen */ + long m_fsSaveStyle; + long m_fsSaveFlag; + wxRect m_fsSaveFrame; + protected: // common part of all ctors void Init();