Salome HOME
PAL16631 (SALOME crash after a mesh computation failed due to lack of memory)
[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                                           const QString& theName,
52                                           QDialog* dlg);
53   ~StdMeshersGUI_LayerDistributionParamWdg();
54
55   SMESH::SMESH_Hypothesis_var GetHypothesis() { return myHyp; }
56
57   QString GetValue() const { return myParamValue; }
58
59   bool IsOk() const { return !myHyp->_is_nil(); }
60
61 private slots:
62   void onCreate(); 
63   void onEdit(); 
64   void onHypTypePopup( int );
65
66 private:
67   void init();
68   void set(SMESH::SMESH_Hypothesis_ptr hyp);
69   
70 private:
71  SMESH::SMESH_Hypothesis_var myHyp;
72  SMESHGUI*                   mySMESHGUI;
73
74  QPushButton*           myCreateButton;
75  QPushButton*           myEditButton;
76  QPopupMenu*            myHypTypePopup;
77  QDialog*               myDlg;
78  QString                myName;
79  QString                myParamValue;
80
81  QStringList            myHypTypes;
82 };
83
84 #endif
85