X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_IWorkshop.h;h=f9ba91551daa9c56523cab08e07d95819c2f171b;hb=fc72d43b677baa05ae7fd317346fd8b723b799ed;hp=74d222b66e0356c4aa0292d35f58994fff768722;hpb=2532fb2df83ee1ddd9ff3e8b381d3788eaa15b69;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_IWorkshop.h b/src/ModuleBase/ModuleBase_IWorkshop.h index 74d222b66..f9ba91551 100644 --- a/src/ModuleBase/ModuleBase_IWorkshop.h +++ b/src/ModuleBase/ModuleBase_IWorkshop.h @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// Copyright (C) 2014-2023 CEA/DEN, EDF R&D // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -12,9 +12,9 @@ // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // #ifndef ModuleBase_IWorkshop_H @@ -36,6 +36,7 @@ class ModuleBase_IViewer; class ModuleBase_IPropertyPanel; class ModuleBase_IErrorMgr; class ModuleBase_Operation; +class ModuleBase_ISelectionActivate; class ModuleBase_ViewerPrs; class QMainWindow; @@ -57,16 +58,6 @@ Q_OBJECT /// 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; - - /// 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; - //! Returns instance of loaded module virtual ModuleBase_IModule* module() const = 0; @@ -83,6 +74,9 @@ Q_OBJECT /// \return a filter Handle(ModuleBase_FilterValidated) validatorFilter(); + /// A selection activate in 3D View handler + virtual ModuleBase_ISelectionActivate* selectionActivate() const = 0; + //! Returns currently active operation virtual ModuleBase_Operation* currentOperation() const = 0; @@ -117,6 +111,13 @@ Q_OBJECT //! \param theAIS a presentation virtual ObjectPtr findPresentedObject(const AISObjectPtr& theAIS) const = 0; + //! Returns true if the object is displayed + //! \param theObject a data object + virtual bool isVisible(const ObjectPtr& theObject) const = 0; + + //! Returns list of currently displayed objects + virtual QObjectPtrList displayedObjects() const = 0; + //! Select features clearing previous selection. //! If the list is empty then selection will be cleared //! \param theValues a list of presentations @@ -136,6 +137,32 @@ Q_OBJECT /// Returns main window of the application virtual QMainWindow* desktop() const = 0; + /// Returns true if SHIFT is pressed + /// \return boolean value + virtual bool hasSHIFTPressed() const = 0; + + virtual void deactivateCurrentSelector() = 0; + + //! Temporary enable or disable viewer update. Returns previous state of updating + //! \param isEnabled new state of the viewer update + virtual bool enableUpdateViewer(bool isEnabled) = 0; + + //! The methods applys current defined selection modes to given AIS presentation. + //! The AIS presentation has to be already displayed. After activation viewer has to be updated + //! \param theAIS the object which has to be activated + virtual void applyCurrentSelectionModes(const AISObjectPtr& theAIS) = 0; + + //! Undo last command + virtual void undo() = 0; + + //! Set enabled state of cancel button in property panel + virtual void setCancelEnabled(bool toEnable) = 0; + + //! Returns current state of cancel button + virtual bool isCancelEnabled() const = 0; + + //! Show help of a current operation + virtual void showHelpPage(const QString& thePage) const = 0; signals: /// Signal selection changed.