Salome HOME
PAL6938
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_RenumberingDlg.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_RenumberingDlg.h
25 //  Author : Michael ZORIN
26 //  Module : SMESH
27 //  $Header:
28
29 #ifndef DIALOGBOX_RENUMBERING_H
30 #define DIALOGBOX_RENUMBERING_H
31
32 #include "SALOME_Selection.h"
33 #include "SMESH_TypeFilter.hxx"
34
35 // QT Includes
36 #include <qdialog.h>
37
38 // Open CASCADE Includes
39
40 class QGridLayout; 
41 class QButtonGroup;
42 class QGroupBox;
43 class QLabel;
44 class QLineEdit;
45 class QPushButton;
46 class QRadioButton;
47 class SMESHGUI;
48
49 // IDL Headers
50 #include <SALOMEconfig.h>
51 #include CORBA_SERVER_HEADER(SMESH_Mesh)
52
53 //=================================================================================
54 // class    : SMESHGUI_RenumberingDlg
55 // purpose  : If the unit == 0 nodes will be renumbered, if the unit == 1 the elements will.
56 //=================================================================================
57 class SMESHGUI_RenumberingDlg : public QDialog
58
59     Q_OBJECT
60
61 public:
62     SMESHGUI_RenumberingDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, const int unit = 0, bool modal = FALSE, WFlags fl = 0 );
63     ~SMESHGUI_RenumberingDlg();
64
65 private:
66
67     void Init( SALOME_Selection* Sel ) ;
68     void closeEvent( QCloseEvent* e ) ;
69     void enterEvent ( QEvent * ) ;                          /* mouse enter the QWidget */
70     void hideEvent ( QHideEvent * );                        /* ESC key */
71     
72     SMESHGUI*                     mySMESHGUI ;              /* Current SMESHGUI object */
73     SALOME_Selection*             mySelection ;             /* User shape selection */
74     int                           myConstructorId ;         /* Current constructor id = radio button id */
75     QLineEdit*                    myEditCurrentArgument;    /* Current  LineEdit */
76
77     int myUnit;    
78     SMESH::SMESH_Mesh_var         myMesh;
79     Handle(SMESH_TypeFilter)      myMeshFilter;
80         
81     QButtonGroup* GroupConstructors;
82     QRadioButton* Constructor1;
83     QGroupBox* GroupButtons;
84     QPushButton* buttonOk;
85     QPushButton* buttonCancel;
86     QPushButton* buttonApply;
87     QGroupBox* GroupMesh;
88     QLabel* TextLabelMesh;
89     QPushButton* SelectButton;
90     QLineEdit* LineEditMesh;
91
92 private slots:
93
94     void ConstructorsClicked(int constructorId);
95     void ClickOnOk();
96     void ClickOnCancel();
97     void ClickOnApply();
98     void SetEditCurrentArgument() ;
99     void SelectionIntoArgument() ;
100     void DeactivateActiveDialog() ;
101     void ActivateThisDialog() ;
102     
103 protected:
104     QGridLayout* SMESHGUI_RenumberingDlgLayout;
105     QGridLayout* GroupConstructorsLayout;
106     QGridLayout* GroupButtonsLayout;
107     QGridLayout* GroupMeshLayout;
108 };
109
110 #endif // DIALOGBOX_RENUMBERING_H