Salome HOME
Merge branch V7_3_1_BR
[plugins/ghs3dprlplugin.git] / src / GHS3DPRLPlugin / GHS3DPRLPlugin_Hypothesis_i.cxx
1 // Copyright (C) 2007-2014  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 // ---
21 // File   : GHS3DPRLPlugin_Hypothesis_i.cxx
22 // Author : Christian VAN WAMBEKE (CEA) (from Hexotic plugin Lioka RAZAFINDRAZAKA)
23 // ---
24 //
25 #include "GHS3DPRLPlugin_Hypothesis_i.hxx"
26 #include "SMESH_Gen.hxx"
27 #include "SMESH_PythonDump.hxx"
28
29 #include "Utils_CorbaException.hxx"
30 #include "utilities.h"
31
32 //=============================================================================
33 /*!
34  *  GHS3DPRLPlugin_Hypothesis_i::GHS3DPRLPlugin_Hypothesis_i
35  *
36  *  Constructor
37  */
38 //=============================================================================
39 GHS3DPRLPlugin_Hypothesis_i::
40 GHS3DPRLPlugin_Hypothesis_i (PortableServer::POA_ptr thePOA,
41                              int                     theStudyId,
42                              ::SMESH_Gen*            theGenImpl)
43   : SALOME::GenericObj_i( thePOA ),
44     SMESH_Hypothesis_i( thePOA )
45 {
46   MESSAGE( "GHS3DPRLPlugin_Hypothesis_i::GHS3DPRLPlugin_Hypothesis_i" );
47   myBaseImpl = new ::GHS3DPRLPlugin_Hypothesis (theGenImpl->GetANewId(),
48                                                 theStudyId,
49                                                 theGenImpl);
50 }
51
52 //=============================================================================
53 /*!
54  *  GHS3DPRLPlugin_Hypothesis_i::~GHS3DPRLPlugin_Hypothesis_i
55  *
56  *  Destructor
57  */
58 //=============================================================================
59 GHS3DPRLPlugin_Hypothesis_i::~GHS3DPRLPlugin_Hypothesis_i()
60 {
61   MESSAGE( "GHS3DPRLPlugin_Hypothesis_i::~GHS3DPRLPlugin_Hypothesis_i" );
62 }
63
64 //=============================================================================
65 /*!
66  *  GHS3DPRLPlugin_Hypothesis_i::SetMEDName
67  *  GHS3DPRLPlugin_Hypothesis_i::SetNbPart
68  *  GHS3DPRLPlugin_Hypothesis_i::SetKeepFiles
69  *  GHS3DPRLPlugin_Hypothesis_i::SetBackground
70  *  GHS3DPRLPlugin_Hypothesis_i::SetToMeshHoles
71  */
72 //=============================================================================
73
74 void GHS3DPRLPlugin_Hypothesis_i::SetMEDName (const char *theValue)
75 {
76   MESSAGE("GHS3DPRLPlugin_Hypothesis_i::SetMEDName");
77   ASSERT(myBaseImpl);
78   this->GetImpl()->SetMEDName(theValue);
79   SMESH::TPythonDump() << _this() << ".SetMEDName( " << theValue << " )";
80 }
81
82 void GHS3DPRLPlugin_Hypothesis_i::SetNbPart (CORBA::Long theValue)
83 {
84   MESSAGE("GHS3DPRLPlugin_Hypothesis_i::SetNbPart");
85   ASSERT(myBaseImpl);
86   this->GetImpl()->SetNbPart(theValue);
87   SMESH::TPythonDump() << _this() << ".SetNbPart( " << theValue << " )";
88 }
89
90 void GHS3DPRLPlugin_Hypothesis_i::SetKeepFiles (CORBA::Boolean theValue)
91 {
92   MESSAGE("GHS3DPRLPlugin_Hypothesis_i::SetKeepFiles");
93   ASSERT(myBaseImpl);
94   this->GetImpl()->SetKeepFiles(theValue);
95   SMESH::TPythonDump() << _this() << ".SetKeepFiles( " << theValue << " )";
96 }
97
98 void GHS3DPRLPlugin_Hypothesis_i::SetBackground (CORBA::Boolean theValue)
99 {
100   MESSAGE("GHS3DPRLPlugin_Hypothesis_i::SetBackground");
101   ASSERT(myBaseImpl);
102   this->GetImpl()->SetBackground(theValue);
103   SMESH::TPythonDump() << _this() << ".SetBackground( " << theValue << " )";
104 }
105
106 void GHS3DPRLPlugin_Hypothesis_i::SetToMeshHoles (CORBA::Boolean theValue)
107 {
108   MESSAGE("GHS3DPRLPlugin_Hypothesis_i::SetToMeshHoles");
109   ASSERT(myBaseImpl);
110   this->GetImpl()->SetToMeshHoles(theValue);
111   SMESH::TPythonDump() << _this() << ".SetToMeshHoles( " << theValue << " )";
112 }
113
114 //=============================================================================
115 /*!
116  *  GHS3DPRLPlugin_Hypothesis_i::GetMEDName
117  *  GHS3DPRLPlugin_Hypothesis_i::GetNbPart
118  *  GHS3DPRLPlugin_Hypothesis_i::GetKeepFiles
119  *  GHS3DPRLPlugin_Hypothesis_i::GetBackground
120  *  GHS3DPRLPlugin_Hypothesis_i::GetToMeshHoles
121  */
122 //=============================================================================
123
124 char * GHS3DPRLPlugin_Hypothesis_i::GetMEDName()
125 {
126   MESSAGE("GHS3DPRLPlugin_Hypothesis_i::GetMEDName");
127   ASSERT(myBaseImpl);
128     CORBA::String_var c_s =
129     CORBA::string_dup(this->GetImpl()->GetMEDName().c_str());
130   return c_s._retn();
131 }
132
133 CORBA::Long GHS3DPRLPlugin_Hypothesis_i::GetNbPart()
134 {
135   MESSAGE("GHS3DPRLPlugin_Hypothesis_i::GetNbPart");
136   ASSERT(myBaseImpl);
137   return this->GetImpl()->GetNbPart();
138 }
139
140 CORBA::Boolean GHS3DPRLPlugin_Hypothesis_i::GetKeepFiles()
141 {
142   MESSAGE("GHS3DPRLPlugin_Hypothesis_i::GetKeepFiles");
143   ASSERT(myBaseImpl);
144   return this->GetImpl()->GetKeepFiles();
145 }
146
147 CORBA::Boolean GHS3DPRLPlugin_Hypothesis_i::GetBackground()
148 {
149   MESSAGE("GHS3DPRLPlugin_Hypothesis_i::GetBackground");
150   ASSERT(myBaseImpl);
151   return this->GetImpl()->GetBackground();
152 }
153
154 CORBA::Boolean GHS3DPRLPlugin_Hypothesis_i::GetToMeshHoles()
155 {
156   MESSAGE("GHS3DPRLPlugin_Hypothesis_i::GetToMeshHoles");
157   ASSERT(myBaseImpl);
158   return this->GetImpl()->GetToMeshHoles();
159 }
160
161 //=============================================================================
162 /*!
163  *  GHS3DPRLPlugin_Hypothesis_i::GetImpl
164  *
165  *  Get implementation
166  */
167 //=============================================================================
168 ::GHS3DPRLPlugin_Hypothesis* GHS3DPRLPlugin_Hypothesis_i::GetImpl()
169 {
170   MESSAGE("GHS3DPRLPlugin_Hypothesis_i::GetImpl");
171   return (::GHS3DPRLPlugin_Hypothesis*)myBaseImpl;
172 }
173
174 //================================================================================
175 /*!
176  * \brief Verify whether hypothesis supports given entity type
177  * \param type - dimension (see SMESH::Dimension enumeration)
178  * \retval CORBA::Boolean - TRUE if dimension is supported, FALSE otherwise
179  *
180  * Verify whether hypothesis supports given entity type (see SMESH::Dimension enumeration)
181  */
182 //================================================================================
183 CORBA::Boolean GHS3DPRLPlugin_Hypothesis_i::IsDimSupported( SMESH::Dimension type )
184 {
185   return type == SMESH::DIM_3D;
186 }