]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/creaButtonContainer/model/system.h
#2509 creaMaracasVisu Feature New Normal - creaPanelButtonContainer ListPanel with...
[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
43
44 namespace creaButtonContainer
45 {
46         //using namespace view;
47         // ----------------------------------------------------------------------------------
48         /*!     @typedef std::string* StringType;
49          *      @brief Defines the StringType type.
50          */
51         typedef std::string StringType;
52         // ----------------------------------------------------------------------------------
53         /*!     @typedef std::string* BitmapType;
54          *      @brief Defines the BitmapType type.
55          */
56         typedef wxBitmap BitmapType;
57         // ----------------------------------------------------------------------------------
58         /*!     @typedef model::TFunctor* FunctionEventType;
59          *      @brief Defines the FunctionEventType type.
60          */
61         typedef model::TFunctor* FunctionEventType;
62         // ----------------------------------------------------------------------------------
63         /*!     @typedef creaButtonContainer::view::Button Button;
64          *      @brief Defines the ActionButton type.
65          *      First is the button description, Second FunctionEventType
66          */
67         typedef std::pair< StringType, FunctionEventType > ButtonAction;
68         
69         // ----------------------------------------------------------------------------------
70         /*!     @typedef std::pair< std::string, BitmapType > ButtonInfo;
71          *      @brief Defines the ButtonInfo type.
72          *      First is the ButtonName and Second is the IconPath
73          */
74         typedef std::pair< StringType, BitmapType > ButtonInfo;
75
76         // ----------------------------------------------------------------------------------
77         /*!     @typedef std::pair< ButtonInfo*, ActionButton* > ButtonPair;
78          *      @brief Defines the ButtonPair type.
79          */
80         typedef std::pair< ButtonInfo*, ButtonAction* > ButtonPair;
81         // ----------------------------------------------------------------------------------
82         /*!     @typedef std::list< std::string > KeyMapList;
83          *      @brief Defines the KeyMapList type.
84          */
85         typedef std::list< StringType > KeyMapList;
86         
87         // ----------------------------------------------------------------------------------
88         /*!     @typedef std::list< ButtonPair* > ButtonList;
89          *      @brief Defines the ButtonList type.
90          */
91         typedef std::list< ButtonPair* > ButtonList;
92         
93         // ----------------------------------------------------------------------------------
94         /*!     @typedef std::map< std::string, ButtonList > ButtonGroupMap;
95          *      @brief Defines the ButtonGroupMap type.
96          */
97         typedef std::map< StringType, ButtonList > ButtonGroupMap;
98
99
100 // ----------------------------------------------------------------------------------
101 }
102 #endif /* SYSTEM_H_ */