X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_AttributeSelectionList.h;h=08927e6d7ad855744724cd64ce0ea2031b21d8df;hb=50a8df0c6a66da8067b16155e5ae39f8f26a7ebc;hp=7bdd59a6bef1723ed77e78b7bbbc7deb7268826a;hpb=d4b0a5cb916f4eccf4a0bce02e43a54c7a67cb93;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_AttributeSelectionList.h b/src/ModelAPI/ModelAPI_AttributeSelectionList.h index 7bdd59a6b..08927e6d7 100644 --- a/src/ModelAPI/ModelAPI_AttributeSelectionList.h +++ b/src/ModelAPI/ModelAPI_AttributeSelectionList.h @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// Copyright (C) 2014-2020 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,10 +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 ModelAPI_AttributeSelectionList_H_ @@ -23,6 +22,7 @@ #include "ModelAPI_AttributeSelection.h" #include +#include class GeomAPI_Pnt; class GeomAPI_Shape; @@ -35,7 +35,14 @@ class GeomAPI_Shape; class ModelAPI_AttributeSelectionList : public ModelAPI_Attribute { - public: + /// Flag that indicates that the whole result selection is allowed while the selection type + /// may be sub-objects, so, it is the same as all sub-shapes are selected (#3005). It is "false" + /// by default. + bool myIsWholeResultAllowed; + /// Flag that indicates that update in history must check the copy-features + /// and make a copy of selection for them. + bool myMakeCopy; +public: /// Adds the new reference to the end of the list /// \param theContext object where the sub-shape was selected /// \param theSubShape selected sub-shape (if null, the whole context is selected) @@ -57,6 +64,9 @@ class ModelAPI_AttributeSelectionList : public ModelAPI_Attribute virtual void append(const std::string& theType, const std::string& theContextName, const int theIndex) = 0; + /// Copy the selection list to the destination attribute + virtual void copyTo(std::shared_ptr theTarget) const = 0; + /// Reset temporary stored values virtual void removeTemporaryValues() = 0; @@ -115,9 +125,37 @@ class ModelAPI_AttributeSelectionList : public ModelAPI_Attribute /// To virtually destroy the fields of successors MODELAPI_EXPORT virtual ~ModelAPI_AttributeSelectionList(); - protected: - /// Objects are created for features automatically - MODELAPI_EXPORT ModelAPI_AttributeSelectionList(); + /// Returns a selection filters feature if it is defined for this selection list + MODELAPI_EXPORT virtual FiltersFeaturePtr filters() const = 0; + + /// Sets a selection filters feature if it is defined for this selection list + MODELAPI_EXPORT virtual void setFilters(FiltersFeaturePtr theFeature) = 0; + + /// Returns true if the whole result selection corresponds to selection of all sub-shapes. + MODELAPI_EXPORT virtual const bool isWholeResultAllowed() const { + return myIsWholeResultAllowed; + } + + /// Sets whether the whole result selection corresponds to selection of all sub-shapes. + MODELAPI_EXPORT virtual void setWholeResultAllowed(const bool theFlag) { + myIsWholeResultAllowed = theFlag; + } + + /// Returns true if a copy features must be used in update in history. + MODELAPI_EXPORT virtual const bool isMakeCopy() const { + return myMakeCopy; + } + + /// Sets true if a copy features must be used in update in history. + MODELAPI_EXPORT virtual void setMakeCopy(const bool theFlag) { + myMakeCopy = theFlag; + } + +protected: + /// Default constructor + MODELAPI_EXPORT ModelAPI_AttributeSelectionList() : ModelAPI_Attribute() + {myIsWholeResultAllowed = false; myMakeCopy = false;} + }; //! Pointer on double attribute