]> SALOME platform Git repositories - modules/visu.git/blob - src/VISU_I/VISU_Gen_i.hh
Salome HOME
Compiler errors on gcc 3.4.1 corrected:
[modules/visu.git] / src / VISU_I / VISU_Gen_i.hh
1 //  Copyright (C) 2003  CEA/DEN, EDF R&D
2 //
3 //
4 //
5 //  File   : VISU_GEN_i.h file
6 //  Author : Alexey Petrov
7 //  Module : VISU
8 //  $Header: 
9
10 #ifndef __VISU_GEN_I_H__
11 #define __VISU_GEN_I_H__
12
13 #include "VISUConfig.hh"
14
15 #include "SALOME_Component_i.hxx"
16 #include "SALOME_NamingService.hxx"
17
18 namespace VISU{
19   class Result_i;
20   class VISU_Gen_i : public virtual POA_VISU::VISU_Gen,
21                      public virtual ::Engines_Component_i,
22                      public virtual Base_i
23   {
24     SALOMEDS::Study_var myStudyDocument;
25     VISU_Gen_i();
26     VISU_Gen_i(const VISU::VISU_Gen_i &);
27   public:
28     VISU_Gen_i(CORBA::ORB_ptr theORB, 
29                PortableServer::POA_ptr thePOA, 
30                SALOME_NamingService* theNamingService, 
31                QMutex* theMutex);
32     virtual ~VISU_Gen_i();
33
34     virtual char* GetID();
35     virtual VISU::VISUType GetType() { return VISU::TVISUGEN;};
36
37     virtual void SetCurrentStudy(SALOMEDS::Study_ptr theStudy);
38     virtual SALOMEDS::Study_ptr GetCurrentStudy();
39
40     virtual ViewManager_ptr GetViewManager();
41
42     virtual SALOMEDS::SObject_ptr ImportTables(const char* theFileName);
43     virtual CORBA::Boolean ExportTableToFile(SALOMEDS::SObject_ptr theTable, const char* theFileName );
44
45     //Create Result
46     virtual Result_ptr ImportFile(const char* theFileName);
47     virtual Result_ptr CopyAndImportFile(const char* theFileName);
48     virtual Result_ptr ImportMed(SALOMEDS::SObject_ptr theMedSObject);
49     virtual Result_ptr ImportMedField(SALOME_MED::FIELD_ptr theField);
50
51     //Create Presentation Of Submeshes
52     virtual Mesh_ptr MeshOnEntity(Result_ptr theResult, const char* theMeshName, VISU::Entity theEntity);
53     virtual Mesh_ptr FamilyMeshOnEntity(Result_ptr theResult, const char* theMeshName, 
54                                         VISU::Entity theEntity, const char* theFamilyName);
55     virtual Mesh_ptr GroupMesh(Result_ptr theResult, const char* theMeshName, const char* theGroupName);
56
57     //Create 3D collored Presentation Of Different Types
58     template<typename TPrs3d_i> typename TPrs3d_i::TInterface::_var_type 
59     Prs3dOnField(Result_ptr theResult, const char* theMeshName, VISU::Entity theEntity, 
60                const char* theFieldName, CORBA::Double theIteration, bool theAddToStudy = true)
61     {
62       typedef typename TPrs3d_i::TInterface TPrs3d;
63       typename TPrs3d::_var_type aPrs3d;
64       if(myStudyDocument->GetProperties()->IsLocked()) return TPrs3d::_nil();
65       Mutex mt(myMutex);
66       if(Result_i* pResult = dynamic_cast<Result_i*>(GetServant(theResult).in())){
67         if(TPrs3d_i::IsPossible(pResult,theMeshName,theEntity,theFieldName,int(theIteration))){
68           TPrs3d_i* aPresent = new TPrs3d_i(pResult,theAddToStudy);
69           if(aPresent->Create(theMeshName,theEntity,theFieldName,int(theIteration)) != NULL)
70             return aPresent->_this();
71           else
72             aPresent->_remove_ref();
73         }
74       }
75       return TPrs3d::_nil();
76     }
77
78     virtual ScalarMap_ptr ScalarMapOnField(Result_ptr theResult, const char* theMeshName, VISU::Entity theEntity, 
79                                            const char* theFieldName, CORBA::Double theIteration);
80     virtual DeformedShape_ptr DeformedShapeOnField(Result_ptr theResult, const char* theMeshName, VISU::Entity theEntity, 
81                                                    const char* theFieldName, CORBA::Double theIteration);
82     virtual Vectors_ptr VectorsOnField(Result_ptr theResult, const char* theMeshName, VISU::Entity theEntity, 
83                                        const char* theFieldName, CORBA::Double theIteration);
84     virtual IsoSurfaces_ptr IsoSurfacesOnField(Result_ptr theResult, const char* theMeshName, VISU::Entity theEntity, 
85                                                const char* theFieldName, CORBA::Double theIteration);
86     virtual CutPlanes_ptr CutPlanesOnField(Result_ptr theResult, const char* theMeshName, VISU::Entity theEntity, 
87                                            const char* theFieldName, CORBA::Double theIteration);
88     virtual CutLines_ptr CutLinesOnField(Result_ptr theResult, const char* theMeshName, VISU::Entity theEntity, 
89                                          const char* theFieldName, CORBA::Double theIteration);
90     virtual StreamLines_ptr StreamLinesOnField(Result_ptr theResult, const char* theMeshName, VISU::Entity theEntity, 
91                                                const char* theFieldName, CORBA::Double theIteration);
92     //Create Digital Presentation
93     virtual Table_ptr CreateTable(const char* theTableEntry);
94     virtual Curve_ptr CreateCurve(Table_ptr theTable, CORBA::Long theHRow, CORBA::Long theVRow);
95     virtual Container_ptr CreateContainer();
96     virtual Animation_ptr CreateAnimation(View3D_ptr theView3d);
97     
98     virtual void DeleteResult(Result_ptr theResult) {} // apo
99     virtual void DeletePrs3d(Prs3d_ptr thePrs3d) {} // apo
100
101     // inherited methods from Engines::Component
102     virtual 
103     Engines::TMPFile* 
104     DumpPython(CORBA::Object_ptr theStudy,
105                CORBA::Boolean theIsPublished,
106                CORBA::Boolean& theIsValidScript);
107     // inherited methods from SALOMEDS::Driver
108     virtual SALOMEDS::TMPFile* Save(SALOMEDS::SComponent_ptr theComponent,
109                                     const char* theURL,
110                                     bool isMultiFile);
111     virtual SALOMEDS::TMPFile* SaveASCII(SALOMEDS::SComponent_ptr theComponent,
112                                          const char* theURL,
113                                          bool isMultiFile);
114     virtual bool Load(SALOMEDS::SComponent_ptr,
115                       const SALOMEDS::TMPFile &,
116                       const char* theURL,
117                       bool isMultiFile);
118     virtual bool LoadASCII(SALOMEDS::SComponent_ptr,
119                            const SALOMEDS::TMPFile &,
120                            const char* theURL,
121                            bool isMultiFile);
122
123     virtual void Close(SALOMEDS::SComponent_ptr IORSComponent); 
124
125     virtual char* ComponentDataType();
126
127     virtual char* IORToLocalPersistentID(SALOMEDS::SObject_ptr theSObject,
128                                          const char* IORString,
129                                          CORBA::Boolean isMultiFile,
130                                          CORBA::Boolean isASCII);
131     virtual char* LocalPersistentIDToIOR(SALOMEDS::SObject_ptr theSObject,
132                                          const char* aLocalPersistentID,
133                                          CORBA::Boolean isMultiFile,
134                                          CORBA::Boolean isASCII);
135     
136     virtual bool CanPublishInStudy(CORBA::Object_ptr theIOR);
137     virtual SALOMEDS::SObject_ptr PublishInStudy(SALOMEDS::Study_ptr theStudy,
138                                                  SALOMEDS::SObject_ptr theSObject,
139                                                  CORBA::Object_ptr theObject,
140                                                  const char* theName) throw (SALOME::SALOME_Exception);
141
142     CORBA::Boolean CanCopy(SALOMEDS::SObject_ptr theObject);
143     SALOMEDS::TMPFile* CopyFrom(SALOMEDS::SObject_ptr theObject, CORBA::Long& theObjectID);
144     CORBA::Boolean CanPaste(const char* theComponentName, CORBA::Long theObjectID);
145     SALOMEDS::SObject_ptr PasteInto(const SALOMEDS::TMPFile& theStream,
146                                     CORBA::Long theObjectID,
147                                     SALOMEDS::SObject_ptr theObject);
148   };
149 }
150 #endif