1 // File: Model_AttributeSelection.h
3 // Author: Mikhail PONIKAROV
5 #ifndef Model_AttributeSelection_H_
6 #define Model_AttributeSelection_H_
9 #include "Model_AttributeReference.h"
10 #include <ModelAPI_AttributeSelection.h>
12 /**\class Model_AttributeSelection
14 * \brief Attribute that contains reference to the sub-shape of some result, the selected shape.
17 class Model_AttributeSelection : public ModelAPI_AttributeSelection
19 Model_AttributeReference myRef; ///< The reference functionality reusage
21 /// Defines the result and its selected sub-shape
22 MODEL_EXPORT virtual void setValue(
23 const ResultPtr& theContext, const boost::shared_ptr<GeomAPI_Shape>& theSubShape);
25 /// Returns the selected subshape
26 MODEL_EXPORT virtual boost::shared_ptr<GeomAPI_Shape> value();
28 /// Returns the context of the selection (the whole shape owner)
29 MODEL_EXPORT virtual ResultPtr context();
31 MODEL_EXPORT virtual void setObject(const boost::shared_ptr<ModelAPI_Object>& theObject);
34 /// Objects are created for features automatically
35 MODEL_EXPORT Model_AttributeSelection(TDF_Label& theLabel);
36 /// Performs the selection for the body result (TNaming Selection)
38 /// Performs the selection for the body result (TNaming selection)
39 virtual void selectBody(
40 const ResultPtr& theContext, const boost::shared_ptr<GeomAPI_Shape>& theSubShape);
41 /// Performs the selection for the construction result (selection by index)
42 virtual void selectConstruction(
43 const ResultPtr& theContext, const boost::shared_ptr<GeomAPI_Shape>& theSubShape);
45 friend class Model_Data;