Salome HOME
2.5. Select the point of a sketch entity must display the editing point panel
[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
12 #include <ModuleBase_Operation.h>
13 #include <ModuleBase_OperationDescription.h>
14 #include <ModuleBase_WidgetEditor.h>
15 #include <ModuleBase_WidgetSwitch.h>
16 #include <ModuleBase_WidgetShapeSelector.h>
17 #include <ModuleBase_WidgetDoubleValue.h>
18 #include <ModuleBase_WidgetIntValue.h>
19 #include <ModuleBase_WidgetBoolValue.h>
20 #include <ModuleBase_WidgetFileSelector.h>
21 #include <ModuleBase_WidgetChoice.h>
22 #include <ModuleBase_IWorkshop.h>
23 #include <ModuleBase_IModule.h>
24 #include <ModuleBase_Tools.h>
25 #include <ModuleBase_WidgetLineEdit.h>
26 #include <ModuleBase_WidgetMultiSelector.h>
27 #include <ModuleBase_WidgetLabel.h>
28 #include <ModuleBase_WidgetErrorLabel.h>
29 #include <ModuleBase_WidgetToolbox.h>
30 #include <ModuleBase_PageBase.h>
31 #include <ModuleBase_PageGroupBox.h>
32 #include <ModuleBase_WidgetCheckGroupBox.h>
33 #include <ModuleBase_PageWidget.h>
34 #include <ModuleBase_WidgetExprEditor.h>
35 #include <ModuleBase_WidgetCreatorFactory.h>
36
37 #include <ModelAPI_Validator.h>
38 #include <ModelAPI_Session.h>
39
40 #include <Config_Keywords.h>
41 #include <Config_WidgetAPI.h>
42
43 #include <QWidget>
44 #include <QHBoxLayout>
45 #include <QGridLayout>
46 #include <QSpinBox>
47 #include <QMetaProperty>
48 #include <QLabel>
49 #include <QPixmap>
50 #include <QGroupBox>
51 #include <QToolBox>
52
53 #ifdef _DEBUG
54 #include <QDebug>
55 #endif
56
57 #include <cfloat>
58 #include <climits>
59
60 ModuleBase_WidgetFactory::ModuleBase_WidgetFactory(const std::string& theXmlRepresentation,
61                                                    ModuleBase_IWorkshop* theWorkshop)
62     : myWorkshop(theWorkshop)
63 {
64   myWidgetApi = new Config_WidgetAPI(theXmlRepresentation);
65 }
66
67 ModuleBase_WidgetFactory::~ModuleBase_WidgetFactory()
68 {
69   delete myWidgetApi;
70 }
71
72 void ModuleBase_WidgetFactory::createWidget(ModuleBase_PageBase* thePage)
73 {
74   myParentId = myWidgetApi->widgetId();
75   if (!myWidgetApi->toChildWidget())
76     return;
77
78   do {  //Iterate over each node
79     std::string aWdgType = myWidgetApi->widgetType();
80     // Create PageGroup TODO: extract
81     if (myWidgetApi->isGroupBoxWidget() ||
82         ModuleBase_WidgetCreatorFactory::get()->hasPageWidget(aWdgType)) {
83
84       //if current widget is groupbox (container) process it's children recursively
85       ModuleBase_PageBase* aPage = createPageByType(aWdgType, thePage->pageWidget());
86
87       createWidget(aPage);
88       thePage->addPageWidget(aPage);
89     } else {
90       // Create a ModelWidget
91       ModuleBase_ModelWidget* aWidget = createWidgetByType(aWdgType, thePage->pageWidget());
92       if (aWidget) {
93         if (!myWidgetApi->getBooleanAttribute(ATTR_INTERNAL, false)) {
94           thePage->addModelWidget(aWidget);
95         } else {
96           aWidget->setVisible(false);
97         }
98       }
99       // Create PagedContainer TODO: extract
100       if (myWidgetApi->isPagedWidget()) {
101         //If current widget is toolbox or switch-casebox then fetch all
102         //it's pages recursively and setup into the widget.
103         myWidgetApi->toChildWidget();
104         do {
105           QString aPageName = qs(myWidgetApi->getProperty(CONTAINER_PAGE_NAME));
106           QString aCaseId = qs(myWidgetApi->getProperty(_ID));
107           ModuleBase_PageBase* aPage = new ModuleBase_PageWidget(aWidget);
108           createWidget(aPage);
109           if (aWdgType == WDG_SWITCH || aWdgType == WDG_TOOLBOX) {
110             ModuleBase_PagedContainer* aContainer = qobject_cast<ModuleBase_PagedContainer*>(aWidget);
111
112             QString anIconPath = qs( myWidgetApi->getProperty( CONTAINER_PAGE_ICON ) );
113             QPixmap anIcon( anIconPath );
114             aContainer->addPage( aPage, aPageName, aCaseId, anIcon );
115           }
116         } while (myWidgetApi->toNextWidget());
117       }
118     }
119   } while (myWidgetApi->toNextWidget());
120
121   thePage->alignToTop();
122 }
123
124 void ModuleBase_WidgetFactory::createWidget(ModuleBase_PageBase* thePage,
125                                             const std::string& theWidgetId)
126 {
127   bool aFound = false;
128   moveToWidgetId(theWidgetId, aFound);
129   if (aFound) {
130     std::string aWdgType = myWidgetApi->widgetType();
131
132     // Create a ModelWidget
133     ModuleBase_ModelWidget* aWidget = createWidgetByType(aWdgType, thePage->pageWidget());
134     if (aWidget) {
135       if (!myWidgetApi->getBooleanAttribute(ATTR_INTERNAL, false)) {
136         thePage->addModelWidget(aWidget);
137       }
138       else {
139         aWidget->setVisible(false);
140       }
141     }
142   }
143   thePage->alignToTop();
144 }
145
146 void ModuleBase_WidgetFactory::getAttributeTitle(const std::string& theFeatureKind,
147                                                  const std::string& theAttributeId,
148                                                  std::string& theTitle)
149 {
150   bool aFound = false;
151   moveToWidgetId(theAttributeId, aFound);
152   if (aFound) {
153     theTitle = QString::fromStdString(myWidgetApi->widgetLabel()).toStdString().c_str();
154     if (theTitle.empty())
155       theTitle = QString::fromStdString(myWidgetApi->getProperty(CONTAINER_PAGE_NAME)).toStdString().c_str();
156   }
157 }
158
159 void ModuleBase_WidgetFactory::moveToWidgetId(const std::string& theWidgetId, bool& theFound)
160 {
161   if (theFound)
162     return;
163
164   myParentId = myWidgetApi->widgetId();
165   if (!myWidgetApi->toChildWidget())
166     return;
167
168   do {  //Iterate over each node
169     std::string aWdgType = myWidgetApi->widgetType();
170     // Find title under PageGroup
171     if (myWidgetApi->isGroupBoxWidget() ||
172       ModuleBase_WidgetCreatorFactory::get()->hasPageWidget(aWdgType)) {
173       moveToWidgetId(theWidgetId, theFound);
174     }
175     else {
176       // Find title here
177       std::string anAttributeId = myWidgetApi->widgetId();
178       theFound = anAttributeId == theWidgetId;
179       if (!theFound && myWidgetApi->isPagedWidget()) {
180         //If current widget is toolbox or switch-casebox then fetch all
181         //it's pages recursively and setup into the widget.
182         myWidgetApi->toChildWidget();
183         do {
184           moveToWidgetId(theWidgetId, theFound);
185         } while (!theFound && myWidgetApi->toNextWidget());
186       }
187     }
188   } while (!theFound && myWidgetApi->toNextWidget());
189 }
190
191 ModuleBase_PageBase* ModuleBase_WidgetFactory::createPageByType(const std::string& theType,
192                                                                 QWidget* theParent)
193 {
194   ModuleBase_PageBase* aResult = NULL;
195
196   if (theType == WDG_GROUP) {
197     QString aGroupName = qs(myWidgetApi->getProperty(CONTAINER_PAGE_NAME));
198     ModuleBase_PageGroupBox* aPage = new ModuleBase_PageGroupBox(theParent);
199     aPage->setTitle(aGroupName);
200     aResult = aPage;
201   }
202   else if (theType == WDG_CHECK_GROUP) {
203     QString aGroupName = qs(myWidgetApi->getProperty(CONTAINER_PAGE_NAME));
204     ModuleBase_WidgetCheckGroupBox* aPage = new ModuleBase_WidgetCheckGroupBox(theParent,
205                                                                 myWidgetApi, myParentId);
206     aPage->setTitle(aGroupName);
207     aResult = aPage;
208   }
209   if (!aResult)
210     aResult = ModuleBase_WidgetCreatorFactory::get()->createPageByType(theType, theParent,
211                                                                        myWidgetApi, myParentId);
212
213   ModuleBase_ModelWidget* aWidget = dynamic_cast<ModuleBase_ModelWidget*>(aResult);
214   if (aWidget)
215     myModelWidgets.append(aWidget);
216
217   return aResult;
218 }
219
220 ModuleBase_ModelWidget* ModuleBase_WidgetFactory::createWidgetByType(const std::string& theType,
221                                                                      QWidget* theParent)
222 {
223   ModuleBase_ModelWidget* result = NULL;
224
225   if (theType == WDG_INFO) {
226     result = new ModuleBase_WidgetLabel(theParent, myWidgetApi, myParentId);
227   } else if (theType == WDG_ERRORINFO) {
228     result = new ModuleBase_WidgetErrorLabel(theParent, myWidgetApi, myParentId);
229   } else if (theType == WDG_DOUBLEVALUE) {
230     result = new ModuleBase_WidgetDoubleValue(theParent, myWidgetApi, myParentId);
231   } else if (theType == WDG_INTEGERVALUE) {
232     result = new ModuleBase_WidgetIntValue(theParent, myWidgetApi, myParentId);
233   } else if (theType == WDG_SHAPE_SELECTOR) {
234     result = new ModuleBase_WidgetShapeSelector(theParent, myWorkshop, myWidgetApi, myParentId);
235   } else if (theType == WDG_BOOLVALUE) {
236     result = new ModuleBase_WidgetBoolValue(theParent, myWidgetApi, myParentId);
237   //} else if (theType == WDG_DOUBLEVALUE_EDITOR) {
238   //  result = new ModuleBase_WidgetEditor(theParent, myWidgetApi, myParentId);
239   } else if (theType == WDG_FILE_SELECTOR) {
240     result = new ModuleBase_WidgetFileSelector(theParent, myWidgetApi, myParentId);
241   } else if (theType == WDG_CHOICE) {
242     result = new ModuleBase_WidgetChoice(theParent, myWidgetApi, myParentId);
243   } else if (theType == WDG_STRINGVALUE) {
244     std::string aPlaceHolder = myWidgetApi->getProperty( WDG_PLACE_HOLDER );
245     result = new ModuleBase_WidgetLineEdit( theParent, myWidgetApi, myParentId, aPlaceHolder );
246   } else if (theType == WDG_EXPR_EDITOR) {
247     std::string aPlaceHolder = myWidgetApi->getProperty( WDG_PLACE_HOLDER );
248     result = new ModuleBase_WidgetExprEditor( theParent, myWidgetApi, myParentId, aPlaceHolder );
249   } else if (theType == WDG_MULTISELECTOR) {
250     result = new ModuleBase_WidgetMultiSelector(theParent, myWorkshop, myWidgetApi, myParentId);
251   } else if (theType == WDG_TOOLBOX) {
252     result = new ModuleBase_WidgetToolbox(theParent, myWidgetApi, myParentId);
253   } else if (theType == WDG_SWITCH) {
254     result = new ModuleBase_WidgetSwitch(theParent, myWidgetApi, myParentId);
255   } else if (theType == WDG_TOOLBOX_BOX || theType == WDG_SWITCH_CASE ||
256              theType == NODE_VALIDATOR) {
257     // Do nothing for "box" and "case"
258     result = NULL;
259   } else {
260     result = myWorkshop->module()->createWidgetByType(theType, theParent, myWidgetApi, myParentId);
261     if (!result)
262       result = ModuleBase_WidgetCreatorFactory::get()->createWidgetByType(theType, theParent,
263                                                               myWidgetApi, myParentId, myWorkshop);
264     #ifdef _DEBUG
265     if (!result) {
266       qDebug("ModuleBase_WidgetFactory::fillWidget: find bad widget type %s", theType.c_str());
267     }
268     #endif
269   }
270   if (result)
271     myModelWidgets.append(result);
272   return result;
273 }
274
275 QString ModuleBase_WidgetFactory::qs(const std::string& theStdString)
276 {
277   return QString::fromStdString(theStdString);
278 }
279