]> SALOME platform Git repositories - modules/shaper.git/blob - src/Config/Config_Keywords.h
Salome HOME
Merge branch 'master' of newgeom:newgeom.git
[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 //Widget containers
22 const static char* WDG_INFO = "label";
23 const static char* WDG_GROUP = "groupbox";
24 const static char* WDG_CHECK_GROUP = "check_groupbox";
25 const static char* WDG_TOOLBOX = "toolbox";
26 const static char* WDG_TOOLBOX_BOX = "box";
27 const static char* WDG_SWITCH = "switch";
28 const static char* WDG_SWITCH_CASE = "case";
29
30 const static char* _ID = "id";
31 //const static char* WORKBENCH_ID = "id";
32 //const static char* GROUP_ID = "id";
33 //const static char* FEATURE_ID = "id";
34 const static char* FEATURE_TEXT = "text";
35 const static char* FEATURE_TOOLTIP = "tooltip";
36 const static char* FEATURE_ICON = "icon";
37 const static char* FEATURE_KEYSEQUENCE = "keysequence";
38 const static char* SOURCE_FILE = "path";
39
40
41 // doublevalue properties:
42 const static char* INFO_WDG_TEXT = FEATURE_TEXT;
43 const static char* INFO_WDG_TOOLTIP = FEATURE_TOOLTIP;
44 const static char* DOUBLE_WDG_MIN = "min";
45 const static char* DOUBLE_WDG_MAX = "max";
46 const static char* DOUBLE_WDG_STEP = "step";
47 const static char* DOUBLE_WDG_DFLT = "default";
48
49 //toolbox/switch properties
50 const static char* CONTAINER_PAGE_NAME = "title";
51
52
53 /*
54  * Hardcoded xml entities of plugins.xml
55  */
56 const static char* NODE_PLUGIN = "plugin";
57 const static char* NODE_PLUGINS = "plugins";
58
59 const static char* PLUGINS_MODULE = "module";
60 const static char* PLUGIN_CONFIG = "configuration";
61 const static char* PLUGIN_LIBRARY = "library";
62
63 #endif /* CONFIG_KEYWORDS_H_ */