]> git.saurik.com Git - wxWidgets.git/commitdiff
added a @todo about references to old wx functions
authorFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Sat, 6 Dec 2008 16:45:51 +0000 (16:45 +0000)
committerFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Sat, 6 Dec 2008 16:45:51 +0000 (16:45 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57141 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/scrolwin.h
interface/wx/window.h

index 454af1e4ee7d0cebe289478caa4d81340b9dbd83..aff424c54770a90d8e8190deb3c4ce62a397fee1 100644 (file)
@@ -58,6 +58,9 @@
     wxWindow::SetVirtualSizeHints() with wxWindow::SetMinVirtualSize() or
     similar and remove it entirely in future.
 
+    @todo review docs for this class replacing SetVirtualSizeHints() with
+          SetMinClientSize().
+
     As with all windows, an application can draw onto a wxScrolled using a
     @ref overview_dc "device context".
 
index ab349f24865a748d413bf07886b840b3c2cd69c1..4b7f8a7c0a001a5b9ef98a5daab78a3df4b4eb93 100644 (file)
@@ -2448,6 +2448,17 @@ public:
     virtual void SetSize(int width, int height);
     //@}
 
+    /**
+        Use of this function for windows which are not toplevel windows
+        (such as wxDialog or wxFrame) is discouraged.
+        Please use SetMinSize() and SetMaxSize() instead.
+
+        @see wxTopLevelWindow::SetSizeHints
+    */
+    void SetSizeHints( const wxSize& minSize,
+                       const wxSize& maxSize=wxDefaultSize,
+                       const wxSize& incSize=wxDefaultSize);
+
     /**
         Sets the window to have the given layout sizer.
         The window will then own the object, and will take care of its deletion.