X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_IWorkshop.h;h=ec8d04906ea780fab13d6a487f92f3cff3784e9a;hb=d0e479afb535cd9d6542d53302428a5c8e99485f;hp=e755062f6b4cc51e6a2d0690b919a35531824c99;hpb=b0782eb7d6c01174bd34cccd871078eb94259b5a;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_IWorkshop.h b/src/ModuleBase/ModuleBase_IWorkshop.h index e755062f6..ec8d04906 100644 --- a/src/ModuleBase/ModuleBase_IWorkshop.h +++ b/src/ModuleBase/ModuleBase_IWorkshop.h @@ -9,20 +9,26 @@ #include "ModuleBase.h" #include "ModuleBase_Definitions.h" +#include #include #include +#include #include class ModuleBase_IModule; class ModuleBase_ISelection; class ModuleBase_IViewer; +class ModuleBase_IPropertyPanel; class ModuleBase_Operation; class ModuleBase_FilterFactory; +class ModuleBase_ViewerPrs; +class QMainWindow; /** - * Class which provides access to Workshop object serveces + * \ingroup GUI + * Class which provides access to Workshop object services */ class MODULEBASE_EXPORT ModuleBase_IWorkshop : public QObject { @@ -30,9 +36,7 @@ Q_OBJECT public: /// Constructor /// \param theParent parent object - ModuleBase_IWorkshop(QObject* theParent) - : QObject(theParent) - {} + ModuleBase_IWorkshop(QObject* theParent); virtual ~ModuleBase_IWorkshop() {} @@ -44,6 +48,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 +60,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; @@ -62,23 +76,58 @@ 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 theOperation a stopped operation + //! \return boolean result + virtual bool canStopOperation(ModuleBase_Operation* theOperation) = 0; + + //! Aborts the operation. + //! \param theOperation an aborted operation + virtual void abortOperation(ModuleBase_Operation* theOperation) = 0; + + //! Returns AIS object by data object + //! \param theObject a data object virtual AISObjectPtr findPresentation(const ObjectPtr& theObject) const = 0; //! Returns data object by AIS + //! \param theAIS a presentation virtual ObjectPtr findPresentedObject(const AISObjectPtr& theAIS) const = 0; //! Select features clearing previous selection. //! If the list is empty then selection will be cleared - virtual void setSelected(const QObjectPtrList& theFeatures) = 0; + //! \param theValues a list of presentations + virtual void setSelected(const QList>& theValues) = 0; + + //! Shows the message in the status bar + //! \param theMessage a message + virtual void setStatusBarMessage(const QString& theMessage) = 0; + + /// Update of commands status + virtual void updateCommandStatus() = 0; + + /// Returns feature info according to given feature ID + /// \param theId a feature Id + virtual std::shared_ptr featureInfo(const QString& theId) const = 0; + + /// Returns main window of the application + virtual QMainWindow* desktop() const = 0; + signals: - /// Signal selection chaged. + /// Signal selection changed. void selectionChanged(); /// Signal which is emited after activation of property panel void propertyPanelActivated(); +protected: + /// A filter to process an attribute validators + Handle(ModuleBase_FilterValidated) myValidatorFilter; }; #endif