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