X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_ResultPart.h;h=1f4ca4946f8d6ee6de67f13b002cf48658c351ea;hb=7dc85ea3929c3543703b2d8e689f8a66c0384272;hp=8397a9766969df1b7f1561410ff00dd7ee34717b;hpb=d57ad65dd41c26cd7c937cc68bc32a23bffd644f;p=modules%2Fshaper.git diff --git a/src/Model/Model_ResultPart.h b/src/Model/Model_ResultPart.h index 8397a9766..1f4ca4946 100644 --- a/src/Model/Model_ResultPart.h +++ b/src/Model/Model_ResultPart.h @@ -9,8 +9,9 @@ #include "Model.h" #include +#include -/**\class ModelAPI_ResultPart +/**\class Model_ResultPart * \ingroup DataModel * \brief The Part document, result of a creation of new part feature. * @@ -19,7 +20,10 @@ */ class Model_ResultPart : public ModelAPI_ResultPart { + TopoDS_Shape myShape; ///< shape of this part created from bodies (updated only of Part deactivation) public: + /// 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 @@ -28,6 +32,33 @@ class Model_ResultPart : public ModelAPI_ResultPart /// Sets this document as current and if it is not loaded yet, loads it MODEL_EXPORT virtual void activate(); + /// disable all feature of the part on disable of the part result + MODEL_EXPORT virtual bool setDisabled(std::shared_ptr theThis, + const bool theFlag); + + /// Result shape of part document is compound of bodies inside of this part + MODEL_EXPORT virtual std::shared_ptr shape(); + + /// Returns the name of the shape inside of the part + /// \param theShape selected shape in this document + /// \param theIndex is returned as one-based index if selection was required, "0" otherwise + /// \returns empty name is selection is not correct + MODEL_EXPORT virtual std::string nameInPart(const std::shared_ptr& theShape, + int& theIndex); + + /// 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); + /// 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); + + /// 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); + protected: /// makes a result on a temporary feature (an action) Model_ResultPart(); @@ -38,7 +69,7 @@ protected: /// Returns true if document is activated (loaded into the memory) virtual bool isActivated(); - friend class Model_Document; + friend class Model_Objects; }; #endif