X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_IWorkshop.h;h=5877823bd074ab06315ddfe0f57bef9cfef17d38;hb=5fea3f89cb0f16848b1217193c13fda0a596c754;hp=97e13ffbbd59674b111db54177da1fd9e5781496;hpb=410f0c3d028be602c474a6ee64b8d3a7a32afb25;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_IWorkshop.h b/src/ModuleBase/ModuleBase_IWorkshop.h index 97e13ffbb..5877823bd 100644 --- a/src/ModuleBase/ModuleBase_IWorkshop.h +++ b/src/ModuleBase/ModuleBase_IWorkshop.h @@ -1,8 +1,21 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: ModuleBase_IWorkshop.h -// Created: 2 June 2014 -// Author: Vitaly Smetannikov +// Copyright (C) 2014-2019 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 +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// 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 +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #ifndef ModuleBase_IWorkshop_H #define ModuleBase_IWorkshop_H @@ -23,6 +36,7 @@ class ModuleBase_IViewer; class ModuleBase_IPropertyPanel; class ModuleBase_IErrorMgr; class ModuleBase_Operation; +class ModuleBase_ISelectionActivate; class ModuleBase_ViewerPrs; class QMainWindow; @@ -44,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; @@ -70,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; @@ -104,6 +111,10 @@ 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; + //! Select features clearing previous selection. //! If the list is empty then selection will be cleared //! \param theValues a list of presentations @@ -123,6 +134,9 @@ 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; signals: /// Signal selection changed.