Salome HOME
fix PAL8469. Updating the global mesh icon when local hypotheses are edited
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_InitMeshDlg.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   : SMESHGUI_InitMeshDlg.h
25 //  Author : Nicolas REJNERI
26 //  Module : SMESH
27 //  $Header$
28
29 #ifndef DIALOGBOX_INIT_MESH_H
30 #define DIALOGBOX_INIT_MESH_H
31
32 #include "SALOME_Selection.h"
33 #include "SALOME_TypeFilter.hxx"
34 #include "SMESH_TypeFilter.hxx"
35
36 // QT Includes
37 #include <qdialog.h>
38 #include <qstringlist.h>
39
40 // IDL Headers
41 #include <SALOMEconfig.h>
42 #include CORBA_SERVER_HEADER(GEOM_Gen)
43 #include CORBA_SERVER_HEADER(SMESH_Gen)
44
45 class QGroupBox;
46 class QLabel;
47 class QLineEdit;
48 class QPushButton;
49 class SMESHGUI;
50
51 //=================================================================================
52 // class    : SMESHGUI_InitMeshDlg
53 // purpose  :
54 //=================================================================================
55 class SMESHGUI_InitMeshDlg : public QDialog
56
57     Q_OBJECT
58
59 public:
60     SMESHGUI_InitMeshDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
61     ~SMESHGUI_InitMeshDlg();
62
63 protected:
64     void closeEvent( QCloseEvent* e ) ;
65     void enterEvent( QEvent * ) ;
66
67 private:
68     void Init( SALOME_Selection* Sel ) ;
69
70     void UpdateControlState();
71     QString SMESHGUI_InitMeshDlg::GetDefaultMeshName();
72
73 private:
74     SMESHGUI*                     mySMESHGUI ;
75     SALOME_Selection*             mySelection ;
76              
77     GEOM::GEOM_Object_var         myGeomShape ;
78     QLineEdit*                    myEditCurrentArgument; 
79
80     Handle(SALOME_TypeFilter)     myGeomFilter;
81     Handle(SMESH_TypeFilter)      myHypothesisFilter;
82     Handle(SMESH_TypeFilter)      myAlgorithmFilter;
83
84     QStringList                   HypoList;
85     QStringList                   AlgoList;
86
87     QGroupBox*    GroupButtons;
88     QPushButton*  buttonOk;
89     QPushButton*  buttonCancel;
90     QPushButton*  buttonApply;
91
92     QGroupBox*    GroupC1;
93     QLabel*       TextLabel_NameMesh ;
94     QLineEdit*    LineEdit_NameMesh ;
95     QLabel*       TextLabelC1A1;
96     QPushButton*  SelectButtonC1A1;
97     QLineEdit*    LineEditC1A1;
98
99     QLabel*       TextLabelC1A1Hyp;
100     QPushButton*  SelectButtonC1A1Hyp;
101     QLineEdit*    LineEditC1A1Hyp;
102
103     QLabel*       TextLabelC1A1Algo;
104     QPushButton*  SelectButtonC1A1Algo;
105     QLineEdit*    LineEditC1A1Algo;
106
107 private slots:
108     void ClickOnOk();
109     bool ClickOnApply();
110     void ClickOnCancel();
111     void SetEditCurrentArgument() ;
112     void SelectionIntoArgument() ;
113     void DeactivateActiveDialog() ;
114     void ActivateThisDialog() ;
115 };
116
117 #endif // DIALOGBOX_INIT_MESH_H