X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_IWorkshop.h;h=b7f02f4a11740600f0ba31338599ddbac1fdcfd0;hb=a2982d2108f929cf9e7f996cfd590c4ce59dc21c;hp=700f2baecbaf66e5006740ec6f939b3f8684896f;hpb=c48f5ad61510889aa8ba86c3b2710a072fb1cc58;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_IWorkshop.h b/src/ModuleBase/ModuleBase_IWorkshop.h index 700f2baec..b7f02f4a1 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 @@ -9,6 +11,7 @@ #include "ModuleBase_Definitions.h" #include +#include #include @@ -16,14 +19,18 @@ class ModuleBase_IModule; class ModuleBase_ISelection; class ModuleBase_IViewer; 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: + /// Constructor + /// \param theParent parent object ModuleBase_IWorkshop(QObject* theParent) : QObject(theParent) {} @@ -31,10 +38,11 @@ Q_OBJECT 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) @@ -46,14 +54,32 @@ Q_OBJECT //! Returns current viewer virtual ModuleBase_IViewer* viewer() const = 0; + //! 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; + //! Returns true if the operation with id theId can be started + virtual bool canStartOperation(QString theId) = 0; + + //! Returns AIS opbject by data object + virtual AISObjectPtr findPresentation(const ObjectPtr& theObject) const = 0; + + //! Returns data object by AIS + 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; + signals: + /// Signal selection chaged. void selectionChanged(); - void operationStarted(ModuleBase_Operation*); - void operationStopped(ModuleBase_Operation*); + /// Signal which is emited after activation of property panel + void propertyPanelActivated(); + }; #endif