virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL);
virtual bool IsFullScreen() const { return m_fsIsShowing; };
-#if wxUSE_MENUS
- virtual void SetMenuBar( wxMenuBar *menuBar );
-#endif // wxUSE_MENUS
-
#if wxUSE_STATUSBAR
virtual void PositionStatusBar();
virtual void DoSetClientSize(int width, int height);
virtual void DoGetClientSize( int *width, int *height ) const;
- // is the frame currently iconized?
- bool m_isIconized;
+#if wxUSE_MENUS_NATIVE
+ virtual void DetachMenuBar();
+ virtual void AttachMenuBar(wxMenuBar *menubar);
+#endif // wxUSE_MENUS_NATIVE
-private:
- DECLARE_DYNAMIC_CLASS(wxFrameGTK)
+ // is the frame currently iconized?
+ bool m_isIconized;
};
#endif // __GTKFRAMEH__