/// Creates the dialog and its contents. void EditChainsDialog::Populate() { //------------------------- Main section -------------------- ShuttleGui S(this, eIsCreating); PopulateOrExchange(S); // ----------------------- End of main section -------------- // Get and validate the currently active chain mActiveChain = gPrefs->Read(wxT("/Batch/ActiveChain"), wxT("")); // Go populate the chains list. PopulateChains(); // We have a bare list. We need to add columns and content. PopulateList(); // Layout and set minimum size of window Layout(); Fit(); SetSizeHints(GetSize()); // Size and place window SetSize(wxSystemSettings::GetMetric(wxSYS_SCREEN_X) * 3 / 4, wxSystemSettings::GetMetric(wxSYS_SCREEN_Y) * 4 / 5); Center(); // Set the column size for the chains list. wxSize sz = mChains->GetClientSize(); mChains->SetColumnWidth(0, sz.x); // Size columns properly FitColumns(); }
/// The window has been resized. void EditChainsDialog::OnSize(wxSizeEvent & WXUNUSED(event)) { // Refrsh the layout and re-fit the columns. Layout(); FitColumns(); }
/// An item in the chains list has been selected. void EditChainsDialog::OnListSelected(wxListEvent & WXUNUSED(event)) { FitColumns(); }
void CompilerMessages::AutoFitColumns() { if (m_autoFit) FitColumns(); }
void CompilerMessages::OnFit(wxCommandEvent& WXUNUSED(event)) { FitColumns(); }