]> git.saurik.com Git - wxWidgets.git/commitdiff
Changed WidthDefault() and HeightDefault() to use 400,250. If there
authorRobin Dunn <robin@alldunn.com>
Fri, 5 Mar 2004 21:04:10 +0000 (21:04 +0000)
committerRobin Dunn <robin@alldunn.com>
Fri, 5 Mar 2004 21:04:10 +0000 (21:04 +0000)
is a better set of default values feel free to change it, just don't
make them too small for TLWs.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26097 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/window.h
src/gtk/window.cpp
src/gtk1/window.cpp

index 0f1d01072dc6926f081afdadd09d42e6e2387aa1..2f08ddd460fc1a607fcc051df4d22264666cf503 100644 (file)
@@ -1040,9 +1040,8 @@ protected:
     virtual wxBorder GetDefaultBorder() const;
 
     // get the default size for the new window if no explicit size given
-    // FIXME why 20 and not 30, 10 or ...?
-    static int WidthDefault(int w) { return w == -1 ? 20 : w; }
-    static int HeightDefault(int h) { return h == -1 ? 20 : h; }
+    static int WidthDefault(int w) { return w == -1 ? 400 : w; }
+    static int HeightDefault(int h) { return h == -1 ? 250 : h; }
 
     // set the best size for the control if the default size was given:
     // replaces the fields of size == -1 with the best values for them and
index ab35ae0f20a389eb17d67b20842e3d7fb55e4a3a..1fe395f33cd3de20385fead5d958ff116aaf07f2 100644 (file)
@@ -2790,10 +2790,8 @@ bool wxWindowGTK::PreCreation( wxWindowGTK *parent, const wxPoint &pos,  const w
 {
     wxCHECK_MSG( !m_needParent || parent, FALSE, wxT("Need complete parent.") );
 
-    // This turns -1 into 30 so that a minimal window is
-    // visible even although -1,-1 has been given as the
-    // size of the window. the same trick is used in other
-    // ports and should make debugging easier.
+    // Use either the given size, or the default if -1 is given.
+    // See wxWindowBase for these functions.
     m_width = WidthDefault(size.x) ;
     m_height = HeightDefault(size.y);
 
index ab35ae0f20a389eb17d67b20842e3d7fb55e4a3a..1fe395f33cd3de20385fead5d958ff116aaf07f2 100644 (file)
@@ -2790,10 +2790,8 @@ bool wxWindowGTK::PreCreation( wxWindowGTK *parent, const wxPoint &pos,  const w
 {
     wxCHECK_MSG( !m_needParent || parent, FALSE, wxT("Need complete parent.") );
 
-    // This turns -1 into 30 so that a minimal window is
-    // visible even although -1,-1 has been given as the
-    // size of the window. the same trick is used in other
-    // ports and should make debugging easier.
+    // Use either the given size, or the default if -1 is given.
+    // See wxWindowBase for these functions.
     m_width = WidthDefault(size.x) ;
     m_height = HeightDefault(size.y);