Salome HOME
DCQ : Merge with Ecole Ete a6.
[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     // inherited methods from SALOMEDS::Driver
91     virtual SALOMEDS::TMPFile* Save(SALOMEDS::SComponent_ptr theComponent,
92                                     const char* theURL,
93                                     bool isMultiFile);
94     virtual SALOMEDS::TMPFile* SaveASCII(SALOMEDS::SComponent_ptr theComponent,
95                                          const char* theURL,
96                                          bool isMultiFile);
97     virtual bool Load(SALOMEDS::SComponent_ptr,
98                       const SALOMEDS::TMPFile &,
99                       const char* theURL,
100                       bool isMultiFile);
101     virtual bool LoadASCII(SALOMEDS::SComponent_ptr,
102                            const SALOMEDS::TMPFile &,
103                            const char* theURL,
104                            bool isMultiFile);
105
106     virtual void Close(SALOMEDS::SComponent_ptr IORSComponent); 
107
108     virtual char* ComponentDataType();
109
110     virtual char* IORToLocalPersistentID(SALOMEDS::SObject_ptr theSObject,
111                                          const char* IORString,
112                                          CORBA::Boolean isMultiFile,
113                                          CORBA::Boolean isASCII);
114     virtual char* LocalPersistentIDToIOR(SALOMEDS::SObject_ptr theSObject,
115                                          const char* aLocalPersistentID,
116                                          CORBA::Boolean isMultiFile,
117                                          CORBA::Boolean isASCII);
118     
119     virtual bool CanPublishInStudy(CORBA::Object_ptr theIOR);
120     virtual SALOMEDS::SObject_ptr PublishInStudy(SALOMEDS::Study_ptr theStudy,
121                                                  SALOMEDS::SObject_ptr theSObject,
122                                                  CORBA::Object_ptr theObject,
123                                                  const char* theName) throw (SALOME::SALOME_Exception);
124
125     CORBA::Boolean CanCopy(SALOMEDS::SObject_ptr theObject);
126     SALOMEDS::TMPFile* CopyFrom(SALOMEDS::SObject_ptr theObject, CORBA::Long& theObjectID);
127     CORBA::Boolean CanPaste(const char* theComponentName, CORBA::Long theObjectID);
128     SALOMEDS::SObject_ptr PasteInto(const SALOMEDS::TMPFile& theStream,
129                                     CORBA::Long theObjectID,
130                                     SALOMEDS::SObject_ptr theObject);
131     /*! SAN & VSR : Test QT_EVENT 
132       >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
133     */
134     virtual void CreateTestView();
135     virtual void ShowTestObject();
136     /*! SAN & VSR : Test QT_EVENT
137       <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
138     */
139   };
140 };
141
142
143 #endif