X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_IModule.h;h=90d31cd1400ccbddc887909f0295b98edfe95f25;hb=b22f8bc2d6f96b466583d21445d5c5c719f4c724;hp=8295af76172a7c2f6d3294b2463728ae3da1475a;hpb=b4fa4c082ef0d0e75ee8bf7f3f440b3f9c86e63c;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_IModule.h b/src/ModuleBase/ModuleBase_IModule.h old mode 100755 new mode 100644 index 8295af761..90d31cd14 --- a/src/ModuleBase/ModuleBase_IModule.h +++ b/src/ModuleBase/ModuleBase_IModule.h @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// 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 @@ -12,14 +12,11 @@ // // 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 // - // Copyright (C) 2014-20xx CEA/DEN, EDF R&D - #ifndef ModuleBase_IModule_H #define ModuleBase_IModule_H @@ -32,6 +29,8 @@ #include #include +#include + #include #include #include @@ -46,11 +45,13 @@ class QMouseEvent; class QKeyEvent; class QMenu; class Config_WidgetAPI; + class ModuleBase_ModelWidget; class ModuleBase_Operation; class ModuleBase_ViewerPrs; - +class ModuleBase_ITreeNode; class ModuleBase_IWorkshop; + class ModelAPI_Result; class Events_Message; @@ -77,12 +78,6 @@ class MODULEBASE_EXPORT ModuleBase_IModule : public QObject virtual ~ModuleBase_IModule() {} - /// Add default selection filters of the module to the current viewer - virtual void activateSelectionFilters() {} - - /// Remove default selection filters of the module from the current viewer - virtual void deactivateSelectionFilters() {} - /// Stores the current selection virtual void storeSelection() {} @@ -235,8 +230,24 @@ class MODULEBASE_EXPORT ModuleBase_IModule : public QObject virtual void activeSelectionModes(QIntList& theModes) {} /// Appends specific selection modes for the module to the list of types - /// \param theTypes a selection modes to be extended - virtual void customSubShapesSelectionModes(QIntList& theTypes) {} + /// \param theModesType combination of available selection filters + /// \param theModes a selection modes to be extended + virtual void moduleSelectionModes(int theModesType, QIntList& theModes) = 0; + + /// Appends into container of filters module filters corresponded to the modes type + /// \param theFilterTypes container of available selection filters + /// \param theSelectionFilters [out] container to be extend by elements + virtual void moduleSelectionFilters(const QIntList& theFilterTypes, + SelectMgr_ListOfFilter& theSelectionFilters) = 0; + + /// Returns types of registered module selection filters + /// \param theSelectionFilters [out] container of type value + virtual QIntList selectionFilters() { return QIntList(); } + + /// Returns selection filter + /// \param theType selection filter type + /// \param theFilter instance of filter + virtual Handle(SelectMgr_Filter) selectionFilter(const int theType) = 0; /// Return true if the custom presentation is activated /// \param theFlag a flag of level of customization, which means that only part of sub-elements @@ -309,9 +320,6 @@ class MODULEBASE_EXPORT ModuleBase_IModule : public QObject /// \param theStdActions - a map of standard actions virtual void updateViewerMenu(const QMap& theStdActions) {} - /// Updates the current operation state after undo/redo actions calling - virtual void updateOperationByUndoRedo() {} - /// Returns true if the action should be always enabled /// \param theActionId an action index: Accept or Accept All /// \return boolean value @@ -368,10 +376,10 @@ class MODULEBASE_EXPORT ModuleBase_IModule : public QObject void getXMLRepresentation(const std::string& theFeatureId, std::string& theXmlCfg, std::string& theDescription); -signals: - /// Signal which is emitted when operation is launched - void operationLaunched(); + /// Returns root tree node which represents a data model + virtual ModuleBase_ITreeNode* rootNode() const = 0; +signals: /// Segnal emitted when an operation is resumed /// \param theOp a resumed operation void resumed(ModuleBase_Operation* theOp);