Salome HOME
Merge changes from 'master' branch.
[plugins/netgenplugin.git] / src / GUI / NETGENPluginGUI_HypothesisCreator.h
1 // Copyright (C) 2007-2016  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, myRidgeAngle, myChordalError;
48   int     myFineness;
49   bool    mySecondOrder, myAllowQuadrangles, myOptimize, mySurfaceCurvature, myFuseEdges, myChordalErrorEnabled;
50   QString myName, myMeshSizeFile;
51   QString myMaxSizeVar, myMinSizeVar, myGrowthRateVar, myNbSegPerEdgeVar, myNbSegPerRadiusVar, myRidgeAngleVar, myChordalErrorVar;
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     onChordalErrorEnabled();
80   virtual void     onSurfaceCurvatureChanged();
81   virtual void     onAddLocalSizeOnVertex();
82   virtual void     onAddLocalSizeOnEdge();
83   virtual void     onAddLocalSizeOnFace();
84   virtual void     onAddLocalSizeOnSolid();
85   virtual void     onRemoveLocalSizeOnShape();
86   virtual void     onSetLocalSize(int,int);
87   virtual void     onSetSizeFile();
88
89 private:
90   bool readParamsFromHypo( NetgenHypothesisData& ) const;
91   bool readParamsFromWidgets( NetgenHypothesisData& ) const;
92   bool storeParamsToHypo( const NetgenHypothesisData& ) const;
93   GeomSelectionTools* getGeomSelectionTools();
94   void addLocalSizeOnShape(TopAbs_ShapeEnum);
95
96 private:
97  QLineEdit*        myName;
98  SMESHGUI_SpinBox* myMaxSize;
99  SMESHGUI_SpinBox* myMinSize;
100  QCheckBox*        mySecondOrder;
101  QCheckBox*        myOptimize;
102  QComboBox*        myFineness;
103  SMESHGUI_SpinBox* myGrowthRate;
104  SMESHGUI_SpinBox* myNbSegPerEdge;
105  SMESHGUI_SpinBox* myNbSegPerRadius;
106  SMESHGUI_SpinBox* myRidgeAngle;
107  QCheckBox*        myChordalErrorEnabled;
108  SMESHGUI_SpinBox* myChordalError;
109  QCheckBox*        myAllowQuadrangles;
110  QCheckBox*        mySurfaceCurvature;
111  QCheckBox*        myFuseEdges;
112
113  bool myIs2D;   // 2D or 3D
114  bool myIsONLY; // one dim or several
115
116  QLineEdit*             myMeshSizeFile;
117  QTableWidget*          myLocalSizeTable;
118  GeomSelectionTools*    myGeomSelectionTools;
119  QMap<QString, QString> myLocalSizeMap;
120 };
121
122 #endif