1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
3 // File: ModelAPI_ResultPart.h
4 // Created: 07 Jul 2014
5 // Author: Mikhail PONIKAROV
7 #ifndef ModelAPI_ResultPart_H_
8 #define ModelAPI_ResultPart_H_
10 #include "ModelAPI_Result.h"
15 /**\class ModelAPI_ResultPart
17 * \brief The Part document, result of a creation of new part feature.
19 * This result leaves without feature: no parametricity for this element,
20 * only add/remove, undo/redo.
22 class ModelAPI_ResultPart : public ModelAPI_Result
25 /// Returns the group identifier of this result
26 MODELAPI_EXPORT virtual std::string groupName();
28 /// Returns the group identifier of this result
29 inline static std::string group()
31 static std::string MY_GROUP = "Parts";
35 /// part document reference attribute
36 inline static const std::string& DOC_REF()
38 static const std::string MY_DOC_REF("PartDocument");
42 /// default color for a result body
43 inline static const std::string& DEFAULT_COLOR()
45 static const std::string RESULT_BODY_COLOR("96,157,255");
46 return RESULT_BODY_COLOR;
49 /// Returns the part-document of this result
50 virtual std::shared_ptr<ModelAPI_Document> partDoc() = 0;
52 /// Returns the original part result: for transfomration features results this is
53 /// the original Part feature result
54 virtual std::shared_ptr<ModelAPI_ResultPart> original() = 0;
56 /// Sets this document as current and if it is not loaded yet, loads it
57 virtual void activate() = 0;
59 /// Returns true if document is activated (loaded into the memory)
60 virtual bool isActivated() = 0;
62 /// Returns the name of the shape inside of the part
63 virtual std::string nameInPart(const std::shared_ptr<GeomAPI_Shape>& theShape,
65 /// Updates the selection inside of the part by the selection index
66 virtual bool updateInPart(const int theIndex) = 0;
68 /// Applies the additional transformation of the part
69 virtual void setTrsf(std::shared_ptr<ModelAPI_Result> theThis,
70 const std::shared_ptr<GeomAPI_Trsf>& theTransformation) = 0;
72 /// Returns the shape by the name in the part
73 virtual std::shared_ptr<GeomAPI_Shape> shapeInPart(
74 const std::string& theName, const std::string& theType, int& theIndex) = 0;
76 /// Returns the shape selected in the selection index
77 virtual std::shared_ptr<GeomAPI_Shape> selectionValue(const int theIndex) = 0;
79 /// Updates the shape-result of the part (called on Part feature execution)
80 virtual void updateShape() = 0;
83 //! Pointer on feature object
84 typedef std::shared_ptr<ModelAPI_ResultPart> ResultPartPtr;