X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_ResultPart.h;h=49adb855ae316261456e5d9460e83dc17b9ca4cb;hb=ca5c4cc6ea4aa54000fe0e8729f9c14b8a59abfd;hp=f53ac5e852c6e48444789f0b1812030357206203;hpb=59d1fb7d2e01dbe3fef0247ea45afaa5ce92b029;p=modules%2Fshaper.git diff --git a/src/Model/Model_ResultPart.h b/src/Model/Model_ResultPart.h index f53ac5e85..49adb855a 100644 --- a/src/Model/Model_ResultPart.h +++ b/src/Model/Model_ResultPart.h @@ -23,7 +23,6 @@ class Model_ResultPart : public ModelAPI_ResultPart { TopoDS_Shape myShape; ///< shape of this part created from bodies (updated only of Part deactivation) std::shared_ptr myTrsf; ///< if it is just copy of original shape, keep just transformation - bool myIsInLoad; ///< true if document of this part is in the loading process, so, it may be already received public: /// the reference to the base result document, may be null if this is the root, others make sequence of references @@ -61,7 +60,8 @@ class Model_ResultPart : public ModelAPI_ResultPart /// Updates the selection inside of the part by the selection index MODEL_EXPORT virtual bool updateInPart(const int theIndex); /// Returns the shape by the name in the part - MODEL_EXPORT virtual std::shared_ptr shapeInPart(const std::string& theName); + MODEL_EXPORT virtual std::shared_ptr shapeInPart( + const std::string& theName, const std::string& theType, int& theIndex); /// Updates the shape-result of the part (called on Part feature execution) MODEL_EXPORT virtual void updateShape(); /// Applies the additional transformation of the part @@ -72,6 +72,9 @@ class Model_ResultPart : public ModelAPI_ResultPart MODEL_EXPORT virtual void colorConfigInfo(std::string& theSection, std::string& theName, std::string& theDefault); + /// Returns the shape selected in the selection index + MODEL_EXPORT virtual std::shared_ptr selectionValue(const int theIndex); + protected: /// makes a result on a temporary feature (an action) Model_ResultPart();