Salome HOME
1a2322d283803e3f45c97ae4b51c25a05d7f101a
[modules/visu.git] / src / VISU_I / VISU_Vectors_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_Vectors_i_HeaderFile
28 #define VISU_Vectors_i_HeaderFile
29
30 #include "VISU_DeformedShape_i.hh"
31
32 class VISU_VectorsPL;
33
34 namespace VISU{
35   class Vectors_i : public virtual POA_VISU::Vectors,
36                     public virtual DeformedShape_i
37   {
38     static int myNbPresent;
39     Vectors_i();
40     Vectors_i(const Vectors_i&);
41   public:
42     Vectors_i(Result_i* theResult, bool theAddToStudy = true);
43     virtual void SameAs(const Vectors_i* theOrigin);
44     virtual ~Vectors_i();
45     virtual void Destroy();
46
47     virtual VISU::VISUType GetType() { return VISU::TVECTORS;};
48
49     virtual void SetLineWidth(CORBA::Double theWidth);
50     virtual CORBA::Double GetLineWidth();
51
52     virtual void SetGlyphType(VISU::Vectors::GlyphType theType);
53     virtual VISU::Vectors::GlyphType GetGlyphType();
54     
55     virtual void SetGlyphPos(VISU::Vectors::GlyphPos thePos);
56     virtual VISU::Vectors::GlyphPos GetGlyphPos();
57
58     typedef VISU::Vectors TInterface;
59     VISU_VectorsPL* GetVectorsPL(){ return myVectorsPL;}
60
61   protected:
62     virtual void DoHook();
63     virtual VISU_PipeLine* GetPipeLine();
64
65     VISU_VectorsPL *myVectorsPL;
66     float myLineWidth;
67
68   public:
69     static int IsPossible(Result_i* theResult, const char* theMeshName, VISU::Entity theEntity, 
70                           const char* theFieldName, int theIteration);
71     virtual Storable* Create(const char* theMeshName, VISU::Entity theEntity, 
72                              const char* theFieldName, int theIteration);
73
74     virtual void ToStream(std::ostringstream& theStr);
75
76     virtual Storable* Restore(const Storable::TRestoringMap& theMap)
77       throw(std::logic_error&);
78     static Storable* Restore(SALOMEDS::SObject_ptr theSObject, 
79                              const string& thePrefix, const Storable::TRestoringMap& theMap)
80       throw(std::logic_error&);
81
82
83     static const string myComment;
84     virtual const char* GetComment() const;
85     virtual QString GenerateName();
86
87     virtual VISU_Actor* CreateActor(const Handle(SALOME_InteractiveObject)& theIO = NULL)
88       throw (std::runtime_error&);
89     virtual void UpdateActor(VISU_Actor* theActor);
90   };
91 }
92 #endif