Salome HOME
Update copyrights 2014.
[plugins/netgenplugin.git] / src / GUI / NETGENPluginGUI_HypothesisCreator.h
1 // Copyright (C) 2007-2014  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, or (at your option) any later version.
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, myMinSize, myGrowthRate, myNbSegPerEdge, myNbSegPerRadius;
48   int                 myFineness;
49   bool                mySecondOrder, myAllowQuadrangles, myOptimize, mySurfaceCurvature, myFuseEdges;
50   QString             myName;
51   QString             myMaxSizeVar, myMinSizeVar, 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     onSurfaceCurvatureChanged();
80   virtual void     onAddLocalSizeOnVertex();
81   virtual void     onAddLocalSizeOnEdge();
82   virtual void     onAddLocalSizeOnFace();
83   virtual void     onRemoveLocalSizeOnShape();
84   virtual void     onSetLocalSize(int,int);
85
86 private:
87   bool readParamsFromHypo( NetgenHypothesisData& ) const;
88   bool readParamsFromWidgets( NetgenHypothesisData& ) const;
89   bool storeParamsToHypo( const NetgenHypothesisData& ) const;
90   GeomSelectionTools* getGeomSelectionTools();
91   void addLocalSizeOnShape(TopAbs_ShapeEnum);
92
93 private:
94  QLineEdit*        myName;
95  SMESHGUI_SpinBox* myMaxSize;
96  SMESHGUI_SpinBox* myMinSize;
97  QCheckBox*        mySecondOrder;
98  QCheckBox*        myOptimize;
99  QComboBox*        myFineness;
100  SMESHGUI_SpinBox* myGrowthRate;
101  SMESHGUI_SpinBox* myNbSegPerEdge;
102  SMESHGUI_SpinBox* myNbSegPerRadius;
103  QCheckBox*        myAllowQuadrangles;
104  QCheckBox*        mySurfaceCurvature;
105  QCheckBox*        myFuseEdges;
106
107  bool myIs2D;
108  bool myIsONLY;
109
110  QTableWidget* myLocalSizeTable;
111  GeomSelectionTools* myGeomSelectionTools;
112  QMap<QString, QString> myLocalSizeMap;
113 };
114
115 #endif