]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/creaButtonContainer/model/system.h
8317474a63878af153e5a3f4695a3f716934598f
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / creaButtonContainer / model / system.h
1 /*# ---------------------------------------------------------------------
2 #
3 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
4 #                        pour la Sant�)
5 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
6 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
7 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
8 #
9 #  This software is governed by the CeCILL-B license under French law and
10 #  abiding by the rules of distribution of free software. You can  use,
11 #  modify and/ or redistribute the software under the terms of the CeCILL-B
12 #  license as circulated by CEA, CNRS and INRIA at the following URL
13 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
14 #  or in the file LICENSE.txt.
15 #
16 #  As a counterpart to the access to the source code and  rights to copy,
17 #  modify and redistribute granted by the license, users are provided only
18 #  with a limited warranty  and the software's author,  the holder of the
19 #  economic rights,  and the successive licensors  have only  limited
20 #  liability.
21 #
22 #  The fact that you are presently reading this means that you have had
23 #  knowledge of the CeCILL-B license and that you accept its terms.
24 # ------------------------------------------------------------------------ */
25
26 /*!
27  * @file system.h
28  * @brief Contains a system typedefs used to reuse code.
29  * @author Diego CACERES (diego.caceres[AT]creatis.insa-lyon.fr)
30  * @date  2011-06-02
31  */
32
33 #ifndef SYSTEM_H_
34 #define SYSTEM_H_
35
36 #include <list>
37 #include <map>
38 #include <iostream>
39 #include <exception>
40 #include <string>
41 #include "functor.h"
42 #include <listWx.h>
43 #include <wx/listctrl.h>
44
45
46 /*!     @namespace <creaButtonContainer>
47  *      @brief Contains the creaButtonContainer library included in creaMaracasVisu.
48  */
49
50 /*namespace creaButtonContainer
51 {
52         namespace view
53         {
54                 typedef std::list< ListWx* > ListLst;
55                 typedef std::map< StringType, ListLst > ListGroupMap; // ex: grupo A,lista A,lista B
56         }
57
58
59 }*/
60 namespace creaButtonContainer
61 {
62         using namespace view;
63         // ----------------------------------------------------------------------------------
64         /*!     @typedef std::string* StringType;
65          *      @brief Defines the StringType type.
66          */
67         typedef std::string StringType;
68         // ----------------------------------------------------------------------------------
69         /*!     @typedef std::string* BitmapType;
70          *      @brief Defines the BitmapType type.
71          */
72         typedef wxBitmap BitmapType;
73         // ----------------------------------------------------------------------------------
74         /*!     @typedef model::TFunctor* FunctionEventType;
75          *      @brief Defines the FunctionEventType type.
76          */
77         typedef model::TFunctor* FunctionEventType;
78         // ----------------------------------------------------------------------------------
79         /*!     @typedef creaButtonContainer::view::Button Button;
80          *      @brief Defines the ActionButton type.
81          *      First is the button description, Second FunctionEventType
82          */
83         typedef std::pair< StringType, FunctionEventType > ButtonAction;
84         
85         // ----------------------------------------------------------------------------------
86         /*!     @typedef std::pair< std::string, BitmapType > ButtonInfo;
87          *      @brief Defines the ButtonInfo type.
88          *      First is the ButtonName and Second is the IconPath
89          */
90         typedef std::pair< StringType, BitmapType > ButtonInfo;
91
92         // ----------------------------------------------------------------------------------
93         /*!     @typedef std::pair< ButtonInfo*, ActionButton* > ButtonPair;
94          *      @brief Defines the ButtonPair type.
95          */
96         typedef std::pair< ButtonInfo*, ButtonAction* > ButtonPair;
97         // ----------------------------------------------------------------------------------
98         /*!     @typedef std::list< std::string > KeyMapList;
99          *      @brief Defines the KeyMapList type.
100          */
101         typedef std::list< StringType > KeyMapList;
102         
103         // ----------------------------------------------------------------------------------
104         /*!     @typedef std::list< ButtonPair* > ButtonList;
105          *      @brief Defines the ButtonList type.
106          */
107         typedef std::list< ButtonPair* > ButtonList;
108         
109         // ----------------------------------------------------------------------------------
110         /*!     @typedef std::map< std::string, ButtonList > ButtonGroupMap;
111          *      @brief Defines the ButtonGroupMap type.
112          */
113         typedef std::map< StringType, ButtonList > ButtonGroupMap;
114
115
116
117         //typedef wxListItem* Item; //lista objeto
118         //typedef std::list< Item > ItemsList; //lista de los objetos lista
119         //typedef std::list <ItemsList> Lista;
120         //typedef std::map< StringType, ItemsList > ListGroupMap; // ex: grupo A,items lista A (la lista de ese grupo)
121
122
123         typedef std::list< ListWx > ListLst; // lista contenedor
124         typedef std::map< StringType, ListLst > ListGroupMap; // ex: grupo A,lista A,lista B
125
126 // ----------------------------------------------------------------------------------
127 }
128 #endif /* SYSTEM_H_ */