Salome HOME
[Bug PAL7444] display mesh takes a lot of more memory in 2.1.0 than in 2.0.0.
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_Utils.h
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 SMESHGUI_Utils_HeaderFile
21 #define SMESHGUI_Utils_HeaderFile
22
23 #include "SALOME_InteractiveObject.hxx"
24
25 class QString;
26
27 class QAD_Study;
28 class QAD_StudyFrame;
29 class SALOME_Selection;
30
31 #include "SALOMEconfig.h"
32 #include CORBA_CLIENT_HEADER(SALOMEDS)
33
34
35 namespace SMESH{
36
37   QAD_Study* GetActiveStudy();
38
39   QAD_StudyFrame* GetActiveStudyFrame();
40
41   SALOMEDS::Study_var GetActiveStudyDocument();
42
43   SALOMEDS::SObject_var FindSObject(CORBA::Object_ptr theObject);
44
45
46   void SetName(SALOMEDS::SObject_ptr theSObject, const char* theName);
47   void SetValue(SALOMEDS::SObject_ptr theSObject, const char* theValue);
48
49
50   CORBA::Object_var SObjectToObject(SALOMEDS::SObject_ptr theSObject,
51                                     SALOMEDS::Study_ptr theStudy);
52   
53   CORBA::Object_var SObjectToObject(SALOMEDS::SObject_ptr theSObject);
54   
55
56   template<class TInterface> typename TInterface::_var_type
57     SObjectToInterface(SALOMEDS::SObject_ptr theSObject)
58     {
59       CORBA::Object_var anObj = SObjectToObject(theSObject);
60       if(!CORBA::is_nil(anObj))
61         return TInterface::_narrow(anObj);
62       return TInterface::_nil();
63     }
64   
65
66   CORBA::Object_var IObjectToObject(const Handle(SALOME_InteractiveObject)& theIO);
67
68   template<class TInterface> typename TInterface::_var_type
69     IObjectToInterface(const Handle(SALOME_InteractiveObject)& theIO)
70     {
71       CORBA::Object_var anObj = IObjectToObject(theIO);
72       if(!CORBA::is_nil(anObj))
73         return TInterface::_narrow(anObj);
74       return TInterface::_nil();
75     }
76   
77
78   CORBA::Object_var IORToObject(const char* theIOR);
79
80   template<class TInterface> typename TInterface::_var_type
81     IORToInterface(const char* theIOR)
82     {
83       CORBA::Object_var anObj = IORToObject(theIOR);
84       if(!CORBA::is_nil(anObj))
85         return TInterface::_narrow(anObj);
86       return TInterface::_nil();
87     }
88   
89
90   int GetNameOfSelectedIObjects(SALOME_Selection* theSel, QString& theName);
91
92   SALOMEDS::SObject_var GetMeshOrSubmesh(SALOMEDS::SObject_ptr theSObject);
93
94   void ModifiedMesh(SALOMEDS::SObject_ptr theSObject, bool theIsRight);
95
96 }
97
98
99 #endif