]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/interface/wxWindows/widgets/creaButtonContainer/view/buttonManager.cxx
no message
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / creaButtonContainer / view / buttonManager.cxx
index 8d00a5da0dc2feab29fa8cfe124291f8e934aecf..e788f82a0b5dffd3dbe608d1daaa0e6a96567248 100644 (file)
@@ -16,6 +16,8 @@ namespace creaButtonContainer
                        wxFlexGridSizer( 0, 1, 0, 0 )
                {
                }
+               
+//EED 20/01/2012  Flag03               
                // ----------------------------------------------------------------------------------
                ButtonManager::ButtonManager( ButtonGroup* buttonGroup ) :
                        wxFlexGridSizer( 0, 1, 0, 0 )
@@ -30,30 +32,31 @@ namespace creaButtonContainer
                                std::cerr << "Button::Execute( ) exception: " << e.what( ) << std::endl;
                        }//hctac
                }
+               
                // ----------------------------------------------------------------------------------
                ButtonManager::~ButtonManager( )
                {
                }
+               
                // ----------------------------------------------------------------------------------
-               void
-               ButtonManager::SetGroupName( wxStaticText* groupName )
+               void ButtonManager::SetGroupName( wxStaticText* groupName )
                {
                        this->m_GroupName = groupName;
                        this->Add( this->m_GroupName, -1, wxALL | wxALIGN_LEFT | wxALIGN_TOP, 5 );
                }
+               
                // ----------------------------------------------------------------------------------
-               void
-               ButtonManager::SetButtonManager( ButtonContainer buttonContainer )
+               void ButtonManager::SetButtonManager( ButtonContainer buttonContainer )
                {
                        try
                        {
                                if ( this->m_GroupName != NULL )
                                {
                                        this->m_GridSizer = new wxGridSizer( 0, 3, 0, 0 );
-                                       for( ButtonContainer::iterator it = buttonContainer.begin( ); it
-                                           != buttonContainer.end( ); ++it )
-                                               this->m_GridSizer->Add( ( *it ).second, -1,
-                                                   wxALL | wxALIGN_LEFT | wxALIGN_TOP, 5 );
+                                       for( ButtonContainer::iterator it = buttonContainer.begin( ); it!= buttonContainer.end( ); ++it )
+                                       {
+                                               this->m_GridSizer->Add( ( *it ).second, -1,  wxALL | wxALIGN_LEFT | wxALIGN_TOP, 5 );
+                                       }
                                        this->Add( m_GridSizer, -1, wxALL | wxALIGN_LEFT | wxALIGN_TOP, 5 );
                                }//fi
                        }//yrt