Salome HOME
Merging with WPdev
[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 "SMESH_StdMeshersGUI.hxx"
32
33 #include <qhgroupbox.h>
34 #include <qstringlist.h>
35
36 #include <SALOMEconfig.h>
37 #include CORBA_SERVER_HEADER(SMESH_Hypothesis)
38
39 class SMESHGUI;
40 class QPushButton;
41 class QPopupMenu;
42 class QDialog;
43
44 /*!
45  *  \brief Widget controlling hypothesis parameter that is another hypothesis
46  */
47 class STDMESHERSGUI_EXPORT StdMeshersGUI_LayerDistributionParamWdg : public QHGroupBox
48 {
49   Q_OBJECT
50
51 public:
52   StdMeshersGUI_LayerDistributionParamWdg(SMESH::SMESH_Hypothesis_ptr hyp,
53                                           QDialog*                    dlg);
54   ~StdMeshersGUI_LayerDistributionParamWdg();
55
56   SMESH::SMESH_Hypothesis_var GetHypothesis() { return myHyp; }
57
58   QString GetValue() const { return myParamValue; }
59
60   bool IsOk() const { return !myHyp->_is_nil(); }
61
62 private slots:
63   void onCreate(); 
64   void onEdit(); 
65   void onHypTypePopup( int );
66
67 private:
68   void init();
69   void set(SMESH::SMESH_Hypothesis_ptr hyp);
70   
71 private:
72  SMESH::SMESH_Hypothesis_var myHyp;
73  SMESHGUI*                   mySMESHGUI;
74
75  QPushButton*           myCreateButton;
76  QPushButton*           myEditButton;
77  QPopupMenu*            myHypTypePopup;
78  QDialog*               myDlg;
79  QString                myParamValue;
80
81  QStringList            myHypTypes;
82 };
83
84 #endif
85