Salome HOME
64d92151ad5dfaebb3b741135ecb344d6aba6fc8
[modules/shaper.git] / src / PartSet / PartSet_OperationPrs.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        PartSet_OperationPrs.h
4 // Created:     01 Jul 2015
5 // Author:      Natalia ERMOLAEVA
6
7 #ifndef PartSet_OperationPrs_H
8 #define PartSet_OperationPrs_H
9
10 #include "PartSet.h"
11
12 #include <ModelAPI_Object.h>
13 #include <ModelAPI_Feature.h>
14 #include <ModelAPI_Result.h>
15 #include <ModelAPI_Attribute.h>
16
17 #include <ModuleBase_IWorkshop.h>
18
19 #include <GeomAPI_Shape.h>
20
21 #include <ViewerData_AISShape.hxx>
22 #include <Standard_DefineHandle.hxx>
23
24 #include <Quantity_Color.hxx>
25
26 #include <QMap>
27 #include <QList>
28
29 #include <list>
30
31 DEFINE_STANDARD_HANDLE(PartSet_OperationPrs, ViewerData_AISShape)
32
33 class XGUI_Workshop;
34 class XGUI_Displayer;
35
36 /**
37 * \ingroup GUI
38 * A redefinition of standard AIS Interactive Object in order to provide colored presentation of
39 * a list of shapes. It contains a shapes where the parameter feature refers. It processes the following
40 * types of attributes: ModelAPI_AttributeSelectionList, ModelAPI_AttributeRefAttr,
41 * ModelAPI_AttributeSelection and ModelAPI_AttributeReference.
42 * The selection for this presentation is absent.
43 */
44 class PartSet_OperationPrs : public ViewerData_AISShape
45 {
46 public:
47   /// Constructor
48   Standard_EXPORT PartSet_OperationPrs(ModuleBase_IWorkshop* theWorkshop);
49
50   /// Returns true if the feature contains attributes, which has references to other features
51   /// \param theFeature a feature
52   /// \return boolean result
53   bool canActivate(const FeaturePtr& theFeature);
54
55   /// Sets the operation feature. It is used in Compute method to group the feature parameter shapes
56   /// theFeature a feature
57   void setFeature(const FeaturePtr& theFeature);
58
59   /// Returns true if the presentation 
60   //bool dependOn(const ObjectPtr& theObject);
61
62   // Recompute internal list of shaped dependent on the current feature
63   void updateShapes();
64
65   /// Returns true if the feature contains shapes or results
66   bool hasShapes();
67
68   DEFINE_STANDARD_RTTI(PartSet_OperationPrs)
69
70 protected:
71   /// Redefinition of virtual function
72   Standard_EXPORT virtual void Compute(
73             const Handle(PrsMgr_PresentationManager3d)& thePresentationManager,
74             const Handle(Prs3d_Presentation)& thePresentation, const Standard_Integer theMode = 0);
75
76   /// Redefinition of virtual function
77   Standard_EXPORT virtual void ComputeSelection(const Handle(SelectMgr_Selection)& aSelection,
78                                                 const Standard_Integer aMode) ;
79 private:
80   /// Return true if the object is visible. If the object is feature, it returns true
81   /// if all results of the feature are shown
82   /// \param theDisplayer a displayer
83   /// \param theObject an object
84   /// \return a boolean value
85   bool isVisible(XGUI_Displayer* theDislayer, const ObjectPtr& theObject);
86
87   /// Fills the map by the feature object and shapes, which should be visuaziled
88   /// Gets the feature attribute, collect objects to whom the attribute refers
89   /// \param theObjectShape an output map of objects
90   void getFeatureShapes(QMap<ObjectPtr, QList<GeomShapePtr> >& theObjectShapes);
91
92   /// Returns true if the attribute type belong to reference attribute
93   /// \param theAttribute an attribute
94   /// \return a boolean value
95   static bool isSelectionAttribute(const AttributePtr& theAttribute);
96
97   /// Converts the current workshop to XGUI workshop
98   /// \return a workshop instance
99   XGUI_Workshop* workshop() const;
100
101 private:
102   ModuleBase_IWorkshop* myWorkshop;
103   FeaturePtr myFeature; /// Reference to a feature object
104   QMap<ObjectPtr, QList<GeomShapePtr> > myFeatureShapes; /// visualized shapes
105   std::list<ResultPtr> myFeatureResults; /// visualized feature results
106
107   Quantity_Color myShapeColor; /// color of feature depended shapes
108   Quantity_Color myResultColor; /// color of feature result
109 };
110
111
112 #endif