X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_ResultPart.h;h=220e1b408f50e5a6eb7cac65884bb98a818d7b67;hb=a83e22046c5fb877969fa8879e42491d4054f198;hp=1f4ca4946f8d6ee6de67f13b002cf48658c351ea;hpb=c39f725bfe98395871c5853dacb89ab1a6ecc6f2;p=modules%2Fshaper.git diff --git a/src/Model/Model_ResultPart.h b/src/Model/Model_ResultPart.h index 1f4ca4946..220e1b408 100644 --- a/src/Model/Model_ResultPart.h +++ b/src/Model/Model_ResultPart.h @@ -10,6 +10,7 @@ #include "Model.h" #include #include +#include /**\class Model_ResultPart * \ingroup DataModel @@ -21,13 +22,24 @@ 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 + inline static const std::string& BASE_REF_ID() + { + static const std::string MY_BASE_REF("BaseReference"); + return MY_BASE_REF; + } /// Request for initialization of data model of the result: adding all attributes virtual void initAttributes(); /// Returns the part-document of this result MODEL_EXPORT virtual std::shared_ptr partDoc(); - /// Part has no stored feature: this method returns NULL - MODEL_EXPORT virtual std::shared_ptr owner(); + + /// Returns the original part result: for transfomration features results this is + /// the original Part feature result + MODEL_EXPORT virtual std::shared_ptr original(); /// Sets this document as current and if it is not loaded yet, loads it MODEL_EXPORT virtual void activate(); @@ -49,23 +61,25 @@ 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(); - MODEL_EXPORT virtual void setShape(std::shared_ptr theThis, - const std::shared_ptr& theTransformed); + /// Applies the additional transformation of the part + MODEL_EXPORT virtual void setTrsf(std::shared_ptr theThis, + const std::shared_ptr& theTransformation); /// Returns the parameters of color definition in the resources config manager 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(); - /// Sets the data manager of an object (document does), here also attributes are initialized - virtual void setData(std::shared_ptr theData); - /// Returns true if document is activated (loaded into the memory) virtual bool isActivated();