git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26817
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
bool IsShown( size_t index ) const;
// Recursively call wxWindow::Show () on all sizer items.
bool IsShown( size_t index ) const;
// Recursively call wxWindow::Show () on all sizer items.
- void ShowItems (bool show);
+ virtual void ShowItems (bool show);
protected:
wxSize m_size;
protected:
wxSize m_size;
wxStaticBox *GetStaticBox() const
{ return m_staticBox; }
wxStaticBox *GetStaticBox() const
{ return m_staticBox; }
+ // override to hide/show the static box as well
+ virtual void ShowItems (bool show);
+
protected:
wxStaticBox *m_staticBox;
protected:
wxStaticBox *m_staticBox;
+void wxStaticBoxSizer::ShowItems( bool show )
+{
+ m_staticBox->Show( show );
+ wxBoxSizer::ShowItems( show );
+}
+
#endif // wxUSE_STATBOX
// ----------------------------------------------------------------------------
#endif // wxUSE_STATBOX
// ----------------------------------------------------------------------------