Salome HOME
125faa57a0879e241a273c5f94d7c27a79adee24
[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 const static char* NODE_SOURCE = "source";
18
19 //Widgets
20 const static char* WDG_DOUBLEVALUE = "doublevalue";
21 const static char* WDG_BOOLVALUE = "boolvalue";
22 //Widget containers
23 const static char* WDG_INFO = "label";
24 const static char* WDG_GROUP = "groupbox";
25 const static char* WDG_CHECK_GROUP = "check_groupbox";
26 const static char* WDG_TOOLBOX = "toolbox";
27 const static char* WDG_TOOLBOX_BOX = "box";
28 const static char* WDG_SWITCH = "switch";
29 const static char* WDG_SWITCH_CASE = "case";
30 const static char* WDG_SELECTOR = "selector";
31
32 //Specific widget containers
33 const static char* WDG_POINT_SELECTOR = "point_selector";
34
35 const static char* _ID = "id";
36 //const static char* WORKBENCH_ID = "id";
37 //const static char* GROUP_ID = "id";
38 //const static char* FEATURE_ID = "id";
39 const static char* FEATURE_TEXT = "title";
40 const static char* FEATURE_TOOLTIP = "tooltip";
41 const static char* FEATURE_ICON = "icon";
42 const static char* FEATURE_KEYSEQUENCE = "keysequence";
43 const static char* FEATURE_NESTED = "nested";
44 const static char* FEATURE_INTERNAL = "internal";
45 const static char* SOURCE_FILE = "path";
46
47
48 // doublevalue properties:
49 const static char* INFO_WDG_TEXT = FEATURE_TEXT;
50 const static char* INFO_WDG_TOOLTIP = FEATURE_TOOLTIP;
51 const static char* DOUBLE_WDG_MIN = "min";
52 const static char* DOUBLE_WDG_MAX = "max";
53 const static char* DOUBLE_WDG_STEP = "step";
54 const static char* DOUBLE_WDG_DFLT = "default";
55
56 //toolbox/switch properties
57 const static char* CONTAINER_PAGE_NAME = "title";
58
59
60 /*
61  * Hardcoded xml entities of plugins.xml
62  */
63 const static char* NODE_PLUGIN = "plugin";
64 const static char* NODE_PLUGINS = "plugins";
65
66 const static char* PLUGINS_MODULE = "module";
67 const static char* PLUGIN_CONFIG = "configuration";
68 const static char* PLUGIN_LIBRARY = "library";
69
70 #endif /* CONFIG_KEYWORDS_H_ */