Salome HOME
bug PAL15961 ("Extrusion 3D" algo does not work )
[modules/smesh.git] / src / StdMeshersGUI / StdMeshersGUI_LayerDistributionParamWdg.h
1 //  SMESH StdMeshersGUI
2 //
3 //  Copyright (C) 2003  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 //
23 //
24 //  File   : StdMeshersGUI_LayerDistributionParamWdg.h
25 //  Module : SMESH
26 //  $Header$
27
28 #ifndef StdMeshersGUI_LayerDistributionParamWdg_Header
29 #define StdMeshersGUI_LayerDistributionParamWdg_Header
30
31 #include <qhgroupbox.h>
32 #include <qstringlist.h>
33
34 #include <SALOMEconfig.h>
35 #include CORBA_SERVER_HEADER(SMESH_Hypothesis)
36
37 class SMESHGUI;
38 class QPushButton;
39 class QPopupMenu;
40 class QDialog;
41
42 /*!
43  *  \brief Widget controlling hypothesis parameter that is another hypothesis
44  */
45 class StdMeshersGUI_LayerDistributionParamWdg : public QHGroupBox
46 {
47   Q_OBJECT
48
49 public:
50   StdMeshersGUI_LayerDistributionParamWdg(SMESH::SMESH_Hypothesis_ptr hyp,
51                                           QDialog*                    dlg);
52   ~StdMeshersGUI_LayerDistributionParamWdg();
53
54   SMESH::SMESH_Hypothesis_var GetHypothesis() { return myHyp; }
55
56   QString GetValue() const { return myParamValue; }
57
58   bool IsOk() const { return !myHyp->_is_nil(); }
59
60 private slots:
61   void onCreate(); 
62   void onEdit(); 
63   void onHypTypePopup( int );
64
65 private:
66   void init();
67   void set(SMESH::SMESH_Hypothesis_ptr hyp);
68   
69 private:
70  SMESH::SMESH_Hypothesis_var myHyp;
71  SMESHGUI*                   mySMESHGUI;
72
73  QPushButton*           myCreateButton;
74  QPushButton*           myEditButton;
75  QPopupMenu*            myHypTypePopup;
76  QDialog*               myDlg;
77  QString                myParamValue;
78
79  QStringList            myHypTypes;
80 };
81
82 #endif
83