Applied DrawArc patch.

Applied break-up-region patch.
  Implemented sort of ShowFullScreen() - test in scrollsub.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8253 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2000-09-05 10:51:30 +00:00
parent 4dbd4ee604
commit 3d0c4d2e7b
9 changed files with 443 additions and 14 deletions

View File

@@ -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,11 @@ public:
bool m_toolBarDetached;
bool m_insertInClientArea; /* not from within OnCreateXXX */
bool m_fsIsShowing; /* full screen */
long m_fsSaveStyle;
long m_fsSaveFlag;
wxRect m_fsSaveFrame;
protected:
// common part of all ctors
void Init();