1 // Copyright (C) 2014-2017 CEA/DEN, EDF R&D
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
21 #ifndef SRC_MODELHIGHAPI_MODELHIGHAPI_SELECTION_H_
22 #define SRC_MODELHIGHAPI_MODELHIGHAPI_SELECTION_H_
24 //--------------------------------------------------------------------------------------
25 #include "ModelHighAPI.h"
30 //--------------------------------------------------------------------------------------
32 class ModelAPI_AttributeSelection;
33 class ModelAPI_AttributeSelectionList;
34 class ModelAPI_Result;
35 //--------------------------------------------------------------------------------------
36 typedef std::pair<std::shared_ptr<ModelAPI_Result>, std::shared_ptr<GeomAPI_Shape> >
38 typedef std::pair<std::string, std::string> TypeSubShapeNamePair;
39 //--------------------------------------------------------------------------------------
40 /**\class ModelHighAPI_Selection
42 * \brief Class for filling ModelAPI_AttributeSelection
44 class ModelHighAPI_Selection
49 VT_ResultSubShapePair,
50 VT_TypeSubShapeNamePair
54 /// Default constructor with empty selection.
56 ModelHighAPI_Selection();
58 /// Constructor for result and sub-shape
60 ModelHighAPI_Selection(const std::shared_ptr<ModelAPI_Result>& theContext,
61 const std::shared_ptr<GeomAPI_Shape>& theSubShape =
62 std::shared_ptr<GeomAPI_Shape>());
63 /// Constructor for sub-shape by the textual Name
65 ModelHighAPI_Selection(const std::string& theType,
66 const std::string& theSubShapeName);
69 virtual ~ModelHighAPI_Selection();
71 /// Fill attribute values
72 MODELHIGHAPI_EXPORT virtual
73 void fillAttribute(const std::shared_ptr<ModelAPI_AttributeSelection> & theAttribute) const;
75 /// Append to list attribute
76 MODELHIGHAPI_EXPORT virtual
77 void appendToList(const std::shared_ptr<ModelAPI_AttributeSelectionList> & theAttribute) const;
79 /// \return variant type.
81 virtual VariantType variantType() const;
83 /// \return pair of result and sub-shape.
85 virtual ResultSubShapePair resultSubShapePair() const;
87 /// \return pair of sub-shape type and name.
89 virtual TypeSubShapeNamePair typeSubShapeNamePair() const;
91 /// \return shape type.
93 virtual std::string shapeType() const;
95 /// Shortcut for result()->data()->setName()
97 void setName(const std::string& theName);
99 /// Shortcut for result()->data()->name()
101 std::string name() const;
103 /// Change result's color
105 void setColor(int theRed, int theGreen, int theBlue);
107 /// Change result's deflection
109 void setDeflection(double theValue);
111 /// Change result's transparency
113 void setTransparency(double theValue);
115 /// Returns the number of sub-elements.
117 int numberOfSubs() const;
119 /// Returns the sub-result by zero-base index.
121 ModelHighAPI_Selection subResult(int theIndex) const;
124 VariantType myVariantType;
125 ResultSubShapePair myResultSubShapePair;
126 TypeSubShapeNamePair myTypeSubShapeNamePair;
129 //--------------------------------------------------------------------------------------
130 //--------------------------------------------------------------------------------------
131 #endif /* SRC_MODELHIGHAPI_MODELHIGHAPI_SELECTION_H_ */