Salome HOME
Bug 9282: Order of commands
[modules/visu.git] / src / VISUGUI / VisuGUI_InitMeshDlg.h
1 //  VISU VISUGUI : GUI of VISU 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   : VisuGUI_InitMeshDlg.h
25 //  Author : Nicolas REJNERI
26 //  Module : VISU
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
35 // QT Includes
36 #include <qvariant.h>
37 #include <qdialog.h>
38
39 // IDL Headers
40 #include <SALOMEconfig.h>
41 #include CORBA_SERVER_HEADER(GEOM_Gen)
42 //#include CORBA_SERVER_HEADER(GEOM_Shape)
43
44 class QVBoxLayout; 
45 class QHBoxLayout; 
46 class QGridLayout; 
47 class QButtonGroup;
48 class QGroupBox;
49 class QLabel;
50 class QLineEdit;
51 class QPushButton;
52 class QRadioButton;
53 class VisuGUI;
54 class SalomeApp_SelectionMgr;
55
56 //=================================================================================
57 // class    : VisuGUI_InitMeshDlg
58 // purpose  :
59 //=================================================================================
60 class VisuGUI_InitMeshDlg : public QDialog
61
62     Q_OBJECT
63
64 public:
65     VisuGUI_InitMeshDlg( QWidget* parent = 0, const char* name = 0, SalomeApp_SelectionMgr* = 0, bool modal = FALSE, WFlags fl = 0 );
66     ~VisuGUI_InitMeshDlg();
67
68 private:
69
70     void Init( SalomeApp_SelectionMgr* ) ;
71     void closeEvent( QCloseEvent* e ) ;
72     void enterEvent ( QEvent * ) ;
73
74     VisuGUI*                     myVisuGUI ;
75     SalomeApp_SelectionMgr*      myMgr ;
76              
77     GEOM::GEOM_Shape_var                myGeomShape ;
78     int                           myConstructorId ; 
79     QLineEdit*                    myEditCurrentArgument; 
80
81     QString                       myNameMesh ;
82
83     Handle(SALOME_TypeFilter)     myGeomFilter;
84
85     QButtonGroup* GroupConstructors;
86     QRadioButton* Constructor1;
87     QGroupBox*    GroupButtons;
88     QPushButton*  buttonOk;
89     QPushButton*  buttonCancel;
90     QPushButton*  buttonApply;
91     QGroupBox*    GroupC1;
92     QLabel*       TextLabel_NameMesh ;
93     QLineEdit*    LineEdit_NameMesh ;
94     QLabel*       TextLabelC1A1;
95     QPushButton*  SelectButtonC1A1;
96     QLineEdit*    LineEditC1A1;
97
98 private slots:
99
100     void ConstructorsClicked(int constructorId);
101     void ClickOnOk();
102     void ClickOnCancel();
103     void ClickOnApply();
104     void SetEditCurrentArgument() ;
105     void SelectionIntoArgument() ;
106     void DeactivateActiveDialog() ;
107     void ActivateThisDialog() ;
108     void TextChangedInLineEdit(const QString& newText) ;
109
110 protected:
111     QGridLayout* VisuGUI_InitMeshDlgLayout;
112     QGridLayout* GroupConstructorsLayout;
113     QGridLayout* GroupButtonsLayout;
114     QGridLayout* GroupC1Layout;
115 };
116
117 #endif // DIALOGBOX_INIT_MESH_H