Salome HOME
Merge branch 'BR_EDF_2018_Lot1'
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetFactory.cpp
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
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.
7 //
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.
12 //
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
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include <ModuleBase_WidgetFactory.h>
22 #include <ModuleBase_IconFactory.h>
23
24 #include <ModuleBase_Operation.h>
25 #include <ModuleBase_OperationDescription.h>
26 #include <ModuleBase_WidgetEditor.h>
27 #include <ModuleBase_WidgetSwitch.h>
28 #include <ModuleBase_WidgetShapeSelector.h>
29 #include <ModuleBase_WidgetFeatureSelector.h>
30 #include <ModuleBase_WidgetDoubleValue.h>
31 #include <ModuleBase_WidgetLabelValue.h>
32 #include <ModuleBase_WidgetIntValue.h>
33 #include <ModuleBase_WidgetBoolValue.h>
34 #include <ModuleBase_WidgetFileSelector.h>
35 #include <ModuleBase_WidgetChoice.h>
36 #include <ModuleBase_IWorkshop.h>
37 #include <ModuleBase_IModule.h>
38 #include <ModuleBase_Tools.h>
39 #include <ModuleBase_WidgetLineEdit.h>
40 #include <ModuleBase_WidgetNameEdit.h>
41 #include <ModuleBase_WidgetMultiSelector.h>
42 #include <ModuleBase_WidgetConcealedObjects.h>
43 #include <ModuleBase_WidgetLabel.h>
44 #include <ModuleBase_WidgetToolbox.h>
45 #include <ModuleBase_WidgetRadiobox.h>
46 #include <ModuleBase_PageBase.h>
47 #include <ModuleBase_PageGroupBox.h>
48 #include <ModuleBase_WidgetOptionalBox.h>
49 #include <ModuleBase_PageWidget.h>
50 #include <ModuleBase_WidgetExprEditor.h>
51 #include <ModuleBase_WidgetCreatorFactory.h>
52 #include <ModuleBase_WidgetAction.h>
53 #include <ModuleBase_WidgetPointInput.h>
54
55 #include <ModelAPI_Validator.h>
56 #include <ModelAPI_Session.h>
57
58 #include <Config_Keywords.h>
59 #include <Config_WidgetAPI.h>
60
61 #include <QWidget>
62 #include <QHBoxLayout>
63 #include <QGridLayout>
64 #include <QSpinBox>
65 #include <QMetaProperty>
66 #include <QLabel>
67 #include <QPixmap>
68 #include <QGroupBox>
69 #include <QToolBox>
70
71 #ifdef _DEBUG
72 #include <QDebug>
73 #endif
74
75 #include <cfloat>
76 #include <climits>
77
78 ModuleBase_WidgetFactory::ModuleBase_WidgetFactory(const std::string& theXmlRepresentation,
79                                                    ModuleBase_IWorkshop* theWorkshop)
80     : myWorkshop(theWorkshop)
81 {
82   myWidgetApi = new Config_WidgetAPI(theXmlRepresentation);
83 }
84
85 ModuleBase_WidgetFactory::~ModuleBase_WidgetFactory()
86 {
87   delete myWidgetApi;
88 }
89
90 void ModuleBase_WidgetFactory::createWidget(ModuleBase_PageBase* thePage, bool alignToTop)
91 {
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())
101       return;
102   }
103
104   if (!myWidgetApi->toChildWidget())
105     return;
106
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)) {
112
113       //if current widget is groupbox (container) process it's children recursively
114       ModuleBase_PageBase* aPage = createPageByType(aWdgType, thePage->pageWidget());
115
116       createWidget(aPage);
117       thePage->addPageWidget(aPage);
118     } else {
119       // Create a ModelWidget
120       ModuleBase_ModelWidget* aWidget = createWidgetByType(aWdgType, thePage->pageWidget());
121       if (aWidget) {
122         if (!myWidgetApi->getBooleanAttribute(ATTR_INTERNAL, false)) {
123           thePage->addModelWidget(aWidget);
124         } else {
125           aWidget->setVisible(false);
126         }
127       }
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()) {
133           do {
134             QString aPageName = qs(myWidgetApi->getProperty(CONTAINER_PAGE_NAME));
135             QString aCaseId = qs(myWidgetApi->getProperty(_ID));
136             ModuleBase_PageBase* aPage = new ModuleBase_PageWidget(aWidget);
137             createWidget(aPage);
138             if (aWdgType == WDG_SWITCH || aWdgType == WDG_TOOLBOX || aWdgType == WDG_RADIOBOX) {
139               ModuleBase_PagedContainer* aContainer =
140                 qobject_cast<ModuleBase_PagedContainer*>(aWidget);
141
142               QString anIconPath = qs( myWidgetApi->getProperty( CONTAINER_PAGE_ICON ) );
143               QPixmap anIcon = ModuleBase_IconFactory::loadPixmap( anIconPath );
144               aContainer->addPage( aPage, aPageName, aCaseId, anIcon );
145             }
146           } while (myWidgetApi->toNextWidget());
147         }
148       }
149     }
150   } while (myWidgetApi->toNextWidget());
151
152   if (alignToTop)
153     thePage->alignToTop();
154 }
155
156 void ModuleBase_WidgetFactory::createPanel(ModuleBase_PageBase* thePage,
157                                            const FeaturePtr& theFeature)
158 {
159   std::string aPanelName = myWidgetApi->getProperty(PROPERTY_PANEL_ID);
160   if (!aPanelName.empty() && ModuleBase_WidgetCreatorFactory::get()->hasPanelWidget(aPanelName)) {
161     QWidget* aPanel = ModuleBase_WidgetCreatorFactory::get()->createPanelByType(aPanelName,
162                                                                thePage->pageWidget(), theFeature);
163     thePage->addWidget(aPanel);
164     thePage->alignToTop();
165   }
166 }
167
168 void ModuleBase_WidgetFactory::createWidget(ModuleBase_PageBase* thePage,
169                                             const std::string& theWidgetId)
170 {
171   bool aFound = false;
172   moveToWidgetId(theWidgetId, aFound);
173   if (aFound) {
174     std::string aWdgType = myWidgetApi->widgetType();
175
176     // Create a ModelWidget
177     ModuleBase_ModelWidget* aWidget = createWidgetByType(aWdgType, thePage->pageWidget());
178     if (aWidget) {
179       if (!myWidgetApi->getBooleanAttribute(ATTR_INTERNAL, false)) {
180         thePage->addModelWidget(aWidget);
181       }
182       else {
183         aWidget->setVisible(false);
184       }
185     }
186   }
187   thePage->alignToTop();
188 }
189
190 void ModuleBase_WidgetFactory::getAttributeTitle(const std::string& theAttributeId,
191                                                  std::string& theTitle)
192 {
193   bool aFound = false;
194   moveToWidgetId(theAttributeId, aFound);
195   if (aFound) {
196     theTitle = QString::fromStdString(myWidgetApi->widgetLabel()).toStdString().c_str();
197     if (theTitle.empty())
198       theTitle =
199       QString::fromStdString(myWidgetApi->getProperty(CONTAINER_PAGE_NAME)).toStdString().c_str();
200   }
201 }
202
203 void ModuleBase_WidgetFactory::getGreedAttribute(std::string& theAttributeId)
204 {
205   if (!theAttributeId.empty())
206     return;
207
208   if (!myWidgetApi->toChildWidget())
209     return;
210
211   do {  //Iterate over each node
212     std::string aWdgType = myWidgetApi->widgetType();
213     // Find title under PageGroup
214     if (myWidgetApi->isGroupBoxWidget() ||
215       ModuleBase_WidgetCreatorFactory::get()->hasPageWidget(aWdgType)) {
216       getGreedAttribute(theAttributeId);
217     }
218     else {
219       // Find title here
220       std::string anAttributeId = myWidgetApi->widgetId();
221       if (myWidgetApi->getBooleanAttribute(ATTR_GREED, false))
222         theAttributeId = anAttributeId;
223       if (theAttributeId.empty() && myWidgetApi->isPagedWidget()) {
224         //If current widget is toolbox or switch-casebox then fetch all
225         //it's pages recursively and setup into the widget.
226         if (myWidgetApi->toChildWidget()) {
227           do {
228             getGreedAttribute(theAttributeId);
229           } while (theAttributeId.empty() && myWidgetApi->toNextWidget());
230         }
231       }
232     }
233   } while (theAttributeId.empty() && myWidgetApi->toNextWidget());
234 }
235
236 void ModuleBase_WidgetFactory::moveToWidgetId(const std::string& theWidgetId, bool& theFound)
237 {
238   if (theFound)
239     return;
240
241   if (!myWidgetApi->toChildWidget())
242     return;
243
244   do {  //Iterate over each node
245     std::string aWdgType = myWidgetApi->widgetType();
246     // Find title under PageGroup
247     if (myWidgetApi->isGroupBoxWidget() ||
248       ModuleBase_WidgetCreatorFactory::get()->hasPageWidget(aWdgType)) {
249       moveToWidgetId(theWidgetId, theFound);
250     }
251     else {
252       // Find title here
253       std::string anAttributeId = myWidgetApi->widgetId();
254       theFound = anAttributeId == theWidgetId;
255       if (!theFound && myWidgetApi->isPagedWidget()) {
256         //If current widget is toolbox or switch-casebox then fetch all
257         //it's pages recursively and setup into the widget.
258         if (myWidgetApi->toChildWidget()) {
259           do {
260             moveToWidgetId(theWidgetId, theFound);
261           } while (!theFound && myWidgetApi->toNextWidget());
262         }
263       }
264     }
265   } while (!theFound && myWidgetApi->toNextWidget());
266 }
267
268 ModuleBase_PageBase* ModuleBase_WidgetFactory::createPageByType(const std::string& theType,
269                                                                 QWidget* theParent)
270 {
271   ModuleBase_PageBase* aResult = NULL;
272
273   if (theType == WDG_GROUP) {
274     QString aGroupName = qs(myWidgetApi->getProperty(CONTAINER_PAGE_NAME));
275     ModuleBase_PageGroupBox* aPage = new ModuleBase_PageGroupBox(theParent);
276     aPage->setTitle(aGroupName);
277     aResult = aPage;
278   }
279   else if (theType == WDG_OPTIONALBOX) {
280     ModuleBase_WidgetOptionalBox* aPage = new ModuleBase_WidgetOptionalBox(theParent,
281                                                                 myWidgetApi);
282     aResult = aPage;
283   }
284   if (!aResult)
285     aResult = ModuleBase_WidgetCreatorFactory::get()->createPageByType(theType, theParent,
286                                                                        myWidgetApi);
287
288   ModuleBase_ModelWidget* aWidget = dynamic_cast<ModuleBase_ModelWidget*>(aResult);
289   if (aWidget)
290     myModelWidgets.append(aWidget);
291
292   return aResult;
293 }
294
295 ModuleBase_ModelWidget* ModuleBase_WidgetFactory::createWidgetByType(const std::string& theType,
296                                                                      QWidget* theParent)
297 {
298   ModuleBase_ModelWidget* result = NULL;
299
300   if (theType == WDG_INFO) {
301     result = new ModuleBase_WidgetLabel(theParent, myWidgetApi);
302   } else if (theType == WDG_DOUBLEVALUE) {
303     result = new ModuleBase_WidgetDoubleValue(theParent, myWidgetApi);
304   } else if (theType == WDG_DOUBLEVALUELABEL) {
305     result = new ModuleBase_WidgetLabelValue(theParent, myWidgetApi);
306   } else if (theType == WDG_INTEGERVALUE) {
307     result = new ModuleBase_WidgetIntValue(theParent, myWidgetApi);
308   } else if (theType == WDG_SHAPE_SELECTOR) {
309     result = new ModuleBase_WidgetShapeSelector(theParent, myWorkshop, myWidgetApi);
310   } else if (theType == WDG_FEATURE_SELECTOR) {
311     result = new ModuleBase_WidgetFeatureSelector(theParent, myWorkshop, myWidgetApi);
312   } else if (theType == WDG_BOOLVALUE) {
313     result = new ModuleBase_WidgetBoolValue(theParent, myWidgetApi);
314   //} else if (theType == WDG_DOUBLEVALUE_EDITOR) {
315   //  result = new ModuleBase_WidgetEditor(theParent, myWidgetApi);
316   } else if (theType == WDG_FILE_SELECTOR) {
317     result = new ModuleBase_WidgetFileSelector(theParent, myWidgetApi);
318   } else if (theType == WDG_CHOICE) {
319     result = new ModuleBase_WidgetChoice(theParent, myWidgetApi);
320   } else if (theType == WDG_STRINGVALUE) {
321     std::string aPlaceHolder = myWidgetApi->getProperty( WDG_PLACE_HOLDER );
322     result = new ModuleBase_WidgetLineEdit( theParent, myWidgetApi, aPlaceHolder );
323   } else if (theType == WDG_NAMEVALUE) {
324     std::string aPlaceHolder = myWidgetApi->getProperty( WDG_PLACE_HOLDER );
325     result = new ModuleBase_WidgetNameEdit( theParent, myWidgetApi, aPlaceHolder );
326   } else if (theType == WDG_EXPR_EDITOR) {
327     std::string aPlaceHolder = myWidgetApi->getProperty( WDG_PLACE_HOLDER );
328     result = new ModuleBase_WidgetExprEditor( theParent, myWidgetApi, aPlaceHolder );
329   } else if (theType == WDG_MULTISELECTOR) {
330     result = new ModuleBase_WidgetMultiSelector(theParent, myWorkshop, myWidgetApi);
331   } else if (theType == WDG_CONCEALED_OBJECTS_VIEW) {
332     result = new ModuleBase_WidgetConcealedObjects(theParent, myWidgetApi);
333   } else if (theType == WDG_TOOLBOX) {
334     result = new ModuleBase_WidgetToolbox(theParent, myWidgetApi);
335   } else if (theType == WDG_RADIOBOX) {
336     result = new ModuleBase_WidgetRadiobox(theParent, myWidgetApi);
337   } else if (theType == WDG_SWITCH) {
338     result = new ModuleBase_WidgetSwitch(theParent, myWidgetApi);
339   } else if (theType == WDG_TOOLBOX_BOX || theType == WDG_SWITCH_CASE ||
340              theType == NODE_VALIDATOR) {
341     // Do nothing for "box" and "case"
342     result = NULL;
343   } else if (theType == WDG_ACTION) {
344     result = new ModuleBase_WidgetAction(theParent, myWidgetApi);
345   } else if (theType == WDG_POINT_INPUT) {
346     result = new ModuleBase_WidgetPointInput(theParent, myWorkshop, myWidgetApi);
347   } else {
348     result = myWorkshop->module()->createWidgetByType(theType, theParent, myWidgetApi);
349     if (!result)
350       result = ModuleBase_WidgetCreatorFactory::get()->createWidgetByType(theType, theParent,
351                                                               myWidgetApi, myWorkshop);
352     #ifdef _DEBUG
353     if (!result) {
354       qDebug("ModuleBase_WidgetFactory::fillWidget: find bad widget type %s", theType.c_str());
355     }
356     #endif
357   }
358   if (result)
359     myModelWidgets.append(result);
360   return result;
361 }
362
363 QString ModuleBase_WidgetFactory::qs(const std::string& theStdString)
364 {
365   return QString::fromStdString(theStdString);
366 }
367