Salome HOME
Fixes for compilation errors.
[modules/smesh.git] / src / StdMeshersGUI / StdMeshersGUI_CreateHypothesisDlg.h
1 //  SMESH SMESHGUI : GUI for SMESH component
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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : StdMeshersGUI_CreateHypothesisDlg.h
25 //  Module : SMESH
26 //  $Header$
27
28 #ifndef DIALOGBOX_CreateHypothesisDlg_H
29 #define DIALOGBOX_CreateHypothesisDlg_H
30
31 // QT Includes
32 #include <qdialog.h>
33
34 #include <SALOMEconfig.h>
35 #include CORBA_SERVER_HEADER(SMESH_BasicHypothesis)
36
37 #include "SMESHGUI_aParameter.h"
38
39 #include <list>
40
41 class QGroupBox;
42 class QLabel;
43 class QLineEdit;
44 class QPushButton;
45 class SMESHGUI;
46 class SMESHGUI_SpinBox;
47
48 //=================================================================================
49 // class    : StdMeshersGUI_CreateHypothesisDlg
50 // purpose  :
51 //=================================================================================
52 class StdMeshersGUI_CreateHypothesisDlg : public QDialog
53
54     Q_OBJECT
55
56 public:
57     StdMeshersGUI_CreateHypothesisDlg (const QString& hypType,
58                                        QWidget*       parent = 0,
59                                        const char*    name = 0,
60                                        bool           modal = FALSE,
61                                        WFlags         fl = 0);
62     ~StdMeshersGUI_CreateHypothesisDlg ();
63
64 protected:
65
66     void CreateDlgLayout(const QString & caption,
67                          const QPixmap & hypIcon,
68                          const QString & hypTypeName);
69
70     virtual void GetParameters(const QString & hypType,
71                                std::list<SMESHGUI_aParameterPtr> & params) = 0;
72
73     virtual bool SetParameters(SMESH::SMESH_Hypothesis_ptr theHyp,
74                                const std::list<SMESHGUI_aParameterPtr> & params) = 0;
75
76 private:
77
78     void Init() ;
79     void closeEvent( QCloseEvent* e ) ;
80     void enterEvent ( QEvent * ) ;
81
82     SMESHGUI*  mySMESHGUI ;
83     QString    myHypType ;
84
85     std::list<QWidget*>               mySpinList;
86     std::list<SMESHGUI_aParameterPtr> myParamList;
87
88     QLabel*           iconLabel;
89     QLabel*           typeLabel;
90     QGroupBox*        GroupC1;
91     QLabel*           TextLabel_NameHypothesis ;
92     QLineEdit*        LineEdit_NameHypothesis ;
93     QLabel*           TextLabel_Length ;
94     QGroupBox*        GroupButtons;
95     QPushButton*      buttonOk;
96     QPushButton*      buttonApply;
97     QPushButton*      buttonCancel;
98
99 private slots:
100
101     void ClickOnOk();
102     void ClickOnCancel();
103     bool ClickOnApply();
104     void DeactivateActiveDialog() ;
105     void ActivateThisDialog() ;
106 };
107
108 #endif // DIALOGBOX_LOCAL_LENGTH_H