Salome HOME
13ea17d5d9df11da306ff0541ddcb4d6e2e06c7a
[plugins/netgenplugin.git] / src / GUI / NETGENPluginGUI_SimpleCreator.h
1 // Copyright (C) 2007-2024  CEA, EDF, 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 // File   : NETGENPluginGUI_SimpleCreator.h
21 // Author : Open CASCADE S.A.S.
22 //
23 #ifndef NETGENPluginGUI_SimpleCreator_H
24 #define NETGENPluginGUI_SimpleCreator_H
25
26
27 #include "NETGENPluginGUI.h"
28 // SMESH includes
29 #include <SMESHGUI_Hypotheses.h>
30
31 class  QCheckBox;
32 class  QLineEdit;
33 class  QRadioButton;
34 class  SalomeApp_IntSpinBox;
35 class  SMESHGUI_SpinBox;
36
37 class NETGENPLUGIN_GUI_EXPORT NETGENPluginGUI_SimpleCreator :
38   public SMESHGUI_GenericHypothesisCreator
39 {
40   Q_OBJECT
41
42 public:
43   NETGENPluginGUI_SimpleCreator(const QString& theHypType);
44   virtual ~NETGENPluginGUI_SimpleCreator();
45
46   virtual bool     checkParams(QString& msg) const;
47   virtual QString  helpPage() const;
48
49 protected:
50   virtual QFrame*  buildFrame();
51   virtual void     retrieveParams() const;
52   virtual QString  storeParams() const;
53
54   virtual QString  caption() const;
55   virtual QPixmap  icon() const;
56   virtual QString  type() const;
57
58 protected slots:
59   void             onValueChanged();
60
61 private:
62   QLineEdit       * myName;
63
64   SalomeApp_IntSpinBox*    myNbSeg;
65   SMESHGUI_SpinBox* myLength;
66   QRadioButton*     myNbSegRadioBut, *myLengthRadioBut;
67
68   QCheckBox*        myLenFromEdgesCheckBox;
69   SMESHGUI_SpinBox* myArea;
70   QCheckBox*        myAllowQuadCheckBox;
71
72   QCheckBox*        myLenFromFacesCheckBox;
73   SMESHGUI_SpinBox* myVolume;
74   
75 };
76
77 #endif // NETGENPluginGUI_SimpleCreator_H