Salome HOME
Start implementation of methods, manipulating view parameters (position, size, splitt...
[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   public:
43     explicit
44     StreamLines_i(Result_i* theResult,
45                   bool theAddToStudy);
46     explicit
47     StreamLines_i(Result_i* theResult,
48                   SALOMEDS::SObject_ptr theSObject);
49     virtual void SameAs(const StreamLines_i* theOriginal);
50     virtual ~StreamLines_i();
51
52     virtual VISU::VISUType GetType() { return VISU::TSTREAMLINES;}
53
54     virtual CORBA::Boolean SetParams(CORBA::Double theIntStep,
55                                      CORBA::Double thePropogationTime,
56                                      CORBA::Double theStepLength,
57                                      VISU::Prs3d_ptr thePrs3d, 
58                                      CORBA::Double thePercents,
59                                      VISU::StreamLines::Direction theDirection);
60     virtual CORBA::Double GetIntegrationStep();
61     virtual CORBA::Double GetPropagationTime();
62     virtual CORBA::Double GetStepLength();
63     virtual CORBA::Double GetUsedPoints();
64     virtual VISU::Prs3d_ptr GetSource();
65     virtual VISU::StreamLines::Direction GetDirection();
66
67     typedef VISU::StreamLines TInterface;
68     VISU_StreamLinesPL* GetStreamLinesPL(){ return myStreamLinesPL;}
69
70   protected:
71     virtual void DoHook();
72     virtual void SetSource(VISU::Prs3d_ptr thePrs3d);
73     virtual void SetSource(VISU::Prs3d_i* thePrs3d);
74     virtual void SetSource();
75
76     VISU_StreamLinesPL* myStreamLinesPL;
77     vtkAppendFilter* myAppendFilter;
78     string mySourceEntry;
79
80   public:
81     static int IsPossible(Result_i* theResult, const char* theMeshName, VISU::Entity theEntity, 
82                           const char* theFieldName, int theIteration, int isMemoryCheck = true);
83     virtual Storable* Create(const char* theMeshName, VISU::Entity theEntity, 
84                              const char* theFieldName, int theIteration);
85
86     virtual void ToStream(std::ostringstream& theStr);
87
88     static const string myComment;
89     virtual const char* GetComment() const;
90     virtual QString GenerateName();
91     
92     virtual Storable* Restore(const Storable::TRestoringMap& theMap);
93     
94     virtual void Update() ;
95
96     virtual VISU_Actor* CreateActor(const Handle(SALOME_InteractiveObject)& theIO = NULL);
97
98     virtual void UpdateActor(VISU_Actor* theActor);
99
100     virtual QString GetSourceEntry() { return QString(mySourceEntry.c_str()); }
101   };
102 }
103 #endif