]> git.saurik.com Git - wxWidgets.git/commitdiff
Add SetMinSize and SetMaxSize to go along with the Get's already there.
authorRobin Dunn <robin@alldunn.com>
Wed, 16 Jun 2004 02:15:27 +0000 (02:15 +0000)
committerRobin Dunn <robin@alldunn.com>
Wed, 16 Jun 2004 02:15:27 +0000 (02:15 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27818 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/window.h

index 8b53af60c05b2f5ba75667ab4382517defe14f87..87dc4cc69168862d6514fea2cfbcd6869ba9c412 100644 (file)
@@ -366,6 +366,9 @@ public:
     virtual wxSize GetMaxSize() const { return wxSize( m_maxWidth, m_maxHeight ); }
     virtual wxSize GetMinSize() const { return wxSize( m_minWidth, m_minHeight ); }
 
+    void SetMinSize(const wxSize& minSize) { SetSizeHints(minSize); }
+    void SetMaxSize(const wxSize& maxSize) { SetSizeHints(GetMinSize(), maxSize); }
+    
         // Methods for accessing the virtual size of a window.  For most
         // windows this is just the client area of the window, but for
         // some like scrolled windows it is more or less independent of