Salome HOME
a23739eee8b3e008bb815c9de4f940577f181afb
[plugins/netgenplugin.git] / src / GUI / NETGENPluginGUI_HypothesisCreator.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  NETGENPlugin GUI: GUI for plugged-in mesher NETGENPlugin
23 //  File   : NETGENPluginGUI_HypothesisCreator.h
24 //  Author : Michael Zorin
25 //  Module : NETGENPlugin
26 //  $Header: 
27 //
28 #ifndef NETGENPLUGINGUI_HypothesisCreator_HeaderFile
29 #define NETGENPLUGINGUI_HypothesisCreator_HeaderFile
30
31 #include "NETGENPluginGUI.h"
32
33 #include <SMESHGUI_Hypotheses.h>
34
35 class SalomeApp_DoubleSpinBox;
36 class QComboBox;
37 class QCheckBox;
38 class QLineEdit;
39
40 typedef struct
41 {
42   double              myMaxSize, myGrowthRate, myNbSegPerEdge, myNbSegPerRadius;
43   int                 myFineness;
44   bool                mySecondOrder, myAllowQuadrangles, myOptimize;
45   QString             myName;
46   QString             myMaxSizeVar, myGrowthRateVar, myNbSegPerEdgeVar, myNbSegPerRadiusVar;
47 } NetgenHypothesisData;
48
49 /*!
50  * \brief Class for creation of NETGEN2D and NETGEN3D hypotheses
51 */
52 class NETGENPLUGIN_GUI_EXPORT NETGENPluginGUI_HypothesisCreator : public SMESHGUI_GenericHypothesisCreator
53 {
54   Q_OBJECT
55
56 public:
57   NETGENPluginGUI_HypothesisCreator( const QString& );
58   virtual ~NETGENPluginGUI_HypothesisCreator();
59
60   virtual bool     checkParams(QString& msg) const;
61   virtual QString  helpPage() const;
62
63 protected:
64   virtual QFrame*  buildFrame    ();
65   virtual void     retrieveParams() const;
66   virtual QString  storeParams   () const;
67   
68   virtual QString  caption() const;
69   virtual QPixmap  icon() const;
70   virtual QString  type() const;
71
72 protected slots:
73   virtual void     onFinenessChanged();
74
75 private:
76   bool readParamsFromHypo( NetgenHypothesisData& ) const;
77   bool readParamsFromWidgets( NetgenHypothesisData& ) const;
78   bool storeParamsToHypo( const NetgenHypothesisData& ) const;
79
80 private:
81  QLineEdit*        myName;
82  SalomeApp_DoubleSpinBox* myMaxSize;
83  QCheckBox*        mySecondOrder;
84  QCheckBox*        myOptimize;
85  QComboBox*        myFineness;
86  SalomeApp_DoubleSpinBox* myGrowthRate;
87  SalomeApp_DoubleSpinBox* myNbSegPerEdge;
88  SalomeApp_DoubleSpinBox* myNbSegPerRadius;
89  QCheckBox*        myAllowQuadrangles;
90
91  bool myIs2D;
92 };
93
94 #endif