Salome HOME
Object Browser tree needed method implementation
[modules/shaper.git] / src / ModelAPI / ModelAPI_Tools.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        ModelAPI_Tools.h
4 // Created:     06 Aug 2014
5 // Author:      Vitaly Smetannikov
6
7 #ifndef ModelAPI_Tools_HeaderFile
8 #define ModelAPI_Tools_HeaderFile
9
10 #include "ModelAPI.h"
11
12 #include <ModelAPI_CompositeFeature.h>
13 #include <ModelAPI_Document.h>
14 #include <ModelAPI_Feature.h>
15 #include <ModelAPI_Result.h>
16 #include <ModelAPI_ResultParameter.h>
17 #include <ModelAPI_ResultCompSolid.h>
18
19 #include <GeomAPI_Shape.h>
20
21 #include <vector>
22
23 namespace ModelAPI_Tools {
24 /// Returns shape from the given Result object
25 MODELAPI_EXPORT std::shared_ptr<GeomAPI_Shape> shape(const ResultPtr& theResult);
26
27 /*!
28  * Searches for variable with name \param theName in \param theDocument. 
29  * If found, set it value in the \param outValue and returns true.
30  */
31 MODELAPI_EXPORT bool findVariable(const DocumentPtr& theDocument, 
32                                   const std::string& theName, double& outValue, ResultParameterPtr& theParam);
33
34 /*!
35  * Searches for variable with name \param theName in the active document (Part), when
36  * in the root document (PartSet). If found, set it value in the \param outValue
37  * and returns true. If \param theDocument is empty active document is used.
38  */
39 MODELAPI_EXPORT bool findVariable(const std::string& theName, double& outValue, ResultParameterPtr& theParam,
40                                   const DocumentPtr& theDocument = DocumentPtr());
41
42 /*!
43  * Returns the values of the next random color. The values are in range [0, 255]
44  * \param theValues a container of component of RGB value: red, green, blue
45  */
46 MODELAPI_EXPORT void findRandomColor(std::vector<int>& theValues);
47
48 /*!
49  * Searches for Part result that contains the reference to the given document.
50  * \param theMain document that contains the searched feature
51  * \param theSub document that is searched, the resulting feature references to it
52  * \returns null if not found
53  */
54 MODELAPI_EXPORT ResultPtr findPartResult(const DocumentPtr& theMain, const DocumentPtr& theSub);
55
56 /*!
57  * Returns the composite feature - parent of this feature.
58  * \param theFeature the sub-element of composite
59  * \returns null if it is not sub-element of composite
60  */
61 MODELAPI_EXPORT CompositeFeaturePtr compositeOwner(const FeaturePtr& theFeature);
62
63 /*!
64  * Returns the compsolid result - parent of this result.
65  * \param theSub the sub-element of comp-solid
66  * \returns null if it is not sub-element of composite
67  */
68 MODELAPI_EXPORT ResultCompSolidPtr compSolidOwner(const ResultPtr& theSub);
69
70 }
71
72 #endif