X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_IWorkshop.h;h=67fed3b81fcc130ded827a86e23cb6129f59fe20;hb=38012f90328622b1b395fc6ff6c3b790f290c0be;hp=3646e630c95b18ae5e879150aef6a28f1c18ab98;hpb=571cc113b54efb9fb058a053cd9ac489549a0729;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_IWorkshop.h b/src/ModuleBase/ModuleBase_IWorkshop.h index 3646e630c..67fed3b81 100644 --- a/src/ModuleBase/ModuleBase_IWorkshop.h +++ b/src/ModuleBase/ModuleBase_IWorkshop.h @@ -10,6 +10,7 @@ #include "ModuleBase.h" #include "ModuleBase_Definitions.h" #include +#include #include #include @@ -19,12 +20,13 @@ 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 which provides access to Workshop object services */ class MODULEBASE_EXPORT ModuleBase_IWorkshop : public QObject { @@ -44,6 +46,9 @@ Q_OBJECT /// Types has to be defined according to TopAbs_ShapeEnum virtual void activateSubShapesSelection(const QIntList& theTypes) = 0; + /// Activate objects in the module selection modes(opens local context) + virtual void activateModuleSelectionModes() = 0; + /// Deactivate sub-shapes selection (closes local context) virtual void deactivateSubShapesSelection() = 0; @@ -53,6 +58,9 @@ 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(); @@ -66,7 +74,21 @@ Q_OBJECT //! Returns true if the operation with id theId can be started virtual bool canStartOperation(QString theId) = 0; - //! Returns AIS opbject by data object + //! Returns started operation by the operation identifier + //! \param theId an operation id + //! \return an operation instance or NULL + virtual ModuleBase_Operation* findStartedOperation(const QString& theId) = 0; + + //! Returns true if the operation with id theId can be stopped + //! \param theId a stopped operation + //! \return boolean result + virtual bool canStopOperation(ModuleBase_Operation* theOperation) = 0; + + //! Aborts the operation. + //! \param theId an aborted operation + virtual void abortOperation(ModuleBase_Operation* theOperation) = 0; + + //! Returns AIS object by data object virtual AISObjectPtr findPresentation(const ObjectPtr& theObject) const = 0; //! Returns data object by AIS @@ -74,10 +96,10 @@ 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. + /// Signal selection changed. void selectionChanged(); /// Signal which is emited after activation of property panel