Salome HOME
Authorize smaller value for growth rate in GUI
[plugins/netgenplugin.git] / src / GUI / NETGENPluginGUI_HypothesisCreator.h
1 //  Copyright (C) 2007-2010  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
23 //  NETGENPlugin GUI: GUI for plugged-in mesher NETGENPlugin
24 //  File   : NETGENPluginGUI_HypothesisCreator.h
25 //  Author : Michael Zorin
26 //  Module : NETGENPlugin
27 //  $Header: 
28 //
29 #ifndef NETGENPLUGINGUI_HypothesisCreator_HeaderFile
30 #define NETGENPLUGINGUI_HypothesisCreator_HeaderFile
31
32 #include "NETGENPluginGUI.h"
33
34 #include <SMESHGUI_Hypotheses.h>
35
36 #include <TopAbs_ShapeEnum.hxx>
37
38 class SMESHGUI_SpinBox;
39 class GeomSelectionTools;
40 class QComboBox;
41 class QCheckBox;
42 class QLineEdit;
43 class QTableWidget;
44
45 typedef struct
46 {
47   double              myMaxSize, myGrowthRate, myNbSegPerEdge, myNbSegPerRadius;
48   int                 myFineness;
49   bool                mySecondOrder, myAllowQuadrangles, myOptimize;
50   QString             myName;
51   QString             myMaxSizeVar, myGrowthRateVar, myNbSegPerEdgeVar, myNbSegPerRadiusVar;
52 } NetgenHypothesisData;
53
54 /*!
55  * \brief Class for creation of NETGEN2D and NETGEN3D hypotheses
56 */
57 class NETGENPLUGIN_GUI_EXPORT NETGENPluginGUI_HypothesisCreator : public SMESHGUI_GenericHypothesisCreator
58 {
59   Q_OBJECT
60
61 public:
62   NETGENPluginGUI_HypothesisCreator( const QString& );
63   virtual ~NETGENPluginGUI_HypothesisCreator();
64
65   virtual bool     checkParams(QString& msg) const;
66   virtual QString  helpPage() const;
67
68 protected:
69   virtual QFrame*  buildFrame    ();
70   virtual void     retrieveParams() const;
71   virtual QString  storeParams   () const;
72   
73   virtual QString  caption() const;
74   virtual QPixmap  icon() const;
75   virtual QString  type() const;
76
77 protected slots:
78   virtual void     onFinenessChanged();
79   virtual void     onAddLocalSizeOnVertex();
80   virtual void     onAddLocalSizeOnEdge();
81   virtual void     onAddLocalSizeOnFace();
82   virtual void     onRemoveLocalSizeOnShape();
83   virtual void     onSetLocalSize(int,int);
84
85 private:
86   bool readParamsFromHypo( NetgenHypothesisData& ) const;
87   bool readParamsFromWidgets( NetgenHypothesisData& ) const;
88   bool storeParamsToHypo( const NetgenHypothesisData& ) const;
89   GeomSelectionTools* getGeomSelectionTools();
90   void addLocalSizeOnShape(TopAbs_ShapeEnum);
91
92 private:
93  QLineEdit*        myName;
94  SMESHGUI_SpinBox* myMaxSize;
95  QCheckBox*        mySecondOrder;
96  QCheckBox*        myOptimize;
97  QComboBox*        myFineness;
98  SMESHGUI_SpinBox* myGrowthRate;
99  SMESHGUI_SpinBox* myNbSegPerEdge;
100  SMESHGUI_SpinBox* myNbSegPerRadius;
101  QCheckBox*        myAllowQuadrangles;
102
103  bool myIs2D;
104
105  QTableWidget* myLocalSizeTable;
106  GeomSelectionTools* myGeomSelectionTools;
107  QMap<QString, QString> myLocalSizeMap;
108 };
109
110 #endif