X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_IWorkshop.h;h=229b6e2e3c55aac56022606073eac7c327deb6d1;hb=0cea3be102af7247b2fe2c8035a1bb38b7bf82ae;hp=b7f02f4a11740600f0ba31338599ddbac1fdcfd0;hpb=abab0a0689765a60fcec0d7861a3ef7893a685fa;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_IWorkshop.h b/src/ModuleBase/ModuleBase_IWorkshop.h index b7f02f4a1..229b6e2e3 100644 --- a/src/ModuleBase/ModuleBase_IWorkshop.h +++ b/src/ModuleBase/ModuleBase_IWorkshop.h @@ -9,6 +9,8 @@ #include "ModuleBase.h" #include "ModuleBase_Definitions.h" +#include +#include #include #include @@ -18,6 +20,7 @@ class ModuleBase_IModule; class ModuleBase_ISelection; class ModuleBase_IViewer; +class ModuleBase_IPropertyPanel; class ModuleBase_Operation; class ModuleBase_FilterFactory; @@ -31,9 +34,7 @@ Q_OBJECT public: /// Constructor /// \param theParent parent object - ModuleBase_IWorkshop(QObject* theParent) - : QObject(theParent) - {} + ModuleBase_IWorkshop(QObject* theParent); virtual ~ModuleBase_IWorkshop() {} @@ -54,6 +55,13 @@ Q_OBJECT //! Returns current viewer virtual ModuleBase_IViewer* viewer() const = 0; + //! Returns property panel + virtual ModuleBase_IPropertyPanel* propertyPanel() const = 0; + + /// A filter to process an attribute validators + /// \return a filter + Handle(ModuleBase_FilterValidated) validatorFilter(); + //! Returns the factory of selection filters : the only one instance per application ModuleBase_FilterFactory* selectionFilters() const; @@ -71,7 +79,7 @@ Q_OBJECT //! Select features clearing previous selection. //! If the list is empty then selection will be cleared - virtual void setSelected(const QObjectPtrList& theFeatures) = 0; + virtual void setSelected(const QList& theValues) = 0; signals: /// Signal selection chaged. @@ -80,6 +88,9 @@ signals: /// Signal which is emited after activation of property panel void propertyPanelActivated(); +protected: + /// A filter to process an attribute validators + Handle(ModuleBase_FilterValidated) myValidatorFilter; }; #endif