X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_ResultPart.h;h=fabaacab51ce19723b9c62fe02111dde046bc17b;hb=176403004ff97696f3c0b5f8bdf48692177fb34a;hp=b4a147bc97c11a05fd9ca960eaa75a3b7af4a8ee;hpb=4c2fb25615fc2e96957aeaee177251c40a434f4e;p=modules%2Fshaper.git diff --git a/src/Model/Model_ResultPart.h b/src/Model/Model_ResultPart.h index b4a147bc9..fabaacab5 100644 --- a/src/Model/Model_ResultPart.h +++ b/src/Model/Model_ResultPart.h @@ -21,11 +21,14 @@ */ 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 + /// shape of this part created from bodies (updated only of Part deactivation) + TopoDS_Shape myShape; + /// if it is just copy of original shape, keep just transformation + std::shared_ptr myTrsf; public: - /// the reference to the base result document, may be null if this is the root, others make sequence of references + /// the reference to the base result document, may be null if this is the root, + /// others make sequence of references inline static const std::string& BASE_REF_ID() { static const std::string MY_BASE_REF("BaseReference"); @@ -60,7 +63,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 @@ -71,10 +75,16 @@ 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(); + /// returns sum of transformations of the whole sequence of transformation-parts + gp_Trsf sumTrsf(); + /// Returns true if document is activated (loaded into the memory) virtual bool isActivated();