Salome HOME
Set empty text if double value is set in editor
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetFactory.h
index f0303cdae36e66a47d336cb935514118650a8054..1e1f29fa76e8dfc54e6de9b682f1efc2881cc0f5 100644 (file)
@@ -1,3 +1,5 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 /*
  * ModuleBase_WidgetFactory.h
  *
@@ -5,8 +7,8 @@
  *      Author: sbh
  */
 
-#ifndef ModuleBase_WidgetFactory_H_
-#define ModuleBase_WidgetFactory_H_
+#ifndef MODULEBASE_WIDGETFACTORY_H_
+#define MODULEBASE_WIDGETFACTORY_H_
 
 #include <ModuleBase.h>
 #include <ModuleBase_ModelWidget.h>
 class QObject;
 class QWidget;
 class Config_WidgetAPI;
-class ModuleBase_Operation;
+class ModuleBase_IWorkshop;
+class ModuleBase_PageBase;
 
+/**
+* \ingroup GUI
+* A class for creation of widgets instances in for property panel using XML deskription of 
+* a feature
+*/
 class MODULEBASE_EXPORT ModuleBase_WidgetFactory
 {
-public:
-  ModuleBase_WidgetFactory(ModuleBase_Operation*);
+ public:
+   /// Constructor
+   /// \param theXmlRepresentation content of XML file
+   /// \param theWorkshop reference to workshop instance
+  ModuleBase_WidgetFactory(const std::string& theXmlRepresentation,
+                           ModuleBase_IWorkshop* theWorkshop);
   virtual ~ModuleBase_WidgetFactory();
 
-  void createWidget(QWidget* theParent);
+  /// Creates content widget for property panel
+  /// \param theParent a parent widget
+  void createWidget(ModuleBase_PageBase* theParent);
+
 
+  /// Returns list of model widgets
   QList<ModuleBase_ModelWidget*> getModelWidgets() const
   {
     return myModelWidgets;
   }
 
-protected:
-  //Widgets
-  QWidget* createWidgetByType(const std::string& theType, QWidget* theParent = NULL);
-  QWidget* labelControl(QWidget* theParent);
-  QWidget* doubleSpinBoxControl();
-  QWidget* pointSelectorControl(QWidget* theParent);
-  QWidget* createContainer(const std::string& theType, QWidget* theParent = NULL);
-  QWidget* selectorControl(QWidget* theParent);
-  QWidget* booleanControl(QWidget* theParent);
+ protected:
+  /// check if ModuleBase_Widget has expandable widgets in getControls
+  bool hasExpandingControls(QWidget* theParent);
+   /// Create widget by its type
+   /// \param theType a type
+   /// \param theParent a parent widget
+  ModuleBase_ModelWidget* createWidgetByType(const std::string& theType,
+                                             QWidget* theParent = NULL);
 
-  bool connectWidget(QObject*, const QString&);
-  QString qs(const std::string& theStdString) const;
+  /// Convert STD string to QT string
+  /// \param theStdString is STD string
+  static QString qs(const std::string& theStdString);
 
-private:
+ private:
+   /// API object for XML reading
   Config_WidgetAPI* myWidgetApi;
-  ModuleBase_Operation*   myOperation;
 
+  /// Reference to workshop
+  ModuleBase_IWorkshop* myWorkshop;
+
+  /// List of created model widgets
   QList<ModuleBase_ModelWidget*> myModelWidgets;
+
+  /// Id of current parent
+  std::string myParentId;
 };
 
 #endif /* ModuleBase_WidgetFactory_H_ */