// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifndef __GTKFRAMEH__
-#define __GTKFRAMEH__
+#ifndef _WX_GTK_FRAME_H_
+#define _WX_GTK_FRAME_H_
//-----------------------------------------------------------------------------
// classes
void SetToolBar(wxToolBar *toolbar);
#endif // wxUSE_TOOLBAR
+ virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL);
wxPoint GetClientAreaOrigin() const { return wxPoint(0, 0); }
// implementation from now on
// --------------------------
// GTK callbacks
- virtual void GtkOnSize( int x, int y, int width, int height );
+ virtual void GtkOnSize();
virtual void OnInternalIdle();
bool m_menuBarDetached;
#endif // wxUSE_STATUSBAR
// override wxWindow methods to take into account tool/menu/statusbars
- virtual void DoSetClientSize(int width, int height);
virtual void DoGetClientSize( int *width, int *height ) const;
#if wxUSE_MENUS_NATIVE
#endif // wxUSE_MENUS_NATIVE
+private:
+ long m_fsSaveFlag;
+
DECLARE_DYNAMIC_CLASS(wxFrame)
};
-#endif // __GTKFRAMEH__
+#endif // _WX_GTK_FRAME_H_