]> SALOME platform Git repositories - modules/shaper.git/blob - src/Model/Model_AttributeSelection.h
Salome HOME
Merge branch 'Dev_0.6.1' of newgeom:newgeom into Dev_0.6.1
[modules/shaper.git] / src / Model / Model_AttributeSelection.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        Model_AttributeSelection.h
4 // Created:     8 May 2014
5 // Author:      Mikhail PONIKAROV
6
7 #ifndef Model_AttributeSelection_H_
8 #define Model_AttributeSelection_H_
9
10 #include "Model.h"
11 #include "Model_AttributeReference.h"
12 #include <ModelAPI_AttributeSelection.h>
13 #include <TDF_LabelMap.hxx>
14
15 /**\class Model_AttributeSelection
16  * \ingroup DataModel
17  * \brief Attribute that contains reference to the sub-shape of some result, the selected shape.
18  */
19
20 class Model_AttributeSelection : public ModelAPI_AttributeSelection
21 {
22   Model_AttributeReference myRef;  ///< The reference functionality reusage
23   TDF_LabelMap myScope; ///< the map of valid labels for naming selection solving
24 public:
25   /// Defines the result and its selected sub-shape
26   MODEL_EXPORT virtual void setValue(
27     const ResultPtr& theContext, const std::shared_ptr<GeomAPI_Shape>& theSubShape);
28
29   /// Returns the selected subshape
30   MODEL_EXPORT virtual std::shared_ptr<GeomAPI_Shape> value();
31
32   /// Returns the context of the selection (the whole shape owner)
33   MODEL_EXPORT virtual ResultPtr context();
34
35   /// Sets the feature object
36   MODEL_EXPORT virtual void setObject(const std::shared_ptr<ModelAPI_Object>& theObject);
37
38   /// Updates the underlied selection due to the changes in the referenced objects
39   /// \returns false if update is failed
40   MODEL_EXPORT virtual bool update();
41
42   /// Returns a textual string of the selection
43   MODEL_EXPORT virtual std::string namingName();
44
45   /// Selects (i.e. creates Naming data structure) of sub-shape specifed by textual name
46   MODEL_EXPORT virtual void selectSubShape(const std::string& theType, const std::string& theSubShapeName);
47
48 protected:
49   /// Objects are created for features automatically
50   MODEL_EXPORT Model_AttributeSelection(TDF_Label& theLabel);
51     /// Performs the selection for the body result (TNaming Selection)
52
53   /// Performs the selection for the body result (TNaming selection)
54   virtual void selectBody(
55     const ResultPtr& theContext, const std::shared_ptr<GeomAPI_Shape>& theSubShape);
56
57   /// Performs the selection for the construction result (selection by index)
58   virtual void selectConstruction(
59     const ResultPtr& theContext, const std::shared_ptr<GeomAPI_Shape>& theSubShape);
60
61   /// Returns the label where TNaming_Selection results are stored
62   /// Note: there must be no attributes stored at the same label because Selector clears this lab
63   TDF_Label selectionLabel();
64
65   /// Returns the prepared map of valid labels for naming selection solving (creates if not exists)
66   TDF_LabelMap& scope();
67
68   friend class Model_Data;
69   friend class Model_AttributeSelectionList;
70 };
71
72 #endif