minor wxMGL fixes -- controls sample is now OK

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12194 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2001-10-28 23:25:35 +00:00
parent 0b7a8cd392
commit f41ed3c442
7 changed files with 27 additions and 6 deletions

View File

@@ -71,16 +71,19 @@ protected:
void Init();
wxString m_title;
bool m_fsIsShowing; /* full screen */
bool m_fsIsShowing:1; /* full screen */
long m_fsSaveStyle;
long m_fsSaveFlag;
wxRect m_fsSaveFrame;
// is the frame currently iconized?
bool m_isIconized;
bool m_isIconized:1;
// and maximized?
bool m_isMaximized;
bool m_isMaximized:1;
wxRect m_savedFrame;
// did we sent wxSizeEvent at least once?
bool m_sizeSet:1;
};
#endif // __WX_TOPLEVEL_H__