X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=inline;f=src%2FModel%2FModel_AttributeSelection.h;h=d1a426693e524ebf828f369111368f3ec6b45926;hb=ca5c4cc6ea4aa54000fe0e8729f9c14b8a59abfd;hp=665758341c1c8aa1ac158eabd1369b78d660314d;hpb=04969ec755978eceaa32ef47d6621905d072bf73;p=modules%2Fshaper.git diff --git a/src/Model/Model_AttributeSelection.h b/src/Model/Model_AttributeSelection.h index 665758341..d1a426693 100644 --- a/src/Model/Model_AttributeSelection.h +++ b/src/Model/Model_AttributeSelection.h @@ -54,10 +54,14 @@ public: /// Returns an Id of the selection /// NOTE: This method has been added for temporary export of groups towards old GEOM - /// It should then be removed when a direct use of objects from NewGeom + /// It should then be removed when a direct use of objects from SHAPER /// will be possible from SMESH module of SALOME. MODEL_EXPORT virtual int Id(); + /// Defines the sub-shape by Id + /// NOTE: This method is opposite to Id() method. + MODEL_EXPORT virtual void setId(int theID); + /// Selects (i.e. creates Naming data structure) of sub-shape specifed by textual name MODEL_EXPORT virtual void selectSubShape(const std::string& theType, const std::string& theSubShapeName); @@ -71,7 +75,8 @@ public: protected: /// Objects are created for features automatically MODEL_EXPORT Model_AttributeSelection(TDF_Label& theLabel); - /// Performs the selection for the body result (TNaming Selection) + + /// Performs the selection for the body result (TNaming Selection) /// Performs the selection for the body result (TNaming selection) virtual void selectBody( @@ -100,6 +105,9 @@ protected: /// Sets the ID of the attribute in Data (called from Data): here it is used for myRef ID setting MODEL_EXPORT virtual void setID(const std::string theID); + /// Returns the name by context. Adds the part name if the context is located in other document + std::string contextName(const ResultPtr& theContext) const; + friend class Model_Data; friend class Model_AttributeSelectionList; };