Salome HOME
Set deflection coefficient for VTK viewer equal to the 0.0, because it is currently...
[modules/geom.git] / src / GEOMGUI / GEOM_Displayer.h
1 //  Copyright (C) 2007-2010  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.
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 SALOME_ListIO;
35 class SALOME_View;
36 class SALOME_Prs;
37 class SALOME_OCCPrs;
38 class SALOME_VTKPrs;
39 class SALOME_OCCViewType;
40
41 #include <TopoDS_Shape.hxx>
42 #include <Quantity_Color.hxx>
43 #include <LightApp_Displayer.h>
44 #include <LightApp_Study.h>
45 #include <Aspect_TypeOfMarker.hxx>
46
47 #include <QList>
48
49 #include <list>
50
51 #include <SALOMEconfig.h>
52 #include CORBA_CLIENT_HEADER(GEOM_Gen)
53
54 #define GEOM_ALLOBJECTS -1 // Selection of all objects is activated
55 #define GEOM_PREVIEW    -2 // Definition for preview selection
56 #define GEOM_ALLSHAPES  -3 // Selection of all shapes is activated
57 #define GEOM_ALLGEOM    -4 // Selection of all geom objects is activated
58
59 typedef std::list<GEOM::GEOM_Object_ptr> ObjectList;
60
61 class TColStd_MapOfInteger;
62 class LightApp_SelectionMgr;
63 class SalomeApp_Study;
64 class SalomeApp_Application;
65 class SUIT_SelectionFilter;
66 //class SALOME_Selection;
67
68 class GEOMGUI_EXPORT GEOM_Displayer : public LightApp_Displayer
69 {
70
71 public:
72   /* Constructor */
73   GEOM_Displayer( SalomeApp_Study* app );
74   /* Destructor */
75   virtual ~GEOM_Displayer();
76
77   virtual bool canBeDisplayed( const QString& /*entry*/, const QString& /*viewer_type*/ ) const;
78
79   /* Display/Erase object methods */
80   void          Display   ( const Handle(SALOME_InteractiveObject)& theIO,
81                             const bool updateViewer = true,
82                             SALOME_View* theViewFrame = 0 );
83
84   // This overloaded Display() method can be useful for operations
85   // not using dialog boxes.
86   void          Display   ( GEOM::GEOM_Object_ptr theObj,
87                             const bool updateViewer = true );
88
89   void          Redisplay ( const Handle(SALOME_InteractiveObject)& theIO,
90                             const bool updateViewer = true );
91
92   void          Erase     ( const Handle(SALOME_InteractiveObject)& theIO,
93                             const bool forced = false,
94                             const bool updateViewer = true,
95                             SALOME_View* theViewFrame = 0 );
96
97   void          Erase     ( GEOM::GEOM_Object_ptr theObj,
98                             const bool forced = false,
99                             const bool updateViewer = true );
100
101   /* Display/Erase list of objects methods */
102
103   void          Display   ( const SALOME_ListIO& theIOList,
104                             const bool updateViewer = true );
105
106   void          Erase     ( const SALOME_ListIO& theIOList,
107                             const bool forced = false,
108                             const bool updateViewer = true );
109
110   void          Redisplay ( const SALOME_ListIO& theIOList,
111                             const bool updateViewer = true );
112
113   /* build presentation accordint to the current viewer type*/
114   SALOME_Prs*   BuildPrs  ( GEOM::GEOM_Object_ptr );
115   SALOME_Prs*   BuildPrs  ( const TopoDS_Shape& );
116
117   /* Set color for shape displaying. If it is equal -1 then default color is used.
118      Available values are from Quantity_NameOfColor enumeration */
119   void          SetColor  ( const int );
120   void          UnsetColor();
121   int           GetColor  () const;
122   bool          HasColor  () const;
123
124   /* Set width for shape displaying. If it is equal -1 then default width is used. */
125   void          SetWidth  ( const double );
126   void          UnsetWidth();
127   double        GetWidth  () const;
128   bool          HasWidth  () const;
129   
130   /* Set display mode shape displaying. If it is equal -1 then display mode is used. */
131   int           SetDisplayMode( const int );
132   int           GetDisplayMode() const;
133   int           UnsetDisplayMode();
134
135
136   /* Sets name - for temporary objects only */
137   void          SetName( const char* theName );
138   void          UnsetName();
139
140   /* Reimplemented from SALOME_Displayer */
141   virtual void  Update( SALOME_OCCPrs* );
142   virtual void  Update( SALOME_VTKPrs* );
143   virtual void  BeforeDisplay( SALOME_View*, const SALOME_OCCViewType& );
144   virtual void  AfterDisplay ( SALOME_View*, const SALOME_OCCViewType& );
145
146   /* This methos is used for activisation/deactivisation of objects to be displayed*/
147   void          SetToActivate( const bool );
148   bool          ToActivate() const;
149
150   /* Activate/Deactivate selection*/
151   void         LocalSelection( const Handle(SALOME_InteractiveObject)&, const int );
152   void         LocalSelection( const SALOME_ListIO& theIOList, const int );
153   void         GlobalSelection( const int = GEOM_ALLOBJECTS, const bool = false );
154   void         GlobalSelection( const TColStd_MapOfInteger&, const bool = false, const QList<int>* = 0 );
155
156   SalomeApp_Study* getStudy() const;
157
158   static SALOMEDS::Color getUniqueColor( const QList<SALOMEDS::Color>& );
159
160   static PropMap getDefaultPropepryMap(const QString& viewer_type);
161   
162   static bool MergePropertyMaps(PropMap& theOrigin, PropMap& theDefault);
163   
164   /*Get color of the geom object*/
165   static SALOMEDS::Color getColor(GEOM::GEOM_Object_var aGeomObject, bool& hasColor);
166
167   /* Builds presentation of not published object */
168   virtual SALOME_Prs* buildSubshapePresentation(const TopoDS_Shape& aShape,
169                                                 const QString&,
170                                                 SALOME_View* = 0);
171
172 protected:
173   /* internal methods */
174   /* Builds presentation according to the current viewer type */
175   virtual SALOME_Prs* buildPresentation( const QString&, SALOME_View* = 0 );
176
177   /* Sets interactive object */
178   void        setIO( const Handle(SALOME_InteractiveObject)& theIO );
179
180   /* Sets shape */
181   void        setShape( const TopoDS_Shape& theShape );
182
183   /* Resets internal data */
184   void        internalReset();
185
186   void        clearTemporary( LightApp_SelectionMgr* theSelMgr );
187
188   SUIT_SelectionFilter* getFilter( const int theMode );
189   SUIT_SelectionFilter* getComplexFilter( const QList<int>* );
190
191 protected:
192   Handle(SALOME_InteractiveObject) myIO;
193   TopoDS_Shape                     myShape;
194   std::string                      myName;
195   int                              myType;
196   SALOME_View*                     myViewFrame;
197
198   // Attributes
199   Quantity_Color                   myShadingColor;
200   int                              myColor;
201   double                           myWidth;
202   bool                             myToActivate;
203   int                              myDisplayMode;
204   Aspect_TypeOfMarker              myTypeOfMarker;
205   double                           myScaleOfMarker;
206
207 private:
208   SalomeApp_Application* myApp;
209 };
210
211 #endif // GEOM_DISPLAYER_H
212