X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_IWorkshop.h;h=229b6e2e3c55aac56022606073eac7c327deb6d1;hb=0cea3be102af7247b2fe2c8035a1bb38b7bf82ae;hp=94c1800d11d3a29124a16402c96ce04113bd666d;hpb=976244bad37e04fcebaf8866d7d7a02efd2b7d35;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_IWorkshop.h b/src/ModuleBase/ModuleBase_IWorkshop.h index 94c1800d1..229b6e2e3 100644 --- a/src/ModuleBase/ModuleBase_IWorkshop.h +++ b/src/ModuleBase/ModuleBase_IWorkshop.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: ModuleBase_IWorkshop.h // Created: 2 June 2014 // Author: Vitaly Smetannikov @@ -7,6 +9,8 @@ #include "ModuleBase.h" #include "ModuleBase_Definitions.h" +#include +#include #include #include @@ -16,26 +20,30 @@ class ModuleBase_IModule; class ModuleBase_ISelection; class ModuleBase_IViewer; +class ModuleBase_IPropertyPanel; class ModuleBase_Operation; +class ModuleBase_FilterFactory; /** + * \ingroup GUI * Class which provides access to Workshop object serveces */ class MODULEBASE_EXPORT ModuleBase_IWorkshop : public QObject { Q_OBJECT public: - ModuleBase_IWorkshop(QObject* theParent) - : QObject(theParent) - {} + /// Constructor + /// \param theParent parent object + ModuleBase_IWorkshop(QObject* theParent); virtual ~ModuleBase_IWorkshop() {} + /// Return current selection instance virtual ModuleBase_ISelection* selection() const = 0; /// Activate sub-shapes selection (opens local context) - /// Types has to be dined according to TopAbs_ShapeEnum + /// Types has to be defined according to TopAbs_ShapeEnum virtual void activateSubShapesSelection(const QIntList& theTypes) = 0; /// Deactivate sub-shapes selection (closes local context) @@ -47,6 +55,16 @@ 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; + //! Returns currently active operation virtual ModuleBase_Operation* currentOperation() const = 0; @@ -61,30 +79,18 @@ 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. void selectionChanged(); - /// Signal about an operation is started. It is emitted after the start() of operation is done. - void operationStarted(ModuleBase_Operation* theOperation); - - /// Signal about an operation is stopped. It is emitted after the stop() of operation is done. - /// \param theOperation a stopped operation - void operationStopped(ModuleBase_Operation* theOperation); - - /// Signal about an operation is resumed. It is emitted after the resume() of operation is done. - void operationResumed(ModuleBase_Operation* theOperation); - - /// Emitted when current operation is comitted - void operationComitted(ModuleBase_Operation* theOperation); - - /// Emitted when current operation is aborted - void operationAborted(ModuleBase_Operation* theOperation); - /// Signal which is emited after activation of property panel void propertyPanelActivated(); +protected: + /// A filter to process an attribute validators + Handle(ModuleBase_FilterValidated) myValidatorFilter; }; #endif