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