]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/sizer.h
Define WXBUILDING in Xcode projects.
[wxWidgets.git] / include / wx / sizer.h
index 7e01ff8ad9b80a238aae2d04bc56fe5f326cd65c..29facff1e2278a182cd152c3d52c1762a4058f1f 100644 (file)
@@ -715,6 +715,10 @@ public:
 
     void Show(bool show) { ShowItems(show); }
 
+    // This is the ShowItems() counterpart and returns true if any of the sizer
+    // items are shown.
+    virtual bool AreAnyItemsShown() const;
+
 protected:
     wxSize              m_size;
     wxSize              m_minSize;
@@ -1033,6 +1037,7 @@ public:
 
     // override to hide/show the static box as well
     virtual void ShowItems (bool show);
+    virtual bool AreAnyItemsShown() const;
 
     virtual bool Detach( wxWindow *window );
     virtual bool Detach( wxSizer *sizer ) { return wxBoxSizer::Detach(sizer); }