]> SALOME platform Git repositories - modules/visu.git/blob - src/VISU_I/VISU_StreamLines_i.hh
Salome HOME
This commit was generated by cvs2git to track changes on a CVS vendor
[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
34 namespace VISU{
35   class StreamLines_i : public virtual POA_VISU::StreamLines,
36                         public virtual DeformedShape_i
37   {
38     static int myNbPresent;
39     StreamLines_i();
40     StreamLines_i(const StreamLines_i&);
41   public:
42     StreamLines_i(Result_i* theResult, bool theAddToStudy = true);
43     virtual void SameAs(const StreamLines_i* theOriginal);
44     virtual ~StreamLines_i();
45     virtual void Destroy();
46
47     virtual VISU::VISUType GetType() { return VISU::TSTREAMLINES;}
48
49     virtual void SetDirection(VISU::StreamLines::Direction theDirection);
50     virtual VISU::StreamLines::Direction GetDirection();
51
52     virtual void SetStepLength(CORBA::Double theStep);
53     virtual CORBA::Double GetStepLength();
54
55     virtual void SetPropagationTime(CORBA::Double theTime);
56     virtual CORBA::Double GetPropagationTime();
57
58     virtual void SetIntegrationStep(CORBA::Double theStep);
59     virtual CORBA::Double GetIntegrationStep();
60
61     virtual void SetUsedPoints(CORBA::Double thePercents);
62     virtual CORBA::Double GetUsedPoints();
63
64     virtual void SetSource(VISU::Prs3d_ptr thePrs3d);
65     virtual VISU::Prs3d_ptr GetSource();
66
67     typedef VISU::StreamLines TInterface;
68     VISU_StreamLinesPL* GetStreamLinesPL(){ return myStreamLinesPL;}
69
70   protected:
71     virtual void DoHook();
72
73     VISU_StreamLinesPL* myStreamLinesPL;
74     string mySourceEntry;
75
76   public:
77     static int IsPossible(Result_i* theResult, const char* theMeshName, VISU::Entity theEntity, 
78                           const char* theFieldName, int theIteration);
79     virtual Storable* Create(const char* theMeshName, VISU::Entity theEntity, 
80                              const char* theFieldName, int theIteration);
81
82     virtual void ToStream(std::ostringstream& theStr);
83
84     virtual Storable* Restore(const Storable::TRestoringMap& theMap)
85       throw(std::logic_error&);
86     static Storable* Restore(SALOMEDS::SObject_ptr theSObject, 
87                              const string& thePrefix, const Storable::TRestoringMap& theMap)
88       throw(std::logic_error&);
89     
90     static const string myComment;
91     virtual const char* GetComment() const;
92     virtual QString GenerateName();
93     
94     virtual float GetMinIntegrationStep();
95     virtual float GetMaxIntegrationStep();
96     virtual float GetBasePropagationTime();
97
98     virtual QString GetSourceEntry() { return QString(mySourceEntry.c_str()); }
99   };
100 }
101 #endif