expand the collapsible panes contents to fill the entire pane area (see #11004)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61468 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-07-19 17:24:15 +00:00
parent 5d0d7c2058
commit a6982a3882

View File

@@ -223,7 +223,8 @@ void wxGenericAboutDialog::AddCollapsiblePane(const wxString& title,
const wxString& text) const wxString& text)
{ {
wxCollapsiblePane *pane = new wxCollapsiblePane(this, wxID_ANY, title); wxCollapsiblePane *pane = new wxCollapsiblePane(this, wxID_ANY, title);
wxStaticText *txt = new wxStaticText(pane->GetPane(), wxID_ANY, text, wxWindow * const paneContents = pane->GetPane();
wxStaticText *txt = new wxStaticText(paneContents, wxID_ANY, text,
wxDefaultPosition, wxDefaultSize, wxDefaultPosition, wxDefaultSize,
wxALIGN_CENTRE); wxALIGN_CENTRE);
@@ -231,6 +232,12 @@ void wxGenericAboutDialog::AddCollapsiblePane(const wxString& title,
static const int maxWidth = wxGetDisplaySize().x/3; static const int maxWidth = wxGetDisplaySize().x/3;
txt->Wrap(maxWidth); txt->Wrap(maxWidth);
// we need a sizer to make this text expand to fill the entire pane area
wxSizer * const sizerPane = new wxBoxSizer(wxHORIZONTAL);
sizerPane->Add(txt, wxSizerFlags(1).Expand());
paneContents->SetSizer(sizerPane);
// NB: all the wxCollapsiblePanes must be added with a null proportion value // NB: all the wxCollapsiblePanes must be added with a null proportion value
m_sizerText->Add(pane, wxSizerFlags(0).Expand().Border(wxBOTTOM)); m_sizerText->Add(pane, wxSizerFlags(0).Expand().Border(wxBOTTOM));
} }