Salome HOME
Result attributes validators created
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetFactory.h
1 /*
2  * ModuleBase_WidgetFactory.h
3  *
4  *  Created on: Apr 3, 2014
5  *      Author: sbh
6  */
7
8 #ifndef ModuleBase_WidgetFactory_H_
9 #define ModuleBase_WidgetFactory_H_
10
11 #include "ModuleBase.h"
12 #include "ModuleBase_ModelWidget.h"
13
14 #include <QString>
15 #include <QList>
16
17 class QObject;
18 class QWidget;
19 class Config_WidgetAPI;
20 class ModuleBase_IWorkshop;
21
22 class MODULEBASE_EXPORT ModuleBase_WidgetFactory
23 {
24 public:
25   ModuleBase_WidgetFactory(const std::string& theXmlRepresentation, ModuleBase_IWorkshop* theWorkshop);
26   virtual ~ModuleBase_WidgetFactory();
27
28   void createWidget(QWidget* theParent);
29
30   QList<ModuleBase_ModelWidget*> getModelWidgets() const
31   {
32     return myModelWidgets;
33   }
34
35 protected:
36   //Widgets
37   QWidget* createWidgetByType(const std::string& theType, QWidget* theParent = NULL);
38   QWidget* labelControl(QWidget* theParent);
39   QWidget* doubleSpinBoxControl(QWidget* theParent);
40   QWidget* pointSelectorControl(QWidget* theParent);
41   QWidget* featureSelectorControl(QWidget* theParent);
42   QWidget* featureOrAttributeSelectorControl(QWidget* theParent);
43   QWidget* doubleValueEditor(QWidget* theParent);
44   QWidget* createContainer(const std::string& theType, QWidget* theParent = NULL);
45   QWidget* selectorControl(QWidget* theParent);
46   QWidget* booleanControl(QWidget* theParent);
47   QWidget* point2dDistanceControl(QWidget* theParent);
48
49   /// Check whether the XML definition for the given type contains internal property
50   /// \param theType the widget type
51   /// \return the boolean result
52   bool isInternalWidget(const std::string& theType);
53
54   QString qs(const std::string& theStdString) const;
55
56 private:
57   Config_WidgetAPI* myWidgetApi;
58   ModuleBase_IWorkshop*   myWorkshop;
59
60   QList<ModuleBase_ModelWidget*> myModelWidgets;
61   std::string myParentId;
62 };
63
64 #endif /* ModuleBase_WidgetFactory_H_ */