Salome HOME
Issue #1309 Management of icons - corrections for PythonAddons plugin, to load icons...
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetFactory.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 /*
4  * ModuleBase_WidgetFactory.cpp
5  *
6  *  Created on: Apr 3, 2014
7  *      Author: sbh
8  */
9
10 #include <ModuleBase_WidgetFactory.h>
11 #include <ModuleBase_IconFactory.h>
12
13 #include <ModuleBase_Operation.h>
14 #include <ModuleBase_OperationDescription.h>
15 #include <ModuleBase_WidgetEditor.h>
16 #include <ModuleBase_WidgetSwitch.h>
17 #include <ModuleBase_WidgetShapeSelector.h>
18 #include <ModuleBase_WidgetDoubleValue.h>
19 #include <ModuleBase_WidgetIntValue.h>
20 #include <ModuleBase_WidgetBoolValue.h>
21 #include <ModuleBase_WidgetFileSelector.h>
22 #include <ModuleBase_WidgetChoice.h>
23 #include <ModuleBase_IWorkshop.h>
24 #include <ModuleBase_IModule.h>
25 #include <ModuleBase_Tools.h>
26 #include <ModuleBase_WidgetLineEdit.h>
27 #include <ModuleBase_WidgetMultiSelector.h>
28 #include <ModuleBase_WidgetLabel.h>
29 #include <ModuleBase_WidgetErrorLabel.h>
30 #include <ModuleBase_WidgetToolbox.h>
31 #include <ModuleBase_PageBase.h>
32 #include <ModuleBase_PageGroupBox.h>
33 #include <ModuleBase_WidgetCheckGroupBox.h>
34 #include <ModuleBase_PageWidget.h>
35 #include <ModuleBase_WidgetExprEditor.h>
36 #include <ModuleBase_WidgetCreatorFactory.h>
37 #include <ModuleBase_WidgetAction.h>
38
39 #include <ModelAPI_Validator.h>
40 #include <ModelAPI_Session.h>
41
42 #include <Config_Keywords.h>
43 #include <Config_WidgetAPI.h>
44
45 #include <QWidget>
46 #include <QHBoxLayout>
47 #include <QGridLayout>
48 #include <QSpinBox>
49 #include <QMetaProperty>
50 #include <QLabel>
51 #include <QPixmap>
52 #include <QGroupBox>
53 #include <QToolBox>
54
55 #ifdef _DEBUG
56 #include <QDebug>
57 #endif
58
59 #include <cfloat>
60 #include <climits>
61
62 ModuleBase_WidgetFactory::ModuleBase_WidgetFactory(const std::string& theXmlRepresentation,
63                                                    ModuleBase_IWorkshop* theWorkshop)
64     : myWorkshop(theWorkshop)
65 {
66   myWidgetApi = new Config_WidgetAPI(theXmlRepresentation);
67 }
68
69 ModuleBase_WidgetFactory::~ModuleBase_WidgetFactory()
70 {
71   delete myWidgetApi;
72 }
73
74 void ModuleBase_WidgetFactory::createWidget(ModuleBase_PageBase* thePage)
75 {
76   std::string aWType = myWidgetApi->widgetType();
77   if (aWType == NODE_FEATURE) {
78     // if XML definition of the feature contains the next key, the widgets should not be created,
79     // but a specific panel should be made. However, to provide persistent of the panel values,
80     // we need to get into the panel the feature of the operation. As a result this panel should
81     // be created after the feature creating(create operation). The method setPanel() of this
82     // class is used for this. Here, we just return to avoid the widgets creation.
83     std::string aPanelName = myWidgetApi->getProperty(PROPERTY_PANEL_ID);
84     if (!aPanelName.empty())
85       return;
86   }
87
88   if (!myWidgetApi->toChildWidget())
89     return;
90
91   do {  //Iterate over each node
92     std::string aWdgType = myWidgetApi->widgetType();
93     // Create PageGroup TODO: extract
94     if (myWidgetApi->isGroupBoxWidget() ||
95         ModuleBase_WidgetCreatorFactory::get()->hasPageWidget(aWdgType)) {
96
97       //if current widget is groupbox (container) process it's children recursively
98       ModuleBase_PageBase* aPage = createPageByType(aWdgType, thePage->pageWidget());
99
100       createWidget(aPage);
101       thePage->addPageWidget(aPage);
102     } else {
103       // Create a ModelWidget
104       ModuleBase_ModelWidget* aWidget = createWidgetByType(aWdgType, thePage->pageWidget());
105       if (aWidget) {
106         if (!myWidgetApi->getBooleanAttribute(ATTR_INTERNAL, false)) {
107           thePage->addModelWidget(aWidget);
108         } else {
109           aWidget->setVisible(false);
110         }
111       }
112       // Create PagedContainer TODO: extract
113       if (myWidgetApi->isPagedWidget()) {
114         //If current widget is toolbox or switch-casebox then fetch all
115         //it's pages recursively and setup into the widget.
116         if (myWidgetApi->toChildWidget()) {
117           do {
118             QString aPageName = qs(myWidgetApi->getProperty(CONTAINER_PAGE_NAME));
119             QString aCaseId = qs(myWidgetApi->getProperty(_ID));
120             ModuleBase_PageBase* aPage = new ModuleBase_PageWidget(aWidget);
121             createWidget(aPage);
122             if (aWdgType == WDG_SWITCH || aWdgType == WDG_TOOLBOX) {
123               ModuleBase_PagedContainer* aContainer = qobject_cast<ModuleBase_PagedContainer*>(aWidget);
124
125               QString anIconPath = qs( myWidgetApi->getProperty( CONTAINER_PAGE_ICON ) );
126               QPixmap anIcon = ModuleBase_IconFactory::loadPixmap( anIconPath );
127               aContainer->addPage( aPage, aPageName, aCaseId, anIcon );
128             }
129           } while (myWidgetApi->toNextWidget());
130         }
131       }
132     }
133   } while (myWidgetApi->toNextWidget());
134
135   thePage->alignToTop();
136 }
137
138 void ModuleBase_WidgetFactory::createPanel(ModuleBase_PageBase* thePage,
139                                            const FeaturePtr& theFeature)
140 {
141   std::string aPanelName = myWidgetApi->getProperty(PROPERTY_PANEL_ID);
142   if (!aPanelName.empty() && ModuleBase_WidgetCreatorFactory::get()->hasPanelWidget(aPanelName)) {
143     QWidget* aPanel = ModuleBase_WidgetCreatorFactory::get()->createPanelByType(aPanelName,
144                                                                thePage->pageWidget(), theFeature);
145     thePage->addWidget(aPanel);
146     thePage->alignToTop();
147   }
148 }
149
150 void ModuleBase_WidgetFactory::createWidget(ModuleBase_PageBase* thePage,
151                                             const std::string& theWidgetId)
152 {
153   bool aFound = false;
154   moveToWidgetId(theWidgetId, aFound);
155   if (aFound) {
156     std::string aWdgType = myWidgetApi->widgetType();
157
158     // Create a ModelWidget
159     ModuleBase_ModelWidget* aWidget = createWidgetByType(aWdgType, thePage->pageWidget());
160     if (aWidget) {
161       if (!myWidgetApi->getBooleanAttribute(ATTR_INTERNAL, false)) {
162         thePage->addModelWidget(aWidget);
163       }
164       else {
165         aWidget->setVisible(false);
166       }
167     }
168   }
169   thePage->alignToTop();
170 }
171
172 void ModuleBase_WidgetFactory::getAttributeTitle(const std::string& theAttributeId,
173                                                  std::string& theTitle)
174 {
175   bool aFound = false;
176   moveToWidgetId(theAttributeId, aFound);
177   if (aFound) {
178     theTitle = QString::fromStdString(myWidgetApi->widgetLabel()).toStdString().c_str();
179     if (theTitle.empty())
180       theTitle = QString::fromStdString(myWidgetApi->getProperty(CONTAINER_PAGE_NAME)).toStdString().c_str();
181   }
182 }
183
184 void ModuleBase_WidgetFactory::getGreedAttribute(std::string& theAttributeId)
185 {
186   if (!theAttributeId.empty())
187     return;
188
189   if (!myWidgetApi->toChildWidget())
190     return;
191
192   do {  //Iterate over each node
193     std::string aWdgType = myWidgetApi->widgetType();
194     // Find title under PageGroup
195     if (myWidgetApi->isGroupBoxWidget() ||
196       ModuleBase_WidgetCreatorFactory::get()->hasPageWidget(aWdgType)) {
197       getGreedAttribute(theAttributeId);
198     }
199     else {
200       // Find title here
201       std::string anAttributeId = myWidgetApi->widgetId();
202       if (myWidgetApi->getBooleanAttribute(ATTR_GREED, false))
203         theAttributeId = anAttributeId;
204       if (theAttributeId.empty() && myWidgetApi->isPagedWidget()) {
205         //If current widget is toolbox or switch-casebox then fetch all
206         //it's pages recursively and setup into the widget.
207         if (myWidgetApi->toChildWidget()) {
208           do {
209             getGreedAttribute(theAttributeId);
210           } while (theAttributeId.empty() && myWidgetApi->toNextWidget());
211         }
212       }
213     }
214   } while (theAttributeId.empty() && myWidgetApi->toNextWidget());
215 }
216
217 void ModuleBase_WidgetFactory::moveToWidgetId(const std::string& theWidgetId, bool& theFound)
218 {
219   if (theFound)
220     return;
221
222   if (!myWidgetApi->toChildWidget())
223     return;
224
225   do {  //Iterate over each node
226     std::string aWdgType = myWidgetApi->widgetType();
227     // Find title under PageGroup
228     if (myWidgetApi->isGroupBoxWidget() ||
229       ModuleBase_WidgetCreatorFactory::get()->hasPageWidget(aWdgType)) {
230       moveToWidgetId(theWidgetId, theFound);
231     }
232     else {
233       // Find title here
234       std::string anAttributeId = myWidgetApi->widgetId();
235       theFound = anAttributeId == theWidgetId;
236       if (!theFound && myWidgetApi->isPagedWidget()) {
237         //If current widget is toolbox or switch-casebox then fetch all
238         //it's pages recursively and setup into the widget.
239         if (myWidgetApi->toChildWidget()) {
240           do {
241             moveToWidgetId(theWidgetId, theFound);
242           } while (!theFound && myWidgetApi->toNextWidget());
243         }
244       }
245     }
246   } while (!theFound && myWidgetApi->toNextWidget());
247 }
248
249 ModuleBase_PageBase* ModuleBase_WidgetFactory::createPageByType(const std::string& theType,
250                                                                 QWidget* theParent)
251 {
252   ModuleBase_PageBase* aResult = NULL;
253
254   if (theType == WDG_GROUP) {
255     QString aGroupName = qs(myWidgetApi->getProperty(CONTAINER_PAGE_NAME));
256     ModuleBase_PageGroupBox* aPage = new ModuleBase_PageGroupBox(theParent);
257     aPage->setTitle(aGroupName);
258     aResult = aPage;
259   }
260   else if (theType == WDG_CHECK_GROUP) {
261     QString aGroupName = qs(myWidgetApi->getProperty(CONTAINER_PAGE_NAME));
262     ModuleBase_WidgetCheckGroupBox* aPage = new ModuleBase_WidgetCheckGroupBox(theParent,
263                                                                 myWidgetApi);
264     aPage->setTitle(aGroupName);
265     aResult = aPage;
266   }
267   if (!aResult)
268     aResult = ModuleBase_WidgetCreatorFactory::get()->createPageByType(theType, theParent,
269                                                                        myWidgetApi);
270
271   ModuleBase_ModelWidget* aWidget = dynamic_cast<ModuleBase_ModelWidget*>(aResult);
272   if (aWidget)
273     myModelWidgets.append(aWidget);
274
275   return aResult;
276 }
277
278 ModuleBase_ModelWidget* ModuleBase_WidgetFactory::createWidgetByType(const std::string& theType,
279                                                                      QWidget* theParent)
280 {
281   ModuleBase_ModelWidget* result = NULL;
282
283   if (theType == WDG_INFO) {
284     result = new ModuleBase_WidgetLabel(theParent, myWidgetApi);
285   } else if (theType == WDG_ERRORINFO) {
286     result = new ModuleBase_WidgetErrorLabel(theParent, myWidgetApi);
287   } else if (theType == WDG_DOUBLEVALUE) {
288     result = new ModuleBase_WidgetDoubleValue(theParent, myWidgetApi);
289   } else if (theType == WDG_INTEGERVALUE) {
290     result = new ModuleBase_WidgetIntValue(theParent, myWidgetApi);
291   } else if (theType == WDG_SHAPE_SELECTOR) {
292     result = new ModuleBase_WidgetShapeSelector(theParent, myWorkshop, myWidgetApi);
293   } else if (theType == WDG_BOOLVALUE) {
294     result = new ModuleBase_WidgetBoolValue(theParent, myWidgetApi);
295   //} else if (theType == WDG_DOUBLEVALUE_EDITOR) {
296   //  result = new ModuleBase_WidgetEditor(theParent, myWidgetApi);
297   } else if (theType == WDG_FILE_SELECTOR) {
298     result = new ModuleBase_WidgetFileSelector(theParent, myWidgetApi);
299   } else if (theType == WDG_CHOICE) {
300     result = new ModuleBase_WidgetChoice(theParent, myWidgetApi);
301   } else if (theType == WDG_STRINGVALUE) {
302     std::string aPlaceHolder = myWidgetApi->getProperty( WDG_PLACE_HOLDER );
303     result = new ModuleBase_WidgetLineEdit( theParent, myWidgetApi, aPlaceHolder );
304   } else if (theType == WDG_EXPR_EDITOR) {
305     std::string aPlaceHolder = myWidgetApi->getProperty( WDG_PLACE_HOLDER );
306     result = new ModuleBase_WidgetExprEditor( theParent, myWidgetApi, aPlaceHolder );
307   } else if (theType == WDG_MULTISELECTOR) {
308     result = new ModuleBase_WidgetMultiSelector(theParent, myWorkshop, myWidgetApi);
309   } else if (theType == WDG_TOOLBOX) {
310     result = new ModuleBase_WidgetToolbox(theParent, myWidgetApi);
311   } else if (theType == WDG_SWITCH) {
312     result = new ModuleBase_WidgetSwitch(theParent, myWidgetApi);
313   } else if (theType == WDG_TOOLBOX_BOX || theType == WDG_SWITCH_CASE ||
314              theType == NODE_VALIDATOR) {
315     // Do nothing for "box" and "case"
316     result = NULL;
317   } else if (theType == WDG_ACTION) {
318     result = new ModuleBase_WidgetAction(theParent, myWidgetApi);
319   } else {
320     result = myWorkshop->module()->createWidgetByType(theType, theParent, myWidgetApi);
321     if (!result)
322       result = ModuleBase_WidgetCreatorFactory::get()->createWidgetByType(theType, theParent,
323                                                               myWidgetApi, myWorkshop);
324     #ifdef _DEBUG
325     if (!result) {
326       qDebug("ModuleBase_WidgetFactory::fillWidget: find bad widget type %s", theType.c_str());
327     }
328     #endif
329   }
330   if (result)
331     myModelWidgets.append(result);
332   return result;
333 }
334
335 QString ModuleBase_WidgetFactory::qs(const std::string& theStdString)
336 {
337   return QString::fromStdString(theStdString);
338 }
339