]> git.saurik.com Git - wxWidgets.git/commitdiff
Added a few modifiers to wxSiserItem
authorRobert Roebling <robert@roebling.de>
Tue, 14 Dec 1999 19:26:06 +0000 (19:26 +0000)
committerRobert Roebling <robert@roebling.de>
Tue, 14 Dec 1999 19:26:06 +0000 (19:26 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4945 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/sizer.h

index c4795d4c810e863c108c99f9323b7803bd171c0c..6b5ecfa583c5afb73c3c739b25ec6a2340a1f736 100644 (file)
@@ -69,6 +69,15 @@ public:
   bool IsWindow();
   bool IsSizer();
   bool IsSpacer();
+  
+  void SetInitSize( int x, int y )
+    { m_minSize.x = x; m_minSize.y = y; }
+  void SetOption( int option )
+    { m_option = option; }
+  void SetFlag( int flag )
+    { m_flag = flag; }
+  void SetBorder( int border )
+    { m_border = border; }
 
   wxWindow *GetWindow() const
     { return m_window; }