]> SALOME platform Git repositories - modules/shaper.git/blob - src/Config/Config_FeatureMessage.h
Salome HOME
Merge branch 'master' of newgeom:newgeom.git
[modules/shaper.git] / src / Config / Config_FeatureMessage.h
1 #ifndef CONFIG_MESSAGE_H\r
2 #define CONFIG_MESSAGE_H\r
3 \r
4 #include <Config.h>\r
5 #include <Event_Message.h>\r
6 \r
7 #include <string>\r
8 \r
9 /*\r
10  * Class to pass a feature entry extracted from xml file.\r
11  * Example of the feature entry:\r
12  * <feature id="Part" text="New part" tooltip="Creates a new part" icon=":pictures/part_ico.png"/>\r
13  */\r
14 class CONFIG_EXPORT Config_FeatureMessage: public Event_Message\r
15 {\r
16   std::string myId;  //Feature unique id\r
17   std::string myText; //Represents action's text\r
18   std::string myTooltip;  //Represents action's tooltip\r
19   std::string myIcon; //Represents action's icon\r
20   std::string myKeysequence;  //Represents action's key sequence\r
21 \r
22   std::string myGroupId;  //Id of feature's group\r
23   std::string myWorkbenchId;  //Id of feature's workbench\r
24   std::string myPluginLibrary;  //Name of feature's library\r
25 \r
26 public:\r
27   //const Event_ID theID, const void* theSender = 0\r
28   Config_FeatureMessage(const Event_ID theId, const void* theParent = 0);\r
29 \r
30   //TODO(sbh): Implement static method to extract event id [SEID]\r
31   //static const char* eventId() { return ""; }\r
32 \r
33   //Auto-generated getters/setters\r
34   const std::string& icon() const;\r
35   const std::string& id() const;\r
36   const std::string& keysequence() const;\r
37   const std::string& text() const;\r
38   const std::string& tooltip() const;\r
39 \r
40   const std::string& groupId() const;\r
41   const std::string& workbenchId() const;\r
42   const std::string& pluginLibrary() const;\r
43 \r
44   void setIcon(const std::string& icon);\r
45   void setId(const std::string& id);\r
46   void setKeysequence(const std::string& keysequence);\r
47   void setText(const std::string& text);\r
48   void setTooltip(const std::string& tooltip);\r
49 \r
50   void setGroupId(const std::string& groupId);\r
51   void setWorkbenchId(const std::string& workbenchId);\r
52   void setPluginLibrary(const std::string& thePluginLibrary);\r
53 };\r
54 \r
55 #endif // CONFIG_MESSAGE_H