Salome HOME
Debug algorithms and hypotheses assignment
[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 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>& ) = 0;
72
73     virtual bool SetParameters( SMESH::SMESH_Hypothesis_ptr theHyp,
74                                                   const std::list<SMESHGUI_aParameterPtr> & params ) = 0;
75
76 protected slots:
77     virtual void onValueChanged();
78     
79 private:
80     void UpdateShown( const SMESHGUI_aParameterPtr );
81     void Init() ;
82     void closeEvent( QCloseEvent* e ) ;
83     void enterEvent ( QEvent * ) ;
84
85     SMESHGUI*  mySMESHGUI;
86     QString    myHypType;
87
88     typedef struct 
89     {
90       QWidget* editor;
91       QLabel*  label;
92       int      order;
93       
94     } ParamInfo;
95     
96     typedef QMap< SMESHGUI_aParameterPtr, ParamInfo > ParameterMap;
97     ParameterMap      myParamMap;
98
99     QLabel*           iconLabel;
100     QLabel*           typeLabel;
101     QGroupBox*        GroupC1;
102     QLabel*           TextLabel_NameHypothesis ;
103     QLineEdit*        LineEdit_NameHypothesis ;
104     QLabel*           TextLabel_Length ;
105     QGroupBox*        GroupButtons;
106     QPushButton*      buttonOk;
107     QPushButton*      buttonApply;
108     QPushButton*      buttonCancel;
109
110 private slots:
111
112     void ClickOnOk();
113     void ClickOnCancel();
114     bool ClickOnApply();
115     void DeactivateActiveDialog() ;
116     void ActivateThisDialog() ;
117 };
118
119 #endif // DIALOGBOX_LOCAL_LENGTH_H