Salome HOME
Ability to have optional input fields in dialog panels (checkbox - page)
[modules/shaper.git] / src / Config / Config_FeatureReader.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 /*
4  * Config_FeatureReader.cpp
5  *
6  *  Created on: Mar 20, 2014
7  *      Author: sbh
8  */
9
10 #include <Config_Keywords.h>
11 #include <Config_Common.h>
12 #include <Config_FeatureMessage.h>
13 #include <Config_AttributeMessage.h>
14 #include <Config_FeatureReader.h>
15 #include <Events_Message.h>
16 #include <Events_Loop.h>
17
18 #include <libxml/parser.h>
19 #include <libxml/tree.h>
20 #include <libxml/xmlstring.h>
21
22 #include <string>
23 #include <algorithm>
24 #include <list>
25
26 #ifdef _DEBUG
27 #include <iostream>
28 #endif
29
30 Config_FeatureReader::Config_FeatureReader(const std::string& theXmlFile,
31                                            const std::string& theLibraryName,
32                                            const char* theEventGenerated)
33     : Config_XMLReader(theXmlFile),
34       myLibraryName(theLibraryName),
35       myEventGenerated(theEventGenerated ? theEventGenerated : Config_FeatureMessage::GUI_EVENT()),
36       myIsProcessWidgets(theEventGenerated != NULL)
37 {
38 }
39
40 Config_FeatureReader::~Config_FeatureReader()
41 {
42 }
43
44 std::list<std::string> Config_FeatureReader::features() const
45 {
46   return myFeatures;
47 }
48
49 void Config_FeatureReader::processNode(xmlNodePtr theNode)
50 {
51   Events_ID aMenuItemEvent = Events_Loop::eventByName(myEventGenerated);
52   if (isNode(theNode, NODE_FEATURE, NULL)) {
53     storeAttribute(theNode, _ID);
54     std::shared_ptr<Config_FeatureMessage> aMessage(new Config_FeatureMessage(aMenuItemEvent, this));
55     fillFeature(theNode, aMessage);
56     myFeatures.push_back(getProperty(theNode, _ID));
57     //If a feature has xml definition for it's widget:
58     aMessage->setUseInput(hasChild(theNode));
59     Events_Loop::loop()->send(aMessage);
60     //The m_last* variables always defined before fillFeature() call. XML is a tree.
61   } else if (isNode(theNode, NODE_WORKBENCH, NODE_GROUP, NULL)) {
62     storeAttribute(theNode, _ID);
63     storeAttribute(theNode, WORKBENCH_DOC, true);
64   } else if (myIsProcessWidgets) {
65     // widgets, like shape_selector or containers, like toolbox
66     if (isAttributeNode(theNode)) {
67       std::shared_ptr<Config_AttributeMessage> aMessage(new Config_AttributeMessage(aMenuItemEvent, this));
68       aMessage->setFeatureId(restoreAttribute(NODE_FEATURE, _ID));
69       std::string anAttributeID = getProperty(theNode, _ID);
70       if (!anAttributeID.empty()) {
71         aMessage->setAttributeId(anAttributeID);
72         aMessage->setObligatory(getBooleanAttribute(theNode, ATTR_OBLIGATORY, true));
73         aMessage->setConcealment(getBooleanAttribute(theNode, ATTR_CONCEALMENT, false));
74         if (hasParentRecursive(theNode, WDG_CHECK_GROUP, NULL)) {
75           const char* kWdgCase = WDG_CHECK_GROUP;
76           const char* kWdgSwitch = WDG_CHECK_GROUP;
77           aMessage->setCaseId(restoreAttribute(kWdgCase, _ID));
78           aMessage->setSwitchId(restoreAttribute(kWdgSwitch, _ID));
79         }
80         // nested "paged" widgets are not allowed, this issue may be resolved here:
81         else if (hasParentRecursive(theNode, WDG_SWITCH_CASE, WDG_TOOLBOX_BOX, NULL)) {
82           const char* kWdgCase = hasParentRecursive(theNode, WDG_SWITCH_CASE, NULL)
83                                  ? WDG_SWITCH_CASE
84                                  : WDG_TOOLBOX_BOX;
85           const char* kWdgSwitch = hasParentRecursive(theNode, WDG_SWITCH_CASE, NULL)
86                                    ? WDG_SWITCH
87                                    : WDG_TOOLBOX;
88           aMessage->setCaseId(restoreAttribute(kWdgCase, _ID));
89           aMessage->setSwitchId(restoreAttribute(kWdgSwitch, _ID));
90         }
91         Events_Loop::loop()->send(aMessage);
92       }
93     // container pages, like "case" or "box"
94     } else if (isNode(theNode, WDG_CHECK_GROUP, WDG_SWITCH, WDG_SWITCH_CASE,
95                       WDG_TOOLBOX, WDG_TOOLBOX_BOX, NULL)) {
96       storeAttribute(theNode, _ID); // save case:caseId (or box:boxId)
97     }
98   }
99   //Process SOURCE nodes.
100   Config_XMLReader::processNode(theNode);
101 }
102
103 void Config_FeatureReader::cleanup(xmlNodePtr theNode)
104 {
105   if (isNode(theNode, WDG_CHECK_GROUP, WDG_SWITCH, WDG_SWITCH_CASE,
106              WDG_TOOLBOX, WDG_TOOLBOX_BOX, NULL)) {
107     // cleanup id of cases when leave case node
108     cleanupAttribute(theNode, _ID);
109   }
110 }
111
112 bool Config_FeatureReader::processChildren(xmlNodePtr theNode)
113 {
114   bool result = isNode(theNode, NODE_WORKBENCH, NODE_GROUP, NULL);
115   if(!result && myIsProcessWidgets) {
116     result = isNode(theNode, NODE_FEATURE, 
117                              WDG_GROUP, WDG_CHECK_GROUP,
118                              WDG_TOOLBOX, WDG_TOOLBOX_BOX,
119                              WDG_SWITCH, WDG_SWITCH_CASE, NULL);
120   }
121   return result;
122 }
123
124 void Config_FeatureReader::fillFeature(xmlNodePtr theFeatureNode,
125   const std::shared_ptr<Config_FeatureMessage>& outFeatureMessage)
126 {
127   outFeatureMessage->setId(getProperty(theFeatureNode, _ID));
128   outFeatureMessage->setPluginLibrary(myLibraryName);
129   outFeatureMessage->setNestedFeatures(getProperty(theFeatureNode, FEATURE_NESTED));
130   outFeatureMessage->setActionsWhenNested(getNormalizedProperty(theFeatureNode, FEATURE_WHEN_NESTED));
131   outFeatureMessage->setModal(getBooleanAttribute(theFeatureNode, FEATURE_MODAL, false));
132
133   bool isInternal = getBooleanAttribute(theFeatureNode, ATTR_INTERNAL, false);
134   outFeatureMessage->setInternal(isInternal);
135   if (isInternal) {
136     //Internal feature has no visual representation.
137     return;
138   }
139   
140   outFeatureMessage->setText(getProperty(theFeatureNode, FEATURE_TEXT));
141   outFeatureMessage->setTooltip(getProperty(theFeatureNode, FEATURE_TOOLTIP));
142   outFeatureMessage->setIcon(getProperty(theFeatureNode, FEATURE_ICON));
143   outFeatureMessage->setKeysequence(getProperty(theFeatureNode, FEATURE_KEYSEQUENCE));
144   outFeatureMessage->setGroupId(restoreAttribute(NODE_GROUP, _ID));
145   outFeatureMessage->setWorkbenchId(restoreAttribute(NODE_WORKBENCH, _ID));
146   // Get document kind of a feature, if empty set workbench's kind (might be empty too)
147   std::string aDocKind = getProperty(theFeatureNode, FEATURE_DOC);
148   if(aDocKind.empty()) {
149     aDocKind = restoreAttribute(NODE_WORKBENCH, WORKBENCH_DOC);
150   }
151   outFeatureMessage->setDocumentKind(aDocKind);
152   bool isAutoPreview = getBooleanAttribute(theFeatureNode, FEATURE_AUTO_PREVIEW, true);
153   outFeatureMessage->setAutoPreview(isAutoPreview);
154 }