Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/visu.git] / src / PIPELINE / VISU_PointSpriteMapperHolder.hxx
1 // Copyright (C) 2007-2012  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 //  VISU OBJECT : interactive object for VISU entities implementation
24 // File:    VISU_PointSpriteMapperHolder.hxx
25 // Author:  Alexey PETROV
26 // Module : VISU
27 //
28 #ifndef VISU_PointSpriteMapperHolder_HeaderFile
29 #define VISU_PointSpriteMapperHolder_HeaderFile
30
31 #include "VISU_PolyDataMapperHolder.hxx"
32
33 class VISU_OpenGLPointSpriteMapper;
34
35
36 //----------------------------------------------------------------------------
37 class VISU_PointSpriteMapperHolder : public VISU_PolyDataMapperHolder
38 {
39 public:
40   vtkTypeMacro(VISU_PointSpriteMapperHolder, VISU_PolyDataMapperHolder);
41
42   static 
43   VISU_PointSpriteMapperHolder* 
44   New();
45
46   //----------------------------------------------------------------------------
47   virtual
48   void
49   ShallowCopy(VISU_MapperHolder *theMapperHolder,
50               bool theIsCopyInput);
51
52   //----------------------------------------------------------------------------
53   void 
54   SetGaussPtsIDMapper(const VISU::PGaussPtsIDMapper& theGaussPtsIDMapper);
55
56   const VISU::PGaussPtsIDMapper&
57   GetGaussPtsIDMapper();
58
59   virtual 
60   VISU_OpenGLPointSpriteMapper* 
61   GetPointSpriteMapper();
62
63 protected:
64   //----------------------------------------------------------------------------
65   VISU_PointSpriteMapperHolder();
66   VISU_PointSpriteMapperHolder(const VISU_PointSpriteMapperHolder&);
67
68   virtual
69   ~VISU_PointSpriteMapperHolder();
70
71   //----------------------------------------------------------------------------
72   virtual
73   void
74   OnCreateMapper();
75
76 private:
77   //----------------------------------------------------------------------------
78   VISU::PGaussPtsIDMapper myGaussPtsIDMapper;
79   vtkSmartPointer<VISU_OpenGLPointSpriteMapper> myPointSpriteMapper;
80 };
81
82 #endif