Salome HOME
Imported using TkCVS
[plugins/ghs3dprlplugin.git] / src / gui / GHS3DPRLPluginGUI_HypothesisCreator.h
1 //  GHS3DPRLPlugin GUI: GUI for plugged-in mesher GHS3DPRLPlugin
2 //
3 //  Copyright (C) 2003  CEA
4 //
5 //  This library is free software; you can redistribute it and/or
6 //  modify it under the terms of the GNU Lesser General Public
7 //  License as published by the Free Software Foundation; either
8 //  version 2.1 of the License.
9 //
10 //  This library is distributed in the hope that it will be useful,
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 //  Lesser General Public License for more details.
14 //
15 //  You should have received a copy of the GNU Lesser General Public
16 //  License along with this library; if not, write to the Free Software
17 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18 //
19 //  See http://www.salome-platform.org or email : webmaster.salome@opencascade.org
20 //
21 //
22 //
23 //  File   : GHS3DPRLPluginGUI_HypothesisCreator.h
24 //  Author : Christian VAN WAMBEKE (CEA) (from Hexotic plugin Lioka RAZAFINDRAZAKA)
25 //  Module : GHS3DPRLPlugin
26 //  $Header:
27
28 #ifndef GHS3DPRLPLUGINGUI_HypothesisCreator_HeaderFile
29 #define GHS3DPRLPLUGINGUI_HypothesisCreator_HeaderFile
30
31 #include <SMESHGUI_Hypotheses.h>
32
33 class QtxIntSpinBox;
34 class QtxDblSpinBox;
35 class QCheckBox;
36 class QLineEdit;
37
38 typedef struct
39 {
40   QString  myName;
41   QString  myMEDName;
42   int      myNbPart;
43   bool     myKeepFiles;
44 } GHS3DPRLHypothesisData;
45
46 /*!
47  * \brief Class for creation of GHS3DPRL hypotheses
48 */
49 class GHS3DPRLPluginGUI_HypothesisCreator : public SMESHGUI_GenericHypothesisCreator
50 {
51   Q_OBJECT
52
53 public:
54   GHS3DPRLPluginGUI_HypothesisCreator( const QString& );
55   virtual ~GHS3DPRLPluginGUI_HypothesisCreator();
56
57   virtual bool checkParams() const;
58
59 protected:
60   virtual QFrame*  buildFrame    ();
61   virtual void     retrieveParams() const;
62   virtual QString  storeParams   () const;
63
64   virtual QString  caption() const;
65   virtual QPixmap  icon() const;
66   virtual QString  type() const;
67
68 private:
69   bool readParamsFromHypo( GHS3DPRLHypothesisData& ) const;
70   bool readParamsFromWidgets( GHS3DPRLHypothesisData& ) const;
71   bool storeParamsToHypo( const GHS3DPRLHypothesisData& ) const;
72
73 private:
74  QLineEdit*       myName;
75  QLabel*          myNameText;
76  QLineEdit*       myMEDName;
77  QLabel*          myMEDNameText;
78  QtxIntSpinBox*   myNbPart;
79  QLabel*          myNbPartText;
80  QCheckBox*       myKeepFiles;
81  bool myIs3D;
82 };
83
84 #endif