X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_ResultPart.h;h=f53ac5e852c6e48444789f0b1812030357206203;hb=283433d9c2f39fbd332d6eba691b6a0cd875e29d;hp=26c19fc0cc708099e9aed96cc03da3e5ab1680b0;hpb=3985b767e74385e51d1b503d2c97d3bb1e3f6faa;p=modules%2Fshaper.git diff --git a/src/Model/Model_ResultPart.h b/src/Model/Model_ResultPart.h index 26c19fc0c..f53ac5e85 100644 --- a/src/Model/Model_ResultPart.h +++ b/src/Model/Model_ResultPart.h @@ -1,14 +1,18 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: ModelAPI_ResultPart.hxx // Created: 07 Jul 2014 // Author: Mikhail PONIKAROV -#ifndef Model_ResultPart_HeaderFile -#define Model_ResultPart_HeaderFile +#ifndef Model_ResultPart_H_ +#define Model_ResultPart_H_ #include "Model.h" #include +#include +#include -/**\class ModelAPI_ResultPart +/**\class Model_ResultPart * \ingroup DataModel * \brief The Part document, result of a creation of new part feature. * @@ -17,17 +21,65 @@ */ class Model_ResultPart : public ModelAPI_ResultPart { -public: + 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 boost::shared_ptr partDoc(); - /// Part has no stored feature: this method returns NULL - MODEL_EXPORT virtual boost::shared_ptr owner(); + MODEL_EXPORT virtual std::shared_ptr partDoc(); + + /// 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(); + + /// 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(); + /// 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); protected: /// makes a result on a temporary feature (an action) Model_ResultPart(); - friend class Model_Document; + /// Returns true if document is activated (loaded into the memory) + virtual bool isActivated(); + + friend class Model_Objects; }; #endif