-
- // set minimal/maxmimal size for the frame
- virtual void SetSizeHints( int minW, int minH, int maxW, int maxH, int incW = -1 );
+ wxSize GetClientSize() const { int w, h; GetClientSize(& w, & h); return wxSize(w, h); }
+
+ virtual void SetClientSize( int width, int height );
+
+ virtual void SetSize( int x, int y, int width, int height,
+ int sizeFlags = wxSIZE_AUTO );
+ virtual void SetSize( int width, int height );