Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[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                                           const QString& theName,
54                                           QDialog* dlg);
55   ~StdMeshersGUI_LayerDistributionParamWdg();
56
57   SMESH::SMESH_Hypothesis_var GetHypothesis() { return myHyp; }
58
59   QString GetValue() const { return myParamValue; }
60
61   bool IsOk() const { return !myHyp->_is_nil(); }
62
63 private slots:
64   void onCreate(); 
65   void onEdit(); 
66   void onHypTypePopup( int );
67
68 private:
69   void init();
70   void set(SMESH::SMESH_Hypothesis_ptr hyp);
71   
72 private:
73  SMESH::SMESH_Hypothesis_var myHyp;
74  SMESHGUI*                   mySMESHGUI;
75
76  QPushButton*           myCreateButton;
77  QPushButton*           myEditButton;
78  QPopupMenu*            myHypTypePopup;
79  QDialog*               myDlg;
80  QString                myName;
81  QString                myParamValue;
82
83  QStringList            myHypTypes;
84 };
85
86 #endif
87