]> git.saurik.com Git - wxWidgets.git/commitdiff
Selection should be set to -1 if all pages are deleted, or the next
authorJulian Smart <julian@anthemion.co.uk>
Thu, 18 May 2006 09:53:19 +0000 (09:53 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Thu, 18 May 2006 09:53:19 +0000 (09:53 +0000)
insertion will try to set the selection to 1.
Fixed lack of initial controller resize when first page is added,
though I think the listctrl should probably always have a decent initial
height even when empty.

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

src/generic/listbkg.cpp

index a0e5073a9c9ca20579014f21a5f372e24153db9b..f7f480980c6fa9cda29cf8864c74e6cec3c9ee2d 100644 (file)
@@ -301,7 +301,14 @@ wxListbook::InsertPage(size_t n,
         SetSelection(selNew);
 
     InvalidateBestSize();
+    // GetListView()->InvalidateBestSize();
     GetListView()->Arrange();
+    
+    if (GetPageCount() == 1)
+    {
+        wxSizeEvent sz(GetSize(), GetId());
+        ProcessEvent(sz);
+    }
     return true;
 }
 
@@ -331,6 +338,11 @@ wxWindow *wxListbook::DoRemovePage(size_t page)
         }
 
         GetListView()->Arrange();
+        if (GetPageCount() == 0)
+        {
+            wxSizeEvent sz(GetSize(), GetId());
+            ProcessEvent(sz);
+        }
     }
 
     return win;
@@ -340,7 +352,15 @@ wxWindow *wxListbook::DoRemovePage(size_t page)
 bool wxListbook::DeleteAllPages()
 {
     GetListView()->DeleteAllItems();
-    return wxBookCtrlBase::DeleteAllPages();
+    if (!wxBookCtrlBase::DeleteAllPages())
+        return false;
+    
+    m_selection = -1;
+
+    wxSizeEvent sz(GetSize(), GetId());
+    ProcessEvent(sz);
+    
+    return true;
 }
 
 // ----------------------------------------------------------------------------