Salome HOME
Update version number: 3.1.0a2
[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 #include <qmap.h>
34 #include <qpair.h>
35
36 #include <SALOMEconfig.h>
37 #include CORBA_SERVER_HEADER(SMESH_BasicHypothesis)
38
39 #include "SMESHGUI_aParameter.h"
40
41 #include <list>
42
43 class QGroupBox;
44 class QLabel;
45 class QLineEdit;
46 class QPushButton;
47 class SMESHGUI;
48 class SMESHGUI_SpinBox;
49
50 //=================================================================================
51 // class    : StdMeshersGUI_CreateHypothesisDlg
52 // purpose  :
53 //=================================================================================
54 class StdMeshersGUI_CreateHypothesisDlg : public QDialog
55
56     Q_OBJECT
57
58 public:
59     StdMeshersGUI_CreateHypothesisDlg (const QString& hypType,
60                                        QWidget*       parent = 0,
61                                        const char*    name = 0,
62                                        bool           modal = FALSE,
63                                        WFlags         fl = 0);
64     ~StdMeshersGUI_CreateHypothesisDlg ();
65
66 protected:
67
68     void CreateDlgLayout(const QString & caption,
69                          const QPixmap & hypIcon,
70                          const QString & hypTypeName);
71
72     virtual void GetParameters( const QString& hypType,
73                                 std::list<SMESHGUI_aParameterPtr>& ) = 0;
74
75     virtual bool SetParameters( SMESH::SMESH_Hypothesis_ptr theHyp,
76                                                   const std::list<SMESHGUI_aParameterPtr> & params ) = 0;
77
78 protected slots:
79     virtual void onValueChanged();
80     
81 private:
82     void UpdateShown( const SMESHGUI_aParameterPtr );
83     void Init() ;
84     void closeEvent( QCloseEvent* e ) ;
85     void enterEvent ( QEvent * ) ;
86
87     SMESHGUI*  mySMESHGUI;
88     QString    myHypType;
89
90     typedef struct 
91     {
92       QWidget* editor;
93       QLabel*  label;
94       int      order;
95       
96     } ParamInfo;
97     
98     typedef QMap< SMESHGUI_aParameterPtr, ParamInfo > ParameterMap;
99     ParameterMap      myParamMap;
100
101     QLabel*           iconLabel;
102     QLabel*           typeLabel;
103     QGroupBox*        GroupC1;
104     QLabel*           TextLabel_NameHypothesis ;
105     QLineEdit*        LineEdit_NameHypothesis ;
106     QLabel*           TextLabel_Length ;
107     QGroupBox*        GroupButtons;
108     QPushButton*      buttonOk;
109     QPushButton*      buttonApply;
110     QPushButton*      buttonCancel;
111
112 private slots:
113
114     void ClickOnOk();
115     void ClickOnCancel();
116     bool ClickOnApply();
117     void DeactivateActiveDialog() ;
118     void ActivateThisDialog() ;
119 };
120
121 #endif // DIALOGBOX_LOCAL_LENGTH_H