Salome HOME
Implement sweep mesh elements along a path (PAL7218).
[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 class QGroupBox;
40 class QLabel;
41 class QLineEdit;
42 class QPushButton;
43 class SMESHGUI;
44 class SMESHGUI_SpinBox;
45
46 //=================================================================================
47 // class    : StdMeshersGUI_CreateHypothesisDlg
48 // purpose  :
49 //=================================================================================
50 class StdMeshersGUI_CreateHypothesisDlg : public QDialog
51
52     Q_OBJECT
53
54 public:
55     StdMeshersGUI_CreateHypothesisDlg (const QString& hypType,
56                                        QWidget*       parent = 0,
57                                        const char*    name = 0,
58                                        bool           modal = FALSE,
59                                        WFlags         fl = 0);
60     ~StdMeshersGUI_CreateHypothesisDlg ();
61
62 protected:
63
64     void CreateDlgLayout(const QString & caption,
65                          const QPixmap & hypIcon,
66                          const QString & hypTypeName);
67
68     virtual void GetParameters(const QString & hypType,
69                                std::list<SMESHGUI_aParameterPtr> & params) = 0;
70
71     virtual bool SetParameters(SMESH::SMESH_Hypothesis_ptr theHyp,
72                                const std::list<SMESHGUI_aParameterPtr> & params) = 0;
73
74 private:
75
76     void Init() ;
77     void closeEvent( QCloseEvent* e ) ;
78     void enterEvent ( QEvent * ) ;
79
80     SMESHGUI*  mySMESHGUI ;
81     QString    myHypType ;
82
83     std::list<QWidget*>               mySpinList;
84     std::list<SMESHGUI_aParameterPtr> myParamList;
85
86     QLabel*           iconLabel;
87     QLabel*           typeLabel;
88     QGroupBox*        GroupC1;
89     QLabel*           TextLabel_NameHypothesis ;
90     QLineEdit*        LineEdit_NameHypothesis ;
91     QLabel*           TextLabel_Length ;
92     QGroupBox*        GroupButtons;
93     QPushButton*      buttonOk;
94     QPushButton*      buttonApply;
95     QPushButton*      buttonCancel;
96
97 private slots:
98
99     void ClickOnOk();
100     void ClickOnCancel();
101     bool ClickOnApply();
102     void DeactivateActiveDialog() ;
103     void ActivateThisDialog() ;
104 };
105
106 #endif // DIALOGBOX_LOCAL_LENGTH_H