X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_IWorkshop.h;h=229b6e2e3c55aac56022606073eac7c327deb6d1;hb=0cea3be102af7247b2fe2c8035a1bb38b7bf82ae;hp=d4b9265ca1868233629abd8744451fc8eced7f5d;hpb=e30796dab1aa68c01201b2b89d4292d3fcbbc4d4;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_IWorkshop.h b/src/ModuleBase/ModuleBase_IWorkshop.h index d4b9265ca..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 @@ -6,46 +8,89 @@ #define ModuleBase_IWorkshop_H #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; /** + * \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 defined according to TopAbs_ShapeEnum + virtual void activateSubShapesSelection(const QIntList& theTypes) = 0; + + /// Deactivate sub-shapes selection (closes local context) + virtual void deactivateSubShapesSelection() = 0; + //! Returns instance of loaded module virtual ModuleBase_IModule* module() const = 0; //! 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; + //! 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 QList& theValues) = 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(); + +protected: + /// A filter to process an attribute validators + Handle(ModuleBase_FilterValidated) myValidatorFilter; }; #endif