Salome HOME
SMH: Preparation version 3.0.0 - merge (HEAD+POLYWORK)
[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 "SMESH_TypeFilter.hxx"
33
34 #include "SUIT_SelectionFilter.h"
35 #include "SalomeApp_SelectionMgr.h"
36
37 // QT Includes
38 #include <qdialog.h>
39 #include <qstringlist.h>
40
41 // IDL Headers
42 #include <SALOMEconfig.h>
43 #include CORBA_SERVER_HEADER(GEOM_Gen)
44 #include CORBA_SERVER_HEADER(SMESH_Gen)
45
46 class QGroupBox;
47 class QLabel;
48 class QLineEdit;
49 class QPushButton;
50 class SMESHGUI;
51
52 //=================================================================================
53 // class    : SMESHGUI_InitMeshDlg
54 // purpose  :
55 //=================================================================================
56 class SMESHGUI_InitMeshDlg : public QDialog
57
58     Q_OBJECT
59
60 public:
61     SMESHGUI_InitMeshDlg ( SMESHGUI*,
62                           const char* = 0,
63                           bool modal = FALSE,
64                           WFlags fl = 0 );
65     ~SMESHGUI_InitMeshDlg();
66
67 protected:
68     void closeEvent( QCloseEvent* e ) ;
69     void enterEvent( QEvent * ) ;
70
71 private:
72     void Init();
73
74     void UpdateControlState();
75     QString SMESHGUI_InitMeshDlg::GetDefaultMeshName();
76
77 private:
78     SMESHGUI*                  mySMESHGUI;
79     SalomeApp_SelectionMgr*    mySelectionMgr;
80
81     GEOM::GEOM_Object_var      myGeomShape;
82     QLineEdit*                 myEditCurrentArgument; 
83
84     //Handle(SALOME_TypeFilter)  myGeomFilter;
85     SUIT_SelectionFilter*      myGeomFilter;
86     //SMESH_TypeFilter*          myHypothesisFilter;
87     //SMESH_TypeFilter*          myAlgorithmFilter;
88     SUIT_SelectionFilter*      myHypothesisFilter;
89     SUIT_SelectionFilter*      myAlgorithmFilter;
90
91     QStringList                HypoList;
92     QStringList                AlgoList;
93
94     QGroupBox*    GroupButtons;
95     QPushButton*  buttonOk;
96     QPushButton*  buttonCancel;
97     QPushButton*  buttonApply;
98
99     QGroupBox*    GroupC1;
100     QLabel*       TextLabel_NameMesh;
101     QLineEdit*    LineEdit_NameMesh;
102     QLabel*       TextLabelC1A1;
103     QPushButton*  SelectButtonC1A1;
104     QLineEdit*    LineEditC1A1;
105
106     QLabel*       TextLabelC1A1Hyp;
107     QPushButton*  SelectButtonC1A1Hyp;
108     QLineEdit*    LineEditC1A1Hyp;
109
110     QLabel*       TextLabelC1A1Algo;
111     QPushButton*  SelectButtonC1A1Algo;
112     QLineEdit*    LineEditC1A1Algo;
113
114 private slots:
115     void ClickOnOk();
116     bool ClickOnApply();
117     void ClickOnCancel();
118     void SetEditCurrentArgument();
119     void SelectionIntoArgument();
120     void DeactivateActiveDialog();
121     void ActivateThisDialog();
122 };
123
124 #endif // DIALOGBOX_INIT_MESH_H