]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/interface/wxWindows/widgets/creaButtonContainer/view/groupManager.cxx
no message
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / creaButtonContainer / view / groupManager.cxx
index 86a461a1ed359e881d7c6be73487a252e0f3795c..116d48df7fe1da2dc40554dee272770abcc08ae9 100644 (file)
@@ -15,55 +15,61 @@ namespace creaButtonContainer
                GroupManager::GroupManager( wxWindow* parent, ButtonGroup* buttonGroup ) :
                        wxFlexGridSizer( 1, 0, 0, 0 )
                {
+//EED 20/01/2012  flag 02                      
                        this->m_IDExpButton = wxNewId( );
-                       this->m_ExpansionButton = new ExpansionButton( parent,
-                           this->m_IDExpButton, _("-"), wxDefaultPosition, wxSize( 20, 20 ), 0,
-                           wxDefaultValidator, _T("EXPBUTTON") );
+                       this->m_ExpansionButton = new ExpansionButton( parent, this->m_IDExpButton, _("-"), wxDefaultPosition, wxSize( 20, 20 ), 0, wxDefaultValidator, _T("EXPBUTTON") );
                        this->Add( m_ExpansionButton, 1, wxALL | wxALIGN_LEFT | wxALIGN_TOP, 5 );
                        this->m_ButtonManager = new ButtonManager( buttonGroup );
-                       this->Add( this->m_ButtonManager, 1, wxALL | wxALIGN_LEFT | wxALIGN_TOP,
-                           5 );
+                       this->Add( this->m_ButtonManager, 1, wxALL | wxALIGN_LEFT | wxALIGN_TOP, 5 );
                }
+               
                // ----------------------------------------------------------------------------------
                GroupManager::~GroupManager( )
                {
                }
+               
                // ----------------------------------------------------------------------------------
                long
                GroupManager::GetButtonID( )
                {
                        return ( this->m_IDExpButton );
                }
+               
                // ----------------------------------------------------------------------------------
                GroupManager::ExpansionButton*
                GroupManager::GetButton( )
                {
                        return ( this->m_ExpansionButton );
                }
+               
                // ----------------------------------------------------------------------------------
                ButtonManager*
                GroupManager::GetButtonManager( )
                {
                        return ( this->m_ButtonManager );
                }
+               
                // ----------------------------------------------------------------------------------
                void
                GroupManager::SetButtonID( long id )
                {
                        this->m_IDExpButton = id;
                }
+               
                // ----------------------------------------------------------------------------------
                void
                GroupManager::SetButton( ExpansionButton* button )
                {
                        this->m_ExpansionButton = button;
                }
+               
                // ----------------------------------------------------------------------------------
                void
                GroupManager::SetButtonManager( ButtonManager* container )
                {
                        this->m_ButtonManager = container;
                }
+               
                // ----------------------------------------------------------------------------------
                void
                GroupManager::HideSubPanel( bool hide )