X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetFactory.h;h=1e1f29fa76e8dfc54e6de9b682f1efc2881cc0f5;hb=241b57ba3887bc2d239df98405c4fc4d6979119b;hp=43b8208b6596d3912f436ea914ded46e337e8ab5;hpb=d9db5498b576854aae37ddf8c0bb6fceb264712e;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetFactory.h b/src/ModuleBase/ModuleBase_WidgetFactory.h index 43b8208b6..1e1f29fa7 100644 --- a/src/ModuleBase/ModuleBase_WidgetFactory.h +++ b/src/ModuleBase/ModuleBase_WidgetFactory.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + /* * ModuleBase_WidgetFactory.h * @@ -5,11 +7,11 @@ * 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" +#include +#include #include #include @@ -18,48 +20,58 @@ class QObject; class QWidget; class Config_WidgetAPI; 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: + /// 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 getModelWidgets() const { return myModelWidgets; } protected: - //Widgets - QWidget* createWidgetByType(const std::string& theType, QWidget* theParent = NULL); - QWidget* createContainer(const std::string& theType, QWidget* theParent = NULL); - QWidget* labelControl(QWidget* theParent); - QWidget* doubleSpinBoxControl(QWidget* theParent); - QWidget* pointSelectorControl(QWidget* theParent); - QWidget* featureSelectorControl(QWidget* theParent); - QWidget* featureOrAttributeSelectorControl(QWidget* theParent); - QWidget* doubleValueEditor(QWidget* theParent); - QWidget* shapeSelectorControl(QWidget* theParent); - QWidget* booleanControl(QWidget* theParent); - QWidget* point2dDistanceControl(QWidget* theParent); - QWidget* fileSelectorControl(QWidget* theParent); - QWidget* choiceControl(QWidget* theParent); - QWidget* lineEditControl(QWidget* theParent); - QWidget* multiSelectorControl(QWidget* theParent); - - - QString qs(const std::string& theStdString) const; - void processAttributes(); + /// 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); + + /// Convert STD string to QT string + /// \param theStdString is STD string + static QString qs(const std::string& theStdString); private: + /// API object for XML reading Config_WidgetAPI* myWidgetApi; + + /// Reference to workshop ModuleBase_IWorkshop* myWorkshop; + /// List of created model widgets QList myModelWidgets; + + /// Id of current parent std::string myParentId; };