]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/interface/wxWindows/widgets/creaButtonContainer/model/listGroupFactory.h
#2647 creaMaracasVisu Feature New Normal - Merge creaButtonContainer BRANCH
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / creaButtonContainer / model / listGroupFactory.h
diff --git a/lib/maracasVisuLib/src/interface/wxWindows/widgets/creaButtonContainer/model/listGroupFactory.h b/lib/maracasVisuLib/src/interface/wxWindows/widgets/creaButtonContainer/model/listGroupFactory.h
deleted file mode 100644 (file)
index 6ec5992..0000000
+++ /dev/null
@@ -1,124 +0,0 @@
-/*# ---------------------------------------------------------------------
-#
-# Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
-#                        pour la Sant�)
-# Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
-# Previous Authors : Laurent Guigues, Jean-Pierre Roux
-# CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
-#
-#  This software is governed by the CeCILL-B license under French law and
-#  abiding by the rules of distribution of free software. You can  use,
-#  modify and/ or redistribute the software under the terms of the CeCILL-B
-#  license as circulated by CEA, CNRS and INRIA at the following URL
-#  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
-#  or in the file LICENSE.txt.
-#
-#  As a counterpart to the access to the source code and  rights to copy,
-#  modify and redistribute granted by the license, users are provided only
-#  with a limited warranty  and the software's author,  the holder of the
-#  economic rights,  and the successive licensors  have only  limited
-#  liability.
-#
-#  The fact that you are presently reading this means that you have had
-#  knowledge of the CeCILL-B license and that you accept its terms.
-# ------------------------------------------------------------------------ */
-
-/*!
- * @file buttonGroupFactory.h
- * @brief Contains ButtonGroupFactory class
- * @author Diego CACERES (diego.caceres[AT]creatis.insa-lyon.fr)
- * @date  2011-06-02
- */
-
-#ifndef LISTGROUPFACTORY_H
-#define LISTGROUPFACTORY_H
-
-#include <wx/window.h>
-
-#include <wx/listctrl.h>
-#include "listWx.h"
-
-#include "system.h"
-#include "listGroup.h"
-#include "containerSettings.h"
-
-/*!    @namespace <creaButtonContainer>
- *     @brief Contains the creaButtonContainer library included in creaMaracasVisu.
- */
-namespace creaButtonContainer
-{
-       /*! @namespace <creaButtonContainer::model>
-        *      @brief Contains the implementation of the model in creaButtonContainer library.
-        *      @see <a href="http://en.wikipedia.org/wiki/Model-view-controller">MVC Software Architecture</a>
-        */
-       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 <a href="http://en.wikipedia.org/wiki/Factory_method_pattern">Factory Pattern</a>
-                */
-               class ListGroupFactory
-               {
-                       public:
-
-                               typedef creaButtonContainer::view::ListWx List;
-
-                               typedef creaButtonContainer::view::ListGroup ListGroup;
-                               // ----------------------------------------------------------------------------------
-                               /*!     @typedef creaButtonContainer::model::ContainerSettings ButtonGroupModel;
-                                *      @brief Defines the ButtonGroupModel type.
-                                */
-                               typedef creaButtonContainer::model::ContainerSettings ListModel;
-                               // ----------------------------------------------------------------------------------
-                               /*!     @typedef std::list< ButtonGroup* > ButtonGroupContainer;
-                                *      @brief Defines the ButtonGroupContainer type.
-                                */
-                               typedef std::list< ListGroup* > ListGroupContainer;
-                               // ----------------------------------------------------------------------------------
-                               /*!     @typedef std::map< long, Button* > ButtonContainer;
-                                *      @brief Defines the ButtonContainer type.
-                                */
-                               typedef std::list<ListWx> ListContainer;
-
-                               // ----------------------------------------------------------------------------------
-                               //end of typedef definition
-                       public:
-                               /*!     @fn ListGroupFactory::ListGroupFactory( );
-                                *      @brief This is the default constructor.
-                                */
-                               ListGroupFactory( );
-                               // -------------------------------------------------------------------------------
-                               /*!     @fn virtual ButtonGroupFactory::~ButtonGroupFactory( );
-                                *      @brief This is the destructor.
-                                */
-                               virtual
-                               ~ListGroupFactory( );
-
-                               /*! @fn ButtonGroupContainer ListGroupFactory::CreateListContainer( wxWindow* parent, ButtonGroupModel* settings );
-                                * @brief This method creates 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.
-                                */
-                               ListGroupContainer
-                               CreateListGroupContainer( wxWindow* parent,
-                                   ListModel* settings );
-                       private:
-
-
-                               /*! @fn ButtonContainer ButtonGroupFactory::GetButtons( wxWindow* parent, ButtonList buttonModel );
-                                * @brief  This method creates 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.
-                                */
-                               ListGroupContainer
-                               GetList( wxWindow* parent, ListWx lst );
-               };
-       }//ecapseman
-}//ecapseman
-
-#endif // CARTOBUTTONFACTORY_H