Salome HOME
Merge from OCC_development_generic_2006
[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 CreateResult(const char* theFileName);
61     virtual Result_ptr CopyAndImportFile(const char* theFileName);
62     virtual Result_ptr ImportMed(SALOMEDS::SObject_ptr theMedSObject);
63     virtual Result_ptr ImportMedField(SALOME_MED::FIELD_ptr theField);
64
65     //Create Presentation Of Submeshes
66     virtual Mesh_ptr MeshOnEntity(Result_ptr theResult, const char* theMeshName, VISU::Entity theEntity);
67     virtual Mesh_ptr FamilyMeshOnEntity(Result_ptr theResult, const char* theMeshName, 
68                                         VISU::Entity theEntity, const char* theFamilyName);
69     virtual Mesh_ptr GroupMesh(Result_ptr theResult, const char* theMeshName, const char* theGroupName);
70
71     virtual ScalarMap_ptr ScalarMapOnField(Result_ptr theResult, const char* theMeshName, VISU::Entity theEntity, 
72                                            const char* theFieldName, CORBA::Double theIteration);
73     virtual GaussPoints_ptr GaussPointsOnField(Result_ptr theResult, const char* theMeshName, VISU::Entity theEntity, 
74                                                const char* theFieldName, CORBA::Double theIteration);
75     virtual DeformedShape_ptr DeformedShapeOnField(Result_ptr theResult, const char* theMeshName, VISU::Entity theEntity, 
76                                                    const char* theFieldName, CORBA::Double theIteration);
77     virtual Vectors_ptr VectorsOnField(Result_ptr theResult, const char* theMeshName, VISU::Entity theEntity, 
78                                        const char* theFieldName, CORBA::Double theIteration);
79     virtual IsoSurfaces_ptr IsoSurfacesOnField(Result_ptr theResult, const char* theMeshName, VISU::Entity theEntity, 
80                                                const char* theFieldName, CORBA::Double theIteration);
81     virtual CutPlanes_ptr CutPlanesOnField(Result_ptr theResult, const char* theMeshName, VISU::Entity theEntity, 
82                                            const char* theFieldName, CORBA::Double theIteration);
83     virtual CutLines_ptr CutLinesOnField(Result_ptr theResult, const char* theMeshName, VISU::Entity theEntity, 
84                                          const char* theFieldName, CORBA::Double theIteration);
85     virtual StreamLines_ptr StreamLinesOnField(Result_ptr theResult, const char* theMeshName, VISU::Entity theEntity, 
86                                                const char* theFieldName, CORBA::Double theIteration);
87     virtual Plot3D_ptr Plot3DOnField(Result_ptr theResult, const char* theMeshName, VISU::Entity theEntity, 
88                                      const char* theFieldName, CORBA::Double theIteration);
89     //Create Digital Presentation
90     virtual Table_ptr CreateTable(const char* theTableEntry);
91     virtual Curve_ptr CreateCurve(Table_ptr theTable, CORBA::Long theHRow, CORBA::Long theVRow);
92     virtual Container_ptr CreateContainer();
93     virtual Animation_ptr CreateAnimation(View3D_ptr theView3d);
94     
95     virtual void DeleteResult(Result_ptr theResult);
96     virtual void DeletePrs3d(Prs3d_ptr thePrs3d);
97
98     // inherited methods from SALOMEDS::Driver
99     virtual SALOMEDS::TMPFile* Save(SALOMEDS::SComponent_ptr theComponent,
100                                     const char* theURL,
101                                     bool isMultiFile);
102     virtual SALOMEDS::TMPFile* SaveASCII(SALOMEDS::SComponent_ptr theComponent,
103                                          const char* theURL,
104                                          bool isMultiFile);
105     virtual bool Load(SALOMEDS::SComponent_ptr,
106                       const SALOMEDS::TMPFile &,
107                       const char* theURL,
108                       bool isMultiFile);
109     virtual bool LoadASCII(SALOMEDS::SComponent_ptr,
110                            const SALOMEDS::TMPFile &,
111                            const char* theURL,
112                            bool isMultiFile);
113
114     virtual void Close(SALOMEDS::SComponent_ptr IORSComponent); 
115
116     virtual char* ComponentDataType();
117
118     virtual char* IORToLocalPersistentID(SALOMEDS::SObject_ptr theSObject,
119                                          const char* IORString,
120                                          CORBA::Boolean isMultiFile,
121                                          CORBA::Boolean isASCII);
122     virtual char* LocalPersistentIDToIOR(SALOMEDS::SObject_ptr theSObject,
123                                          const char* aLocalPersistentID,
124                                          CORBA::Boolean isMultiFile,
125                                          CORBA::Boolean isASCII);
126     
127     virtual bool CanPublishInStudy(CORBA::Object_ptr theIOR);
128     virtual SALOMEDS::SObject_ptr PublishInStudy(SALOMEDS::Study_ptr theStudy,
129                                                  SALOMEDS::SObject_ptr theSObject,
130                                                  CORBA::Object_ptr theObject,
131                                                  const char* theName) throw (SALOME::SALOME_Exception);
132
133     CORBA::Boolean CanCopy(SALOMEDS::SObject_ptr theObject);
134     SALOMEDS::TMPFile* CopyFrom(SALOMEDS::SObject_ptr theObject, CORBA::Long& theObjectID);
135     CORBA::Boolean CanPaste(const char* theComponentName, CORBA::Long theObjectID);
136     SALOMEDS::SObject_ptr PasteInto(const SALOMEDS::TMPFile& theStream,
137                                     CORBA::Long theObjectID,
138                                     SALOMEDS::SObject_ptr theObject);
139
140     // inherited methods from Engines::Component
141     virtual Engines::TMPFile* DumpPython(CORBA::Object_ptr theStudy,
142                                          CORBA::Boolean theIsPublished,
143                                          CORBA::Boolean& theIsValidScript);   
144
145   };
146 };
147
148
149 #endif