]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/interface/wxWindows/widgets/creaButtonContainer/model/system.h
ManualPaint RangeSlider 50% DFCH
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / creaButtonContainer / model / system.h
index 51db3bd5c136fa16fd6dcc7eca647bb4ac4bc601..012a5bfcb277f36cbb6f6242464b851d810e7d1d 100644 (file)
@@ -2,8 +2,8 @@
  * @file system.h
  * @brief Contains a system typedefs used to reuse code.
  * @author Diego CACERES (diego.caceres[AT]creatis.insa-lyon.fr)
- * @date  2011-05-24
-*/
+ * @date  2011-06-02
+ */
 
 #ifndef SYSTEM_H_
 #define SYSTEM_H_
@@ -12,6 +12,7 @@
 #include <map>
 #include <iostream>
 #include <exception>
+#include <string>
 #include "functor.h"
 
 /*!    @namespace <creaButtonContainer>
  */
 namespace creaButtonContainer
 {
+       // ----------------------------------------------------------------------------------
+       /*!     @typedef std::string* StringType;
+        *      @brief Defines the StringType type.
+        */
+       typedef std::string StringType;
+       // ----------------------------------------------------------------------------------
        /*!     @typedef model::TFunctor* FunctionEventType;
         *      @brief Defines the FunctionEventType type.
         */
@@ -28,13 +35,13 @@ namespace creaButtonContainer
         *      @brief Defines the ActionButton type.
         *      First is the button description, Second FunctionEventType
         */
-       typedef std::pair< std::string, FunctionEventType > ButtonAction;
+       typedef std::pair< StringType, FunctionEventType > ButtonAction;
        // ----------------------------------------------------------------------------------
        /*!     @typedef std::pair< std::string, std::string > ButtonInfo;
         *      @brief Defines the ButtonInfo type.
         *      First is the ButtonName and Second is the IconPath
         */
-       typedef std::pair< std::string, std::string > ButtonInfo;
+       typedef std::pair< StringType, StringType > ButtonInfo;
        // ----------------------------------------------------------------------------------
        /*!     @typedef std::pair< ButtonInfo*, ActionButton* > ButtonPair;
         *      @brief Defines the ButtonPair type.
@@ -44,7 +51,7 @@ namespace creaButtonContainer
        /*!     @typedef std::list< std::string > KeyMapList;
         *      @brief Defines the KeyMapList type.
         */
-       typedef std::list< std::string > KeyMapList;
+       typedef std::list< StringType > KeyMapList;
        // ----------------------------------------------------------------------------------
        /*!     @typedef std::list< ButtonPair* > ButtonList;
         *      @brief Defines the ButtonList type.
@@ -54,7 +61,7 @@ namespace creaButtonContainer
        /*!     @typedef std::map< std::string, ButtonList > ButtonGroupMap;
         *      @brief Defines the ButtonGroupMap type.
         */
-       typedef std::map< std::string, ButtonList > ButtonGroupMap;
+       typedef std::map< StringType, ButtonList > ButtonGroupMap;
 // ----------------------------------------------------------------------------------
 }