/*! * @file buttonGroupFactory.h * @brief Contains ButtonGroupFactory class * @author Diego CACERES (diego.caceres[AT]creatis.insa-lyon.fr) * @date 2011-05-24 */ #ifndef BUTTONGROUPFACTORY_H #define BUTTONGROUPFACTORY_H #include #include #include #include #include #include "system.h" #include "button.h" #include "buttonGroup.h" #include "containerSettings.h" #include "functor.h" /*! @namespace * @brief Contains the creaButtonContainer library included in creaMaracasVisu. */ namespace creaButtonContainer { /*! @namespace * @brief Contains the implementation of the model in creaButtonContainer library. * @see MVC Software Architecture */ namespace model { /*! @class ButtonGroupFactory buttonGroupFactory.h "buttonGroupFactory.h" * @brief This class contains the ButtonGroup factory. * @details This class creates a container of group of buttons. * @see Factory Pattern */ class ButtonGroupFactory { public: //typedef definition /*! @typedef creaButtonContainer::view::Button Button; * @brief Defines the Button type. */ typedef creaButtonContainer::view::Button Button; // ---------------------------------------------------------------------------------- /*! @typedef creaButtonContainer::view::ButtonGroup ButtonGroup; * @brief Defines the ButtonGroup type. */ typedef creaButtonContainer::view::ButtonGroup ButtonGroup; // ---------------------------------------------------------------------------------- /*! @typedef creaButtonContainer::model::ContainerSettings ButtonGroupModel; * @brief Defines the ButtonGroupModel type. */ typedef creaButtonContainer::model::ContainerSettings ButtonGroupModel; // ---------------------------------------------------------------------------------- /*! @typedef std::list< ButtonGroup* > ButtonGroupContainer; * @brief Defines the ButtonGroupContainer type. */ typedef std::list< ButtonGroup* > ButtonGroupContainer; // ---------------------------------------------------------------------------------- /*! @typedef std::map< long, Button* > ButtonContainer; * @brief Defines the ButtonContainer type. */ typedef std::map< long, Button* > ButtonContainer; // ---------------------------------------------------------------------------------- //end of typedef definition public: /*! @fn ButtonGroupFactory::ButtonGroupFactory( ); * @brief This is the default constructor. */ ButtonGroupFactory( ); // ------------------------------------------------------------------------------- /*! @fn virtual ButtonGroupFactory::~ButtonGroupFactory( ); * @brief This is the destructor. */ virtual ~ButtonGroupFactory( ); /*! @fn ButtonGroupContainer ButtonGroupFactory::CreateButtonGroupContainer( wxWindow* parent, ButtonGroupModel* settings ); * @brief This method allows to create the ButtonGroupContainer. * @param parent the wxWindow* parent to be attached. * @param settings The Container settings. * @exception std::bad_alloc * @return ButtonGroupContainer The wx button group container. */ ButtonGroupContainer CreateButtonGroupContainer( wxWindow* parent, ButtonGroupModel* settings ); private: /*! @fn ButtonContainer ButtonGroupFactory::GetButtons( wxWindow* parent, ButtonList buttonModel ); * @brief This method allows to create a wx button container for a group. * @param parent the wxWindow* parent to be attached. * @param buttonModel The button list with its own information. * @exception std::bad_alloc * @return ButtonContainer The wx button container. */ ButtonContainer GetButtons( wxWindow* parent, ButtonList buttonModel ); }; }//ecapseman }//ecapseman #endif // CARTOBUTTONFACTORY_H