X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_ResultBody.h;h=4991cf27986c61ab24453c3873a87628baad583d;hb=fa107dfb3ba274eaeb191c5ec4f6c96517b55a02;hp=c2eff7efcfa22b68d049d9b235045d75860b7a4f;hpb=8dc74f82810d5f597b78633b457efb0ef4f89f9f;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_ResultBody.h b/src/ModelAPI/ModelAPI_ResultBody.h index c2eff7efc..4991cf279 100644 --- a/src/ModelAPI/ModelAPI_ResultBody.h +++ b/src/ModelAPI/ModelAPI_ResultBody.h @@ -7,20 +7,22 @@ #include "ModelAPI_Result.h" #include - +#include +#include +#include #include /**\class ModelAPI_ResultBody - * \ingroup DataModel - * \brief The body (shape) result of a feature. - * - * Provides a shape that may be displayed in the viewer. - * May provide really huge results, so, working with this kind - * of result must be optimized. - */ +* \ingroup DataModel +* \brief The body (shape) result of a feature. +* +* Provides a shape that may be displayed in the viewer. +* May provide really huge results, so, working with this kind +* of result must be optimized. +*/ class ModelAPI_ResultBody : public ModelAPI_Result { - public: +public: /// Returns the group identifier of this result virtual std::string groupName() { @@ -36,20 +38,59 @@ class ModelAPI_ResultBody : public ModelAPI_Result /// Stores the shape (called by the execution method). virtual void store(const boost::shared_ptr& theShape) = 0; + + /// Stores the generated shape (called by the execution method). + virtual void storeGenerated(const boost::shared_ptr& theFromShape, + const boost::shared_ptr& theToShape) = 0; + + /// Stores the modified shape (called by the execution method). + virtual void storeModified(const boost::shared_ptr& theOldShape, + const boost::shared_ptr& theNewShape) = 0; + /// Returns the shape-result produced by this feature virtual boost::shared_ptr shape() = 0; - /// To virtually destroy the fields of successors - virtual ~ModelAPI_ResultBody() - { - } + /// Records the subshape newShape which was generated during a topological construction. + /// As an example, consider the case of a face generated in construction of a box. + virtual void generated( + const boost::shared_ptr& theNewShape, const int theTag = 1) = 0; - protected: - /// Use plugin manager for features creation: this method is - /// defined here only for SWIG-wrapping - ModelAPI_ResultBody() - { - } + /// Records the shape newShape which was generated from the shape oldShape during a topological + /// construction. As an example, consider the case of a face generated from an edge in + /// construction of a prism. + virtual void generated(const boost::shared_ptr& theOldShape, + const boost::shared_ptr& theNewShape, const int theTag = 1) = 0; + + /// Records the shape newShape which is a modification of the shape oldShape. + /// As an example, consider the case of a face split or merged in a Boolean operation. + virtual void modified(const boost::shared_ptr& theOldShape, + const boost::shared_ptr& theNewShape, const int theTag = 1) = 0; + + /// Records the shape oldShape which was deleted from the current label. + /// As an example, consider the case of a face removed by a Boolean operation. + virtual void deleted( + const boost::shared_ptr& theOldShape, const int theTag = 1) = 0; + + /// load deleted shapes + virtual void loadDeletedShapes (GeomAlgoAPI_MakeShape* theMS, + boost::shared_ptr theShapeIn, + const int theKindOfShape, + const int theTag) = 0; + /// load and orient modified shapes + virtual void loadAndOrientModifiedShapes ( + GeomAlgoAPI_MakeShape* theMS, + boost::shared_ptr theShapeIn, + const int theKindOfShape, + const int theTag, + GeomAPI_DataMapOfShapeShape& theSubShapes) = 0; + /// load and orient generated shapes + virtual void loadAndOrientGeneratedShapes ( + GeomAlgoAPI_MakeShape* theMS, + boost::shared_ptr theShapeIn, + const int theKindOfShape, + const int theTag, + GeomAPI_DataMapOfShapeShape& theSubShapes) = 0; +protected: }; //! Pointer on feature object