]> SALOME platform Git repositories - modules/shaper.git/blob - src/Config/Config_Keywords.h
Salome HOME
3c7bb936c57207f65388b778bd4703856b5aa299
[modules/shaper.git] / src / Config / Config_Keywords.h
1 /*
2  * Config_Keywords.h
3  *
4  *  Created on: Apr 2, 2014
5  *      Author: sbh
6  */
7
8 #ifndef CONFIG_KEYWORDS_H_
9 #define CONFIG_KEYWORDS_H_
10
11 /*
12  * Hardcoded xml entities of plugin-*.xml
13  */
14 const static char* NODE_WORKBENCH = "workbench";
15 const static char* NODE_GROUP = "group";
16 const static char* NODE_FEATURE = "feature";
17 //Widgets
18 const static char* WDG_DOUBLEVALUE = "doublevalue";
19 //Widget containers
20 const static char* WDG_GROUP = "groupbox";
21 const static char* WDG_CHECK_GROUP = "check_groupbox";
22 const static char* WDG_TOOLBOX = "toolbox";
23 const static char* WDG_TOOLBOX_BOX = "box";
24 const static char* WDG_SWITCH = "switch";
25 const static char* WDG_SWITCH_CASE = "case";
26
27
28 const static char* _ID = "id";
29 //const static char* WORKBENCH_ID = "id";
30 //const static char* GROUP_ID = "id";
31 //const static char* FEATURE_ID = "id";
32 const static char* FEATURE_TEXT = "text";
33 const static char* FEATURE_TOOLTIP = "tooltip";
34 const static char* FEATURE_ICON = "icon";
35 const static char* FEATURE_KEYSEQUENCE = "keysequence";
36
37 // doublevalue properties:
38 const static char* DOUBLE_WDG_MIN = "min";
39 const static char* DOUBLE_WDG_MAX = "max";
40 const static char* DOUBLE_WDG_STEP = "step";
41 const static char* DOUBLE_WDG_DFLT = "default";
42
43 //toolbox/switch properties
44 const static char* CONTAINER_PAGE_NAME = "title";
45
46
47 /*
48  * Hardcoded xml entities of plugins.xml
49  */
50 const static char* NODE_PLUGIN = "plugin";
51 const static char* NODE_PLUGINS = "plugins";
52
53 const static char* PLUGINS_MODULE = "module";
54 const static char* PLUGIN_CONFIG = "configuration";
55 const static char* PLUGIN_LIBRARY = "library";
56
57 #endif /* CONFIG_KEYWORDS_H_ */