]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/frame.h
tried to fix compilation for mingw32 and wxGTK/Motif in the same time
[wxWidgets.git] / include / wx / gtk / frame.h
index 97cec7f13b1da2c75fd316b42275e3c299128784..582554c7ef94ca82ecbabe1ad371a02c68cfcc0e 100644 (file)
@@ -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);