1 // Copyright (C) 2014-2019 CEA/DEN, EDF R&D
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #include <ModuleBase_WidgetFactory.h>
21 #include <ModuleBase_IconFactory.h>
23 #include <ModuleBase_Operation.h>
24 #include <ModuleBase_OperationDescription.h>
25 #include <ModuleBase_WidgetEditor.h>
26 #include <ModuleBase_WidgetSwitch.h>
27 #include <ModuleBase_WidgetShapeSelector.h>
28 #include <ModuleBase_WidgetFeatureSelector.h>
29 #include <ModuleBase_WidgetDoubleValue.h>
30 #include <ModuleBase_WidgetLabelValue.h>
31 #include <ModuleBase_WidgetIntValue.h>
32 #include <ModuleBase_WidgetBoolValue.h>
33 #include <ModuleBase_WidgetFileSelector.h>
34 #include <ModuleBase_WidgetChoice.h>
35 #include <ModuleBase_IWorkshop.h>
36 #include <ModuleBase_IModule.h>
37 #include <ModuleBase_Tools.h>
38 #include <ModuleBase_WidgetLineEdit.h>
39 #include <ModuleBase_WidgetNameEdit.h>
40 #include <ModuleBase_WidgetMultiSelector.h>
41 #include <ModuleBase_WidgetConcealedObjects.h>
42 #include <ModuleBase_WidgetLabel.h>
43 #include <ModuleBase_WidgetToolbox.h>
44 #include <ModuleBase_WidgetRadiobox.h>
45 #include <ModuleBase_PageBase.h>
46 #include <ModuleBase_PageGroupBox.h>
47 #include <ModuleBase_WidgetOptionalBox.h>
48 #include <ModuleBase_PageWidget.h>
49 #include <ModuleBase_WidgetExprEditor.h>
50 #include <ModuleBase_WidgetCreatorFactory.h>
51 #include <ModuleBase_WidgetAction.h>
52 #include <ModuleBase_WidgetPointInput.h>
53 #include <ModuleBase_WidgetSelectionFilter.h>
55 #include <ModelAPI_Validator.h>
56 #include <ModelAPI_Session.h>
58 #include <Config_Keywords.h>
59 #include <Config_WidgetAPI.h>
62 #include <QHBoxLayout>
63 #include <QGridLayout>
65 #include <QMetaProperty>
78 ModuleBase_WidgetFactory::ModuleBase_WidgetFactory(const std::string& theXmlRepresentation,
79 ModuleBase_IWorkshop* theWorkshop)
80 : myWorkshop(theWorkshop)
82 myWidgetApi = new Config_WidgetAPI(theXmlRepresentation);
85 ModuleBase_WidgetFactory::~ModuleBase_WidgetFactory()
90 void ModuleBase_WidgetFactory::createWidget(ModuleBase_PageBase* thePage, bool alignToTop)
92 std::string aWType = myWidgetApi->widgetType();
93 if (aWType == NODE_FEATURE) {
94 // if XML definition of the feature contains the next key, the widgets should not be created,
95 // but a specific panel should be made. However, to provide persistent of the panel values,
96 // we need to get into the panel the feature of the operation. As a result this panel should
97 // be created after the feature creating(create operation). The method setPanel() of this
98 // class is used for this. Here, we just return to avoid the widgets creation.
99 std::string aPanelName = myWidgetApi->getProperty(PROPERTY_PANEL_ID);
100 if (!aPanelName.empty())
104 if (!myWidgetApi->toChildWidget())
107 do { //Iterate over each node
108 std::string aWdgType = myWidgetApi->widgetType();
109 // Create PageGroup TODO: extract
110 if (myWidgetApi->isGroupBoxWidget() ||
111 ModuleBase_WidgetCreatorFactory::get()->hasPageWidget(aWdgType)) {
113 //if current widget is groupbox (container) process it's children recursively
114 ModuleBase_PageBase* aPage = createPageByType(aWdgType, thePage->pageWidget());
117 thePage->addPageWidget(aPage);
119 // Create a ModelWidget
120 ModuleBase_ModelWidget* aWidget = createWidgetByType(aWdgType, thePage->pageWidget());
122 if (!myWidgetApi->getBooleanAttribute(ATTR_INTERNAL, false)) {
123 thePage->addModelWidget(aWidget);
125 aWidget->setVisible(false);
128 // Create PagedContainer TODO: extract
129 if (myWidgetApi->isPagedWidget()) {
130 //If current widget is toolbox or switch-casebox then fetch all
131 //it's pages recursively and setup into the widget.
132 if (myWidgetApi->toChildWidget()) {
134 QString aPageName = qs(myWidgetApi->getProperty(CONTAINER_PAGE_NAME));
135 QString aTooltip = qs(myWidgetApi->getProperty(FEATURE_TOOLTIP));
136 QString aCaseId = qs(myWidgetApi->getProperty(_ID));
137 ModuleBase_PageBase* aPage = new ModuleBase_PageWidget(aWidget);
139 if (aWdgType == WDG_SWITCH || aWdgType == WDG_TOOLBOX || aWdgType == WDG_RADIOBOX) {
140 ModuleBase_PagedContainer* aContainer =
141 qobject_cast<ModuleBase_PagedContainer*>(aWidget);
143 QString anIconPath = qs( myWidgetApi->getProperty( CONTAINER_PAGE_ICON ) );
144 QPixmap anIcon = ModuleBase_IconFactory::loadPixmap( anIconPath );
145 aContainer->addPage( aPage, aPageName, aCaseId, anIcon, aTooltip);
147 } while (myWidgetApi->toNextWidget());
151 } while (myWidgetApi->toNextWidget());
154 thePage->alignToTop();
157 void ModuleBase_WidgetFactory::createPanel(ModuleBase_PageBase* thePage,
158 const FeaturePtr& theFeature)
160 std::string aPanelName = myWidgetApi->getProperty(PROPERTY_PANEL_ID);
161 if (!aPanelName.empty() && ModuleBase_WidgetCreatorFactory::get()->hasPanelWidget(aPanelName)) {
162 QWidget* aPanel = ModuleBase_WidgetCreatorFactory::get()->createPanelByType(aPanelName,
163 thePage->pageWidget(), theFeature);
164 thePage->addWidget(aPanel);
165 thePage->alignToTop();
169 void ModuleBase_WidgetFactory::createWidget(ModuleBase_PageBase* thePage,
170 const std::string& theWidgetId)
173 moveToWidgetId(theWidgetId, aFound);
175 std::string aWdgType = myWidgetApi->widgetType();
177 // Create a ModelWidget
178 ModuleBase_ModelWidget* aWidget = createWidgetByType(aWdgType, thePage->pageWidget());
180 if (!myWidgetApi->getBooleanAttribute(ATTR_INTERNAL, false)) {
181 thePage->addModelWidget(aWidget);
184 aWidget->setVisible(false);
188 thePage->alignToTop();
191 void ModuleBase_WidgetFactory::getAttributeTitle(const std::string& theAttributeId,
192 std::string& theTitle)
195 moveToWidgetId(theAttributeId, aFound);
197 theTitle = QString::fromStdString(myWidgetApi->widgetLabel()).toStdString().c_str();
198 if (theTitle.empty())
200 QString::fromStdString(myWidgetApi->getProperty(CONTAINER_PAGE_NAME)).toStdString().c_str();
204 void ModuleBase_WidgetFactory::getGreedAttribute(std::string& theAttributeId)
206 if (!theAttributeId.empty())
209 if (!myWidgetApi->toChildWidget())
212 do { //Iterate over each node
213 std::string aWdgType = myWidgetApi->widgetType();
214 // Find title under PageGroup
215 if (myWidgetApi->isGroupBoxWidget() ||
216 ModuleBase_WidgetCreatorFactory::get()->hasPageWidget(aWdgType)) {
217 getGreedAttribute(theAttributeId);
221 std::string anAttributeId = myWidgetApi->widgetId();
222 if (myWidgetApi->getBooleanAttribute(ATTR_GREED, false))
223 theAttributeId = anAttributeId;
224 if (theAttributeId.empty() && myWidgetApi->isPagedWidget()) {
225 //If current widget is toolbox or switch-casebox then fetch all
226 //it's pages recursively and setup into the widget.
227 if (myWidgetApi->toChildWidget()) {
229 getGreedAttribute(theAttributeId);
230 } while (theAttributeId.empty() && myWidgetApi->toNextWidget());
234 } while (theAttributeId.empty() && myWidgetApi->toNextWidget());
237 void ModuleBase_WidgetFactory::moveToWidgetId(const std::string& theWidgetId, bool& theFound)
242 if (!myWidgetApi->toChildWidget())
245 do { //Iterate over each node
246 std::string aWdgType = myWidgetApi->widgetType();
247 // Find title under PageGroup
248 if (myWidgetApi->isGroupBoxWidget() ||
249 ModuleBase_WidgetCreatorFactory::get()->hasPageWidget(aWdgType)) {
250 moveToWidgetId(theWidgetId, theFound);
254 std::string anAttributeId = myWidgetApi->widgetId();
255 theFound = anAttributeId == theWidgetId;
256 if (!theFound && myWidgetApi->isPagedWidget()) {
257 //If current widget is toolbox or switch-casebox then fetch all
258 //it's pages recursively and setup into the widget.
259 if (myWidgetApi->toChildWidget()) {
261 moveToWidgetId(theWidgetId, theFound);
262 } while (!theFound && myWidgetApi->toNextWidget());
266 } while (!theFound && myWidgetApi->toNextWidget());
269 ModuleBase_PageBase* ModuleBase_WidgetFactory::createPageByType(const std::string& theType,
272 ModuleBase_PageBase* aResult = NULL;
274 if (theType == WDG_GROUP) {
275 QString aGroupName = qs(myWidgetApi->getProperty(CONTAINER_PAGE_NAME));
276 ModuleBase_PageGroupBox* aPage = new ModuleBase_PageGroupBox(theParent);
277 aPage->setTitle(aGroupName);
280 else if (theType == WDG_OPTIONALBOX) {
281 ModuleBase_WidgetOptionalBox* aPage = new ModuleBase_WidgetOptionalBox(theParent,
286 aResult = ModuleBase_WidgetCreatorFactory::get()->createPageByType(theType, theParent,
289 ModuleBase_ModelWidget* aWidget = dynamic_cast<ModuleBase_ModelWidget*>(aResult);
291 myModelWidgets.append(aWidget);
296 ModuleBase_ModelWidget* ModuleBase_WidgetFactory::createWidgetByType(const std::string& theType,
299 ModuleBase_ModelWidget* result = NULL;
301 if (theType == WDG_INFO) {
302 result = new ModuleBase_WidgetLabel(theParent, myWidgetApi);
303 } else if (theType == WDG_DOUBLEVALUE) {
304 result = new ModuleBase_WidgetDoubleValue(theParent, myWidgetApi);
305 } else if (theType == WDG_DOUBLEVALUELABEL) {
306 result = new ModuleBase_WidgetLabelValue(theParent, myWidgetApi);
307 } else if (theType == WDG_INTEGERVALUE) {
308 result = new ModuleBase_WidgetIntValue(theParent, myWidgetApi);
309 } else if (theType == WDG_SHAPE_SELECTOR) {
310 result = new ModuleBase_WidgetShapeSelector(theParent, myWorkshop, myWidgetApi);
311 } else if (theType == WDG_FEATURE_SELECTOR) {
312 result = new ModuleBase_WidgetFeatureSelector(theParent, myWorkshop, myWidgetApi);
313 } else if (theType == WDG_BOOLVALUE) {
314 result = new ModuleBase_WidgetBoolValue(theParent, myWidgetApi);
315 //} else if (theType == WDG_DOUBLEVALUE_EDITOR) {
316 // result = new ModuleBase_WidgetEditor(theParent, myWidgetApi);
317 } else if (theType == WDG_FILE_SELECTOR) {
318 result = new ModuleBase_WidgetFileSelector(theParent, myWidgetApi);
319 } else if (theType == WDG_CHOICE) {
320 result = new ModuleBase_WidgetChoice(theParent, myWidgetApi);
321 } else if (theType == WDG_STRINGVALUE) {
322 std::string aPlaceHolder = myWidgetApi->getProperty( WDG_PLACE_HOLDER );
323 result = new ModuleBase_WidgetLineEdit( theParent, myWidgetApi, aPlaceHolder );
324 } else if (theType == WDG_NAMEVALUE) {
325 std::string aPlaceHolder = myWidgetApi->getProperty( WDG_PLACE_HOLDER );
326 result = new ModuleBase_WidgetNameEdit( theParent, myWidgetApi, aPlaceHolder );
327 } else if (theType == WDG_EXPR_EDITOR) {
328 std::string aPlaceHolder = myWidgetApi->getProperty( WDG_PLACE_HOLDER );
329 result = new ModuleBase_WidgetExprEditor( theParent, myWidgetApi, aPlaceHolder );
330 } else if (theType == WDG_MULTISELECTOR) {
331 result = new ModuleBase_WidgetMultiSelector(theParent, myWorkshop, myWidgetApi);
332 } else if (theType == WDG_CONCEALED_OBJECTS_VIEW) {
333 result = new ModuleBase_WidgetConcealedObjects(theParent, myWidgetApi);
334 } else if (theType == WDG_TOOLBOX) {
335 result = new ModuleBase_WidgetToolbox(theParent, myWidgetApi);
336 } else if (theType == WDG_RADIOBOX) {
337 result = new ModuleBase_WidgetRadiobox(theParent, myWidgetApi);
338 } else if (theType == WDG_SWITCH) {
339 result = new ModuleBase_WidgetSwitch(theParent, myWidgetApi);
340 } else if (theType == WDG_TOOLBOX_BOX || theType == WDG_SWITCH_CASE ||
341 theType == NODE_VALIDATOR) {
342 // Do nothing for "box" and "case"
344 } else if (theType == WDG_ACTION) {
345 result = new ModuleBase_WidgetAction(theParent, myWidgetApi);
346 } else if (theType == WDG_POINT_INPUT) {
347 result = new ModuleBase_WidgetPointInput(theParent, myWorkshop, myWidgetApi);
348 } else if (theType == WDG_SELECTION_FILTERS) {
349 result = new ModuleBase_WidgetSelectionFilter(theParent, myWorkshop, myWidgetApi);
351 result = myWorkshop->module()->createWidgetByType(theType, theParent, myWidgetApi);
353 result = ModuleBase_WidgetCreatorFactory::get()->createWidgetByType(theType, theParent,
354 myWidgetApi, myWorkshop);
357 qDebug("ModuleBase_WidgetFactory::fillWidget: find bad widget type %s", theType.c_str());
362 myModelWidgets.append(result);
366 QString ModuleBase_WidgetFactory::qs(const std::string& theStdString)
368 return QString::fromStdString(theStdString);