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