]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/interface/wxWindows/widgets/creaButtonContainer/view/buttonContainerPanel.cxx
commit
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / creaButtonContainer / view / buttonContainerPanel.cxx
index a66eb5137c2b3d4831a0e97a733cbe98577c385b..aaeae8cbabd7c93a56404c2738faf148c7416b09 100644 (file)
@@ -42,12 +42,15 @@ namespace creaButtonContainer
                END_EVENT_TABLE()
 
                // ----------------------------------------------------------------------------------
-               ButtonContainerPanel::ButtonContainerPanel( wxWindow* parent, ButtonGroupSettings* settings ) 
+               ButtonContainerPanel::ButtonContainerPanel( wxWindow* parent, ButtonGroupSettings* settings, std::string 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;
+
                        ButtonGroupFactory factory;
                        this->SetGroupContainer( factory.CreateButtonGroupContainer( this, settings ) );
-                       this->PanelInit( );
+                       this->PanelInit(type );
                        this->m_ButtonCController = new BCController( this );
                        this->m_ButtonCController->AddEvents( );
                        this->SetEventHandler( this->m_ButtonCController );
@@ -65,19 +68,33 @@ namespace creaButtonContainer
                }
                
                // ----------------------------------------------------------------------------------
-               void ButtonContainerPanel::PanelInit( )
+               void ButtonContainerPanel::PanelInit( std::string type )
                {
                        try
                        {
                                
 // EED 20/01/2012  flag 01
                                this->m_Sizer = new Sizer( 0, 1, 0, 0 );
-                               for( ButtonGroupList::iterator it = this->m_ButtonGroupList.begin( ); it != this->m_ButtonGroupList.end( ); ++it )
+
+                               if(type == "1")
                                {
-                                       GroupManager* manager = new GroupManager( this, *it );
-                                       this->m_GroupManagerList[ manager->GetButtonID( ) ] = manager;
-                                       this->m_Sizer->Add( manager, 1, wxALL | wxALIGN_LEFT | wxALIGN_TOP, 5 );
+                                       for( ButtonGroupList::iterator it = this->m_ButtonGroupList.begin( ); it != this->m_ButtonGroupList.end( ); ++it )
+                                       {
+                                               GroupManager* manager = new GroupManager( this, *it );
+                                               this->m_GroupManagerList[ manager->GetButtonID( ) ] = manager;
+                                               this->m_Sizer->Add( manager, 1, wxALL | wxALIGN_LEFT | wxALIGN_TOP, 5 );
+                                       }
                                }
+                               else
+                               {
+                                       for( ButtonGroupList::iterator it = this->m_ButtonGroupList.begin( ); it != this->m_ButtonGroupList.end( ); ++it )
+                                       {
+                                               GroupManager* manager = new GroupManager( this, *it );
+                                               this->m_GroupManagerList[ manager->GetButtonID( ) ] = manager;
+                                               this->m_Sizer->Add( manager, 1, wxALL | wxALIGN_LEFT | wxALIGN_TOP, 5 );
+                                       }
+                               }
+
                                this->SetSizer( this->m_Sizer );
                                this->Layout( );
                                this->FitSizer( );