X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7c0ea335c7b1aa4ebd8b3a79dfb4be9fb20eefdb..695237bccd652c60deba347117ba5ab32067880c:/include/wx/gtk/frame.h diff --git a/include/wx/gtk/frame.h b/include/wx/gtk/frame.h index 97cec7f13b..582554c7ef 100644 --- a/include/wx/gtk/frame.h +++ b/include/wx/gtk/frame.h @@ -72,6 +72,8 @@ public: virtual void SetMenuBar( wxMenuBar *menuBar ); #if wxUSE_STATUSBAR + virtual void PositionStatusBar(); + virtual wxStatusBar* CreateStatusBar(int number = 1, long style = wxST_SIZEGRIP, wxWindowID id = 0, @@ -93,6 +95,10 @@ public: // implementation from now on // -------------------------- + // move the window to the specified location and resize it: this is called + // from both DoSetSize() and DoSetClientSize() + virtual void DoMoveWindow(int x, int y, int width, int height); + // GTK callbacks virtual void GtkOnSize( int x, int y, int width, int height ); virtual void OnInternalIdle(); @@ -109,7 +115,7 @@ protected: // common part of all ctors void Init(); - // override wxWindow methods to take into account tool/menu/statusbars + // override wxWindow methods to take into account tool/menu/statusbars virtual void DoSetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);