Salome HOME
Copyrights update 2015.
[plugins/netgenplugin.git] / src / NETGENPlugin / NETGENPlugin_SimpleHypothesis_2D_i.hxx
1 // Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
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 //  NETGENPlugin : C++ implementation
21 // File      : NETGENPlugin_SimpleHypothesis_2D_i.hxx
22 // Author    : Edward AGAPOV
23 // Project   : SALOME
24 //=============================================================================
25 //
26 #ifndef _NETGENPlugin_SimpleHypothesis_2D_i_HXX_
27 #define _NETGENPlugin_SimpleHypothesis_2D_i_HXX_
28
29 #include "NETGENPlugin_Defs.hxx"
30
31 #include <SALOMEconfig.h>
32 #include CORBA_SERVER_HEADER(NETGENPlugin_Algorithm)
33
34 #include "SMESH_Hypothesis_i.hxx"
35
36 class SMESH_Gen;
37 class NETGENPlugin_SimpleHypothesis_2D;
38
39 // Simplified NETGEN parameters (2D case)
40
41 class NETGENPLUGIN_EXPORT  NETGENPlugin_SimpleHypothesis_2D_i:
42   public virtual POA_NETGENPlugin::NETGENPlugin_SimpleHypothesis_2D,
43   public virtual SMESH_Hypothesis_i
44 {
45  public:
46   // Constructor
47   NETGENPlugin_SimpleHypothesis_2D_i (PortableServer::POA_ptr thePOA,
48                                       int                     theStudyId,
49                                       ::SMESH_Gen*            theGenImpl);
50   // Destructor
51   virtual ~NETGENPlugin_SimpleHypothesis_2D_i();
52
53   void SetNumberOfSegments(CORBA::Short nb) throw ( SALOME::SALOME_Exception );
54   CORBA::Short GetNumberOfSegments();
55
56   void SetLocalLength(CORBA::Double segmentLength);
57   CORBA::Double GetLocalLength();
58
59
60   void LengthFromEdges();
61
62   void SetMaxElementArea(CORBA::Double area);
63   CORBA::Double GetMaxElementArea();
64
65   void SetAllowQuadrangles(CORBA::Boolean toAllow);
66   CORBA::Boolean GetAllowQuadrangles();
67
68   // Get implementation
69   ::NETGENPlugin_SimpleHypothesis_2D* GetImpl() const;
70   
71   // Verify whether hypothesis supports given entity type 
72   CORBA::Boolean IsDimSupported( SMESH::Dimension type );
73
74  public:
75   // method intended to remove explicit treatment of Netgen hypotheses from
76   // SMESH_NoteBook to assure backward compatibility after implemeneting
77   // issue 0021308: Remove hard-coded dependency of the external mesh plugins
78   virtual int getParamIndex(const TCollection_AsciiString& method, int nbVars) const;
79
80   // method used to convert variable parameters stored in an old study
81   // into myMethod2VarParams. It should return a method name for an index of
82   // variable parameters. Index is countered from zero
83   virtual std::string getMethodOfParameter(const int paramIndex, int nbVars) const;
84 };
85
86 #endif