Salome HOME
Merge from V6_3_BR 06/06/2011
[modules/visu.git] / src / OBJECT / VISU_GaussPtsSettings.cxx
1 // Copyright (C) 2007-2011  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   : 
25 //  Author : 
26 //  Module : VISU
27 //  $Header$
28 //
29 #include "VISU_GaussPtsSettings.h"
30 #include <SUIT_ResourceMgr.h>
31 #include <SUIT_Session.h>
32
33 #include "SUIT_ResourceMgr.h"
34 #include "SUIT_Session.h"
35
36 #include <vtkObjectFactory.h>
37 #include <vtkImageData.h>
38
39 #include <QColor>
40
41 //----------------------------------------------------------------
42 vtkStandardNewMacro( VISU_GaussPtsSettings );
43 vtkStandardNewMacro( VISU_InsideCursorSettings );
44 vtkStandardNewMacro( VISU_OutsideCursorSettings );
45
46 //----------------------------------------------------------------
47 VISU_GaussPtsSettings::VISU_GaussPtsSettings()
48 {
49   this->Initial                = true;
50
51   this->PrimitiveType          = -1;
52   this->Clamp                  = -1;
53   this->Texture                = NULL;
54   this->AlphaThreshold         = -1;
55   this->Resolution             = -1;
56   this->Magnification          = -1;
57   this->Increment              = -1;
58 }
59
60 VISU_GaussPtsSettings::~VISU_GaussPtsSettings()
61 {
62   this->SetTexture( NULL );
63 }
64
65 //----------------------------------------------------------------
66 VISU_InsideCursorSettings::VISU_InsideCursorSettings() :
67   VISU_GaussPtsSettings()
68 {
69   this->MinSize                = -1;
70   this->MaxSize                = -1;
71 }
72
73 VISU_InsideCursorSettings::~VISU_InsideCursorSettings()
74 {
75 }
76
77 //----------------------------------------------------------------
78 VISU_OutsideCursorSettings::VISU_OutsideCursorSettings() :
79   VISU_GaussPtsSettings()
80 {
81   this->Size                   = -1;
82   this->Uniform                = false;
83   this->Color[0]               = -1;
84   this->Color[1]               = -1;
85   this->Color[2]               = -1;
86 }
87
88 VISU_OutsideCursorSettings::~VISU_OutsideCursorSettings()
89 {
90 }