]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/interface/wxWindows/widgets/creaButtonContainer/view/groupManager.cxx
creaButtonContainer: new structure to make easy the button settings
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / creaButtonContainer / view / groupManager.cxx
index 507fc9e81fb725bee1152cc856bc4494fcc26d2b..bdb49d2331d9e7295fb3620fcd97164b8925e8ef 100644 (file)
@@ -2,7 +2,7 @@
  * @file groupManager.cxx
  * @brief Implements the GroupManager class.
  * @author Diego CACERES (diego.caceres[AT]creatis.insa-lyon.fr)
- * @date  2011-05-19
+ * @date  2011-05-24
  */
 
 #include "groupManager.h"
@@ -11,7 +11,7 @@ namespace creaButtonContainer
 {
        namespace view
        {
-               // -------------------------------------------------------------------
+               // ----------------------------------------------------------------------------------
                GroupManager::GroupManager( wxWindow* parent, ButtonGroup* buttonGroup ) :
                        wxFlexGridSizer( 1, 0, 0, 0 )
                {
@@ -23,47 +23,47 @@ namespace creaButtonContainer
                        this->m_ButtonManager = new ButtonManager( buttonGroup );
                        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 )
                {
@@ -72,6 +72,6 @@ namespace creaButtonContainer
                        else
                                this->m_ButtonManager->ShowButtonManager( );
                }
-       // -------------------------------------------------------------------
+               // ----------------------------------------------------------------------------------
        }//ecapseman
 }//ecapseman