Salome HOME
Revert "Synchronize adm files"
[modules/geom.git] / src / GEOMGUI / GEOM_Displayer.h
1 // Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 // GEOM GEOMGUI : GUI for Geometry component
24 // File   : GEOM_Displayer.h
25 // Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
26 //
27 #ifndef GEOM_DISPLAYER_H
28 #define GEOM_DISPLAYER_H
29
30 #include "GEOM_GEOMGUI.hxx"
31
32 #include <SALOME_InteractiveObject.hxx>
33
34 class GEOM_Actor;
35 class SALOME_ListIO;
36 class SALOME_View;
37 class SALOME_Prs;
38 class SALOME_OCCPrs;
39 class SALOME_VTKPrs;
40 class SALOME_OCCViewType;
41
42 #include <TopoDS_Shape.hxx>
43 #include <Quantity_Color.hxx>
44 #include <LightApp_Displayer.h>
45 #include <LightApp_Study.h>
46 #include <Aspect_TypeOfMarker.hxx>
47 #include <TCollection_AsciiString.hxx>
48 #include <Basics_OCCTVersion.hxx>
49 #include <QList>
50
51 #include <list>
52
53 #include <SALOMEconfig.h>
54 #include CORBA_CLIENT_HEADER(GEOM_Gen)
55
56 #define GEOM_ALLOBJECTS -1 // Selection of all objects is activated
57 #define GEOM_PREVIEW    -2 // Definition for preview selection
58 #define GEOM_ALLSHAPES  -3 // Selection of all shapes is activated
59 #define GEOM_ALLGEOM    -4 // Selection of all geom objects is activated
60
61 typedef std::list<GEOM::GEOM_Object_ptr> ObjectList;
62
63 class TColStd_MapOfInteger;
64 class LightApp_SelectionMgr;
65 class SalomeApp_Study;
66 class SalomeApp_Application;
67 class SUIT_SelectionFilter;
68 class Handle_GEOM_AISShape;
69 class gp_Ax3;
70 //class SALOME_Selection;
71
72 class GEOMGUI_EXPORT GEOM_Displayer : public LightApp_Displayer
73 {
74
75 public:
76   /* Constructor */
77   GEOM_Displayer( SalomeApp_Study* app );
78   /* Destructor */
79   virtual ~GEOM_Displayer();
80
81   virtual bool canBeDisplayed( const QString& /*entry*/, const QString& /*viewer_type*/ ) const;
82
83   /* Display/Erase object methods */
84   void          Display   ( const Handle(SALOME_InteractiveObject)& theIO,
85                             const bool updateViewer = true,
86                             SALOME_View* theViewFrame = 0 );
87
88   // This overloaded Display() method can be useful for operations
89   // not using dialog boxes.
90   void          Display   ( GEOM::GEOM_BaseObject_ptr theObj,
91                             const bool updateViewer = true );
92
93   void          Redisplay ( const Handle(SALOME_InteractiveObject)& theIO,
94                             const bool updateViewer = true,
95                             const bool checkActiveViewer = true );
96
97   void          Redisplay ( const Handle(SALOME_InteractiveObject)& theIO,
98                             const bool theUpdateViewer,
99                             SALOME_View* theViewFrame );
100
101   void          Erase     ( const Handle(SALOME_InteractiveObject)& theIO,
102                             const bool forced = false,
103                             const bool updateViewer = true,
104                             SALOME_View* theViewFrame = 0 );
105
106   void          Erase     ( GEOM::GEOM_BaseObject_ptr theObj,
107                             const bool forced = false,
108                             const bool updateViewer = true,
109                             SALOME_View* theViewFrame = 0);
110
111   void          EraseWithChildren(const Handle(SALOME_InteractiveObject)& theIO,
112                                   const bool eraseOnlyChildren = false);
113
114   /* Display/Erase list of objects methods */
115
116   void          Display   ( const SALOME_ListIO& theIOList,
117                             const bool updateViewer = true );
118
119   void          Erase     ( const SALOME_ListIO& theIOList,
120                             const bool forced = false,
121                             const bool updateViewer = true );
122
123   void          Redisplay ( const SALOME_ListIO& theIOList,
124                             const bool updateViewer = true,
125                             const bool checkActiveViewer = true );
126
127   void          Redisplay ( const SALOME_ListIO& theIOList,
128                             const bool theUpdateViewer,
129                             SALOME_View* theViewFrame );
130
131   /* build presentation accordint to the current viewer type*/
132   SALOME_Prs*   BuildPrs  ( GEOM::GEOM_Object_ptr );
133   SALOME_Prs*   BuildPrs  ( const TopoDS_Shape& );
134
135   /* Set color for shape displaying. If it is equal -1 then default color is used.
136      Available values are from Quantity_NameOfColor enumeration */
137   void          SetColor  ( const int );
138   void          UnsetColor();
139   int           GetColor  () const;
140   bool          HasColor  () const;
141
142   double        SetTransparency  ( const double );
143   double        UnsetTransparency();
144   double        GetTransparency  () const;
145   bool          HasTransparency  () const;
146   
147   /* Set texture for shape displaying. */
148   void          SetTexture  ( const std::string& );
149   bool          HasTexture  () const;
150   std::string   GetTexture  () const;
151
152   /* Set width for shape displaying. If it is equal -1 then default width is used. */
153   void          SetWidth  ( const double );
154   void          UnsetWidth();
155   double        GetWidth  () const;
156   bool          HasWidth  () const;
157
158   /* Set width for iso-lines displaying. If it is equal -1 then default width is used. */
159   void          SetIsosWidth  ( const int );
160   int           GetIsosWidth  () const;
161   bool          HasIsosWidth  () const;
162   
163   /* Set display mode shape displaying. If it is equal -1 then display mode is used. */
164   int           SetDisplayMode( const int );
165   int           GetDisplayMode() const;
166   int           UnsetDisplayMode();
167   bool          HasDisplayMode() const;
168
169   /* Sets name - for temporary objects only */
170   void          SetName( const char* theName );
171   void          UnsetName();
172
173   /* Reimplemented from SALOME_Displayer */
174   virtual void  Update( SALOME_OCCPrs* );
175   virtual void  Update( SALOME_VTKPrs* );
176   virtual void  BeforeDisplay( SALOME_View*, const SALOME_OCCPrs* );
177   virtual void  AfterDisplay ( SALOME_View*, const SALOME_OCCPrs* );
178 #if OCC_VERSION_LARGE > 0x06070000
179   virtual void  BeforeErase  ( SALOME_View*, const SALOME_OCCPrs* );
180 #endif
181   virtual void  AfterErase   ( SALOME_View*, const SALOME_OCCPrs* );
182
183   /* This methos is used for activisation/deactivisation of objects to be displayed*/
184   void          SetToActivate( const bool );
185   bool          ToActivate() const;
186
187   /* Activate/Deactivate selection*/
188   void         LocalSelection( const Handle(SALOME_InteractiveObject)&, const int );
189   void         LocalSelection( const SALOME_ListIO& theIOList, const int );
190   void         GlobalSelection( const int = GEOM_ALLOBJECTS, const bool = false );
191   void         GlobalSelection( const TColStd_MapOfInteger&, const bool = false, const QList<int>* = 0 );
192
193   SalomeApp_Study* getStudy() const;
194
195   static SALOMEDS::Color getUniqueColor( const QList<SALOMEDS::Color>& );
196   static SALOMEDS::Color getPredefinedUniqueColor();
197
198   /*Get color of the geom object*/
199   static SALOMEDS::Color getColor(GEOM::GEOM_Object_var aGeomObject, bool& hasColor);
200
201   /* Get minimum or maximum enclosed shape type */
202   static int getMinMaxShapeType( const TopoDS_Shape& shape, bool ismin );
203
204   /* Check if the object is a vertex or a compound of vertices */
205   static bool isCompoundOfVertices( const TopoDS_Shape& theShape );
206
207
208   /* Builds presentation of not published object */
209   virtual SALOME_Prs* buildSubshapePresentation(const TopoDS_Shape& aShape,
210                                                 const QString&,
211                                                 SALOME_View* = 0);
212
213   /* Update visibility and parameters of the currently selected field step's color scale */
214   void UpdateColorScale( const bool theIsRedisplayFieldSteps = false, const bool updateViewer = true );
215
216 protected:
217   /* internal methods */
218   /* Builds presentation according to the current viewer type */
219   virtual SALOME_Prs* buildPresentation( const QString&, SALOME_View* = 0 );
220
221   /* Sets interactive object */
222   void        setIO( const Handle(SALOME_InteractiveObject)& theIO );
223
224   /* Sets shape */
225   void        setShape( const TopoDS_Shape& theShape );
226
227   /* Sets field step information */
228   void        setFieldStepInfo( const GEOM::field_data_type theFieldDataType,
229                                 const int theFieldDimension,
230                                 const QList<QVariant>& theFieldStepData,
231                                 const TCollection_AsciiString& theFieldStepName,
232                                 const double theFieldStepRangeMin,
233                                 const double theFieldStepRangeMax );
234
235   /* Resets internal data */
236   void        internalReset();
237
238   void        clearTemporary( LightApp_SelectionMgr* theSelMgr );
239
240   SUIT_SelectionFilter* getFilter( const int theMode );
241   SUIT_SelectionFilter* getComplexFilter( const QList<int>* );
242
243   Quantity_Color qColorFromResources( const QString&, const QColor& );
244   QColor         colorFromResources( const QString&, const QColor& );
245   void           updateShapeProperties( const Handle(GEOM_AISShape)&, bool );
246   void           updateActorProperties( GEOM_Actor*, bool );
247   void           updateDimensions( const Handle(SALOME_InteractiveObject)&, SALOME_OCCPrs*, const gp_Ax3& );
248
249   PropMap getObjectProperties( SalomeApp_Study*, const QString&, SALOME_View* = 0 );
250   PropMap getDefaultPropertyMap();
251
252   /* Methods for reading the field step information */
253   void            readFieldStepInfo( GEOM::GEOM_FieldStep_var theGeomFieldStep );
254   QList<QVariant> groupFieldData( const QList<QVariant>& theFieldStepData,
255                                   const int theFieldNbComponents,
256                                   const bool theIsString,
257                                   double& theFieldStepRangeMin,
258                                   double& theFieldStepRangeMax );
259
260   // Note: the method is copied from Aspect_ColorScale class
261   static Standard_Integer HueFromValue( const Standard_Integer aValue,
262                                         const Standard_Integer aMin,
263                                         const Standard_Integer aMax );
264
265   // Note: the method is copied from Aspect_ColorScale class
266   static Standard_Boolean FindColor( const Standard_Real aValue, 
267                                      const Standard_Real aMin,
268                                      const Standard_Real aMax,
269                                      const Standard_Integer ColorsCount,
270                                      Quantity_Color& aColor );
271
272 protected:
273   Handle(SALOME_InteractiveObject) myIO;
274   TopoDS_Shape                     myShape;
275   GEOM::field_data_type            myFieldDataType;
276   int                              myFieldDimension;
277   QList<QVariant>                  myFieldStepData;
278   TCollection_AsciiString          myFieldStepName;
279   double                           myFieldStepRangeMin;
280   double                           myFieldStepRangeMax;
281   std::string                      myName;
282   std::string                      myTexture;
283   int                              myType;
284   SALOME_View*                     myViewFrame;
285
286   // Attributes
287   Quantity_Color                   myShadingColor;
288   int                              myColor;
289   double                           myWidth;
290   int                              myIsosWidth;
291   bool                             myToActivate;
292   int                              myDisplayMode;
293   bool                             myHasDisplayMode;
294   Aspect_TypeOfMarker              myTypeOfMarker;
295   double                           myScaleOfMarker;
296   double                           myTransparency;
297   bool                             myHasTransparency;
298
299 private:
300   SalomeApp_Application* myApp;
301   friend class GEOM_Swig;
302 };
303
304 #endif // GEOM_DISPLAYER_H
305