]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/interface/wxWindows/widgets/creaButtonContainer/view/buttonContainerPanel.cxx
#2509 creaMaracasVisu Feature New Normal - creaPanelButtonContainer ListPanel with...
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / creaButtonContainer / view / buttonContainerPanel.cxx
index aaeae8cbabd7c93a56404c2738faf148c7416b09..0f182f50565d9dff4b6a8f0a9766f212c75bbb27 100644 (file)
@@ -42,14 +42,31 @@ namespace creaButtonContainer
                END_EVENT_TABLE()
 
                // ----------------------------------------------------------------------------------
-               ButtonContainerPanel::ButtonContainerPanel( wxWindow* parent, ButtonGroupSettings* settings, std::string type )
+               ButtonContainerPanel::ButtonContainerPanel( wxWindow* parent, ButtonGroupSettings* settings, int type )
                : wxScrolledWindow(parent,-1, wxDefaultPosition,wxDefaultSize, wxTAB_TRAVERSAL | wxVSCROLL | wxHSCROLL | wxFULL_REPAINT_ON_RESIZE, _T("creaButtonContainer") )
                {
 
-                       std::cout<< std::endl << " MLER buttonContainerPanel.cxx / ButtonContainerPanel() " << std::endl;
+                       std::cout<< "MLER | ButtonContainerPanel::ButtonContainerPanel( )" << std::endl;
 
                        ButtonGroupFactory factory;
-                       this->SetGroupContainer( factory.CreateButtonGroupContainer( this, settings ) );
+                       //ListGroupFactory listFactory;
+
+                       //MLER this->SetButtonGroupContainer( factory.CreateButtonGroupContainer( this, settings ) );
+
+                       std::cout<< std::endl << " MLER buttonContainerPanel.cxx / ButtonContainerPanel() :: type " << type<<std::endl;
+                       switch (type)
+                       {
+                       case 0:
+                               this->SetButtonGroupContainer( factory.CreateButtonGroupContainer( this, settings ) );
+                       break;
+                       //case 1:
+                               //this->SetListGroupContainer(listFactory.CreateButtonGroupContainer( this, settings ) );
+                                                               // MLER Verificar ButtonGroupList contra ListGroupList
+                       //break;
+                       default:
+                               this->SetButtonGroupContainer(factory.CreateButtonGroupContainer( this, settings ) );
+                       }
+
                        this->PanelInit(type );
                        this->m_ButtonCController = new BCController( this );
                        this->m_ButtonCController->AddEvents( );
@@ -62,21 +79,29 @@ namespace creaButtonContainer
                }
                
                // ----------------------------------------------------------------------------------
-               void ButtonContainerPanel::SetGroupContainer( ButtonGroupList groupContainer )
+               void ButtonContainerPanel::SetButtonGroupContainer(ButtonGroupList groupContainer )
                {
+                       std::cout<< "MLER | ButtonContainerPanel::SetButtonGroupContainer()" << std::endl;
                        this->m_ButtonGroupList = groupContainer;
                }
+               // ----------------------------------------------------------------------------------
+               /*void ButtonContainerPanel::SetListGroupContainer(ListGroupList groupContainer )
+               {
+                       this->m_ListGroupList = groupContainer;
+               }*/
                
                // ----------------------------------------------------------------------------------
-               void ButtonContainerPanel::PanelInit( std::string type )
+               void ButtonContainerPanel::PanelInit( int type )
                {
+                       std::cout<< "MLER | ButtonContainerPanel::PanelInit( int type )" << std::endl;
                        try
                        {
                                
 // EED 20/01/2012  flag 01
                                this->m_Sizer = new Sizer( 0, 1, 0, 0 );
+                               std::cout << " MLER buttonContainerPanel.cxx / Panel Init() :: type " << type << std::endl;
 
-                               if(type == "1")
+                               if(type == 0)
                                {
                                        for( ButtonGroupList::iterator it = this->m_ButtonGroupList.begin( ); it != this->m_ButtonGroupList.end( ); ++it )
                                        {
@@ -85,15 +110,15 @@ namespace creaButtonContainer
                                                this->m_Sizer->Add( manager, 1, wxALL | wxALIGN_LEFT | wxALIGN_TOP, 5 );
                                        }
                                }
-                               else
+                               /*else
                                {
-                                       for( ButtonGroupList::iterator it = this->m_ButtonGroupList.begin( ); it != this->m_ButtonGroupList.end( ); ++it )
+                                       for(ListGroupList::iterator it1 = this->m_ListGroupList.begin(); it1 != this->m_ListGroupList.end(); ++it1)
                                        {
-                                               GroupManager* manager = new GroupManager( this, *it );
+                                               GroupManager* manager = new GroupManager( this, *it1);
                                                this->m_GroupManagerList[ manager->GetButtonID( ) ] = manager;
                                                this->m_Sizer->Add( manager, 1, wxALL | wxALIGN_LEFT | wxALIGN_TOP, 5 );
                                        }
-                               }
+                               }//MLER*/
 
                                this->SetSizer( this->m_Sizer );
                                this->Layout( );
@@ -109,6 +134,7 @@ namespace creaButtonContainer
                // ----------------------------------------------------------------------------------
                void ButtonContainerPanel::FitSizer( )
                {
+                       std::cout<< "MLER | ButtonContainerPanel::FitSizer( )" << std::endl;
                        this->m_Sizer->Fit( this );
                        this->m_Sizer->FitInside( this );
                        this->SetScrollRate( 20, 20 );