Salome HOME
Merge with version on tag OCC-V2_1_0d
[modules/visu.git] / src / ENGINE / VISU_Engine_i.hh
1 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
3 // 
4 //  This library is free software; you can redistribute it and/or 
5 //  modify it under the terms of the GNU Lesser General Public 
6 //  License as published by the Free Software Foundation; either 
7 //  version 2.1 of the License. 
8 // 
9 //  This library is distributed in the hope that it will be useful, 
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 //  Lesser General Public License for more details. 
13 // 
14 //  You should have received a copy of the GNU Lesser General Public 
15 //  License along with this library; if not, write to the Free Software 
16 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
17 // 
18 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
19
20 #ifndef __VISU_ENGINE_I_H__
21 #define __VISU_ENGINE_I_H__
22
23 // IDL headers
24 #include "SALOMEconfig.h"
25 #include CORBA_SERVER_HEADER(VISU_Gen)
26 #include CORBA_SERVER_HEADER(MED)
27 #include CORBA_SERVER_HEADER(SALOMEDS)
28 #include CORBA_SERVER_HEADER(SALOMEDS_Attributes)
29
30 #include "SALOME_Component_i.hxx"
31
32 namespace VISU{
33   class VISU_Gen_i : public virtual POA_VISU::VISU_Gen,
34                      public virtual ::Engines_Component_i
35   {
36     VISU_Gen_var myVisuGen;
37     VISU_Gen_i();
38     VISU_Gen_i(const VISU::VISU_Gen_i &);
39   public:
40     VISU_Gen_i(CORBA::ORB_ptr orb,
41                PortableServer::POA_ptr poa,
42                PortableServer::ObjectId * contId, 
43                const char *instanceName, 
44                const char *interfaceName);
45     virtual ~VISU_Gen_i();
46
47     virtual char* GetID();
48     virtual VISU::VISUType GetType();
49
50     virtual void SetCurrentStudy(SALOMEDS::Study_ptr theStudy);
51     virtual SALOMEDS::Study_ptr GetCurrentStudy();
52
53     virtual ViewManager_ptr GetViewManager();
54
55     virtual SALOMEDS::SObject_ptr ImportTables(const char* theFileName);
56     virtual CORBA::Boolean ExportTableToFile(SALOMEDS::SObject_ptr theTable, const char* theFileName );
57
58     //Create Result
59     virtual Result_ptr ImportFile(const char* theFileName);
60     virtual Result_ptr CopyAndImportFile(const char* theFileName);
61     virtual Result_ptr ImportMed(SALOMEDS::SObject_ptr theMedSObject);
62     virtual Result_ptr ImportMedField(SALOME_MED::FIELD_ptr theField);
63
64     //Create Presentation Of Submeshes
65     virtual Mesh_ptr MeshOnEntity(Result_ptr theResult, const char* theMeshName, VISU::Entity theEntity);
66     virtual Mesh_ptr FamilyMeshOnEntity(Result_ptr theResult, const char* theMeshName, 
67                                         VISU::Entity theEntity, const char* theFamilyName);
68     virtual Mesh_ptr GroupMesh(Result_ptr theResult, const char* theMeshName, const char* theGroupName);
69
70     virtual ScalarMap_ptr ScalarMapOnField(Result_ptr theResult, const char* theMeshName, VISU::Entity theEntity, 
71                                            const char* theFieldName, CORBA::Double theIteration);
72     virtual DeformedShape_ptr DeformedShapeOnField(Result_ptr theResult, const char* theMeshName, VISU::Entity theEntity, 
73                                                    const char* theFieldName, CORBA::Double theIteration);
74     virtual Vectors_ptr VectorsOnField(Result_ptr theResult, const char* theMeshName, VISU::Entity theEntity, 
75                                        const char* theFieldName, CORBA::Double theIteration);
76     virtual IsoSurfaces_ptr IsoSurfacesOnField(Result_ptr theResult, const char* theMeshName, VISU::Entity theEntity, 
77                                                const char* theFieldName, CORBA::Double theIteration);
78     virtual CutPlanes_ptr CutPlanesOnField(Result_ptr theResult, const char* theMeshName, VISU::Entity theEntity, 
79                                            const char* theFieldName, CORBA::Double theIteration);
80     virtual CutLines_ptr CutLinesOnField(Result_ptr theResult, const char* theMeshName, VISU::Entity theEntity, 
81                                          const char* theFieldName, CORBA::Double theIteration);
82     virtual StreamLines_ptr StreamLinesOnField(Result_ptr theResult, const char* theMeshName, VISU::Entity theEntity, 
83                                                const char* theFieldName, CORBA::Double theIteration);
84     //Create Digital Presentation
85     virtual Table_ptr CreateTable(const char* theTableEntry);
86     virtual Curve_ptr CreateCurve(Table_ptr theTable, CORBA::Long theHRow, CORBA::Long theVRow);
87     virtual Container_ptr CreateContainer();
88     virtual Animation_ptr CreateAnimation(View3D_ptr theView3d);
89     
90     virtual void DeleteResult(Result_ptr theResult);
91     virtual void DeletePrs3d(Prs3d_ptr thePrs3d);
92
93     // inherited methods from SALOMEDS::Driver
94     virtual SALOMEDS::TMPFile* Save(SALOMEDS::SComponent_ptr theComponent,
95                                     const char* theURL,
96                                     bool isMultiFile);
97     virtual SALOMEDS::TMPFile* SaveASCII(SALOMEDS::SComponent_ptr theComponent,
98                                          const char* theURL,
99                                          bool isMultiFile);
100     virtual bool Load(SALOMEDS::SComponent_ptr,
101                       const SALOMEDS::TMPFile &,
102                       const char* theURL,
103                       bool isMultiFile);
104     virtual bool LoadASCII(SALOMEDS::SComponent_ptr,
105                            const SALOMEDS::TMPFile &,
106                            const char* theURL,
107                            bool isMultiFile);
108
109     virtual void Close(SALOMEDS::SComponent_ptr IORSComponent); 
110
111     virtual char* ComponentDataType();
112
113     virtual char* IORToLocalPersistentID(SALOMEDS::SObject_ptr theSObject,
114                                          const char* IORString,
115                                          CORBA::Boolean isMultiFile,
116                                          CORBA::Boolean isASCII);
117     virtual char* LocalPersistentIDToIOR(SALOMEDS::SObject_ptr theSObject,
118                                          const char* aLocalPersistentID,
119                                          CORBA::Boolean isMultiFile,
120                                          CORBA::Boolean isASCII);
121     
122     virtual bool CanPublishInStudy(CORBA::Object_ptr theIOR);
123     virtual SALOMEDS::SObject_ptr PublishInStudy(SALOMEDS::Study_ptr theStudy,
124                                                  SALOMEDS::SObject_ptr theSObject,
125                                                  CORBA::Object_ptr theObject,
126                                                  const char* theName) throw (SALOME::SALOME_Exception);
127
128     CORBA::Boolean CanCopy(SALOMEDS::SObject_ptr theObject);
129     SALOMEDS::TMPFile* CopyFrom(SALOMEDS::SObject_ptr theObject, CORBA::Long& theObjectID);
130     CORBA::Boolean CanPaste(const char* theComponentName, CORBA::Long theObjectID);
131     SALOMEDS::SObject_ptr PasteInto(const SALOMEDS::TMPFile& theStream,
132                                     CORBA::Long theObjectID,
133                                     SALOMEDS::SObject_ptr theObject);
134   };
135 };
136
137
138 #endif