Salome HOME
31c9fe7d89714eb8f341a41b66c79f07d2da36b5
[modules/visu.git] / src / VISU_I / VISU_StreamLines_i.hh
1 //  VISU OBJECT : interactive object for VISU entities implementation
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
21 //
22 //
23 //  File   : VISU_PrsObject_i.hxx
24 //  Author : Alexey PETROV
25 //  Module : VISU
26
27 #ifndef VISU_StreamLines_i_HeaderFile
28 #define VISU_StreamLines_i_HeaderFile
29
30 #include "VISU_DeformedShape_i.hh"
31
32 class VISU_StreamLinesPL;
33 class vtkAppendFilter;
34
35 namespace VISU{
36   class StreamLines_i : public virtual POA_VISU::StreamLines,
37                         public virtual DeformedShape_i
38   {
39     static int myNbPresent;
40     StreamLines_i();
41     StreamLines_i(const StreamLines_i&);
42
43   public:
44     typedef DeformedShape_i TSuperClass;
45
46     explicit
47     StreamLines_i(Result_i* theResult,
48                   bool theAddToStudy);
49     explicit
50     StreamLines_i(Result_i* theResult,
51                   SALOMEDS::SObject_ptr theSObject);
52     virtual void SameAs(const Prs3d_i* theOriginal);
53     virtual ~StreamLines_i();
54
55     virtual VISU::VISUType GetType() { return VISU::TSTREAMLINES;}
56
57     virtual CORBA::Boolean SetParams(CORBA::Double theIntStep,
58                                      CORBA::Double thePropogationTime,
59                                      CORBA::Double theStepLength,
60                                      VISU::Prs3d_ptr thePrs3d,
61                                      CORBA::Double thePercents,
62                                      VISU::StreamLines::Direction theDirection);
63     virtual CORBA::Double GetIntegrationStep();
64     virtual CORBA::Double GetPropagationTime();
65     virtual CORBA::Double GetStepLength();
66     virtual CORBA::Double GetUsedPoints();
67     virtual VISU::Prs3d_ptr GetSource();
68     virtual VISU::StreamLines::Direction GetDirection();
69
70     typedef VISU::StreamLines TInterface;
71     VISU_StreamLinesPL* GetStreamLinesPL(){ return myStreamLinesPL;}
72
73   protected:
74     virtual void DoHook();
75     virtual void SetSource(VISU::Prs3d_ptr thePrs3d);
76     virtual void SetSource(VISU::Prs3d_i* thePrs3d);
77     virtual void SetSource();
78
79     VISU_StreamLinesPL* myStreamLinesPL;
80     vtkAppendFilter* myAppendFilter;
81     std::string mySourceEntry;
82
83   public:
84     static int IsPossible(Result_i* theResult, const char* theMeshName, VISU::Entity theEntity,
85                           const char* theFieldName, int theIteration, int isMemoryCheck = true);
86     virtual Storable* Create(const char* theMeshName, VISU::Entity theEntity,
87                              const char* theFieldName, int theIteration);
88
89     virtual void ToStream(std::ostringstream& theStr);
90
91     static const std::string myComment;
92     virtual const char* GetComment() const;
93     virtual QString GenerateName();
94
95     virtual Storable* Restore(const Storable::TRestoringMap& theMap);
96
97     virtual void Update();
98
99     virtual 
100     VISU_Actor* 
101     CreateActor(const Handle(SALOME_InteractiveObject)& theIO = NULL);
102
103     virtual void UpdateActor(VISU_Actor* theActor);
104
105     virtual QString GetSourceEntry() { return QString(mySourceEntry.c_str()); }
106   };
107 }
108
109 #endif