X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FmaracasVisuLib%2Fsrc%2Finterface%2FwxWindows%2Fwidgets%2FcreaPanelButtonContainer%2FcreaPanelButtonContainer.cxx;h=8024f4aacb6b1402220d417f8cf16c3a54136ed8;hb=cec46a1f16ce39a52292b54a187af0ce2004aab5;hp=93cf74cf778684ea7eace66fd37a82884c540e8f;hpb=46fa5cac1a169b7c987bf954e7df39a8bceb1dc4;p=creaMaracasVisu.git diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/creaPanelButtonContainer/creaPanelButtonContainer.cxx b/lib/maracasVisuLib/src/interface/wxWindows/widgets/creaPanelButtonContainer/creaPanelButtonContainer.cxx index 93cf74c..8024f4a 100644 --- a/lib/maracasVisuLib/src/interface/wxWindows/widgets/creaPanelButtonContainer/creaPanelButtonContainer.cxx +++ b/lib/maracasVisuLib/src/interface/wxWindows/widgets/creaPanelButtonContainer/creaPanelButtonContainer.cxx @@ -127,8 +127,10 @@ namespace creaPanelButtonContainer wxALL | wxEXPAND | wxALIGN_CENTER_HORIZONTAL | wxALIGN_CENTER_VERTICAL, 5); + wxBitmap btmSettings(Settings_xpm); //Icon of Button + this->m_ConfigButton = new wxBitmapButton(this->m_PanelUp, -1, - wxNullBitmap, wxDefaultPosition, wxDefaultSize, wxBU_AUTODRAW, + btmSettings, wxDefaultPosition, wxDefaultSize, wxBU_AUTODRAW, wxDefaultValidator, _T("Config")); mainSizer->Add(this->m_ConfigButton, wxGBPosition(1, 2), wxDefaultSpan, @@ -155,7 +157,29 @@ namespace creaPanelButtonContainer wxCommandEventHandler(PanelButtonContainer::OnConfigButton)); } + else if (type == 3) + { + //MLER + TConcreteFunctor* lFunctor = new TConcreteFunctor(this, + &PanelButtonContainer::GenericListEvent); + + this->m_EventPanel = new wxPanel(this); + std::cout << "MLER Type 3; new ComboBox" << std::endl; + this->m_ComboBoxPanel = new ComboBox(this, -1, + this->m_ButtonContainerSettings->GetItemsVector(), lFunctor); + + //Bottom Panel + this->m_AuiManager->AddPane(this->m_EventPanel, + wxAuiPaneInfo().Name(_T("EventPanel")).Caption(_("EventPanel")).CaptionVisible( + true).MinimizeButton().MaximizeButton().CloseButton(false).Center().Resizable( + true)); + //Top Panel + this->m_AuiManager->AddPane(this->m_ComboBoxPanel, + wxAuiPaneInfo().Name(_T("ComboBoxContainerPanel")).DefaultPane().Caption( + _("ComboBoxContainerPanel")).PinButton().CaptionVisible(true).CloseButton( + false).Center().Resizable(true)); + } //End MLER this->m_AuiManager->Update(); @@ -238,7 +262,7 @@ namespace creaPanelButtonContainer void PanelButtonContainer::OnConfigButton(wxCommandEvent& event) { - this->m_ListConfigDialog = new ListConfigDialog(this, -1, _("Config"), + this->m_ListConfigDialog = new ListConfigDialog(this, -1, _("Settings"), this->m_ListWxPanel, this->m_CurrentWxPanel); std::cout << "Button Event" << std::endl; @@ -251,11 +275,11 @@ namespace creaPanelButtonContainer this->m_CurrentWxPanel->SetFunctorEnabled(true); this->m_CurrentWxPanel->GetListBox()->Deselect( - this->m_CurrentWxPanel->GetListBox()->GetSelection()); + this->m_CurrentWxPanel->GetListBox()->GetSelection()); //Deselected item this->m_CurrentWxPanel->Update(); this->m_ListWxPanel->Show(false); this->m_EventPanel->Show(false); - this->m_EventPanel = this->m_EmptyPanel; + this->m_EventPanel = this->m_EmptyPanel; //Management Empty Panel this->m_AuiManager->GetPane(_T("EventPanel")).window = this->m_EventPanel; this->m_AuiManager->Update();