Salome HOME
Fix bug 12796: Warning missed for the bad file 'test18.med'
[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.salome-platform.org/ or email : webmaster.salome@opencascade.com
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 "LightApp_SelectionMgr.h"
33 //#include "SMESH_TypeFilter.hxx"
34 #include "SUIT_SelectionFilter.h"
35
36 // QT Includes
37 #include <qdialog.h>
38
39 // Open CASCADE Includes
40
41 class QGridLayout; 
42 class QButtonGroup;
43 class QGroupBox;
44 class QLabel;
45 class QLineEdit;
46 class QPushButton;
47 class QRadioButton;
48 class SMESHGUI;
49
50 // IDL Headers
51 #include <SALOMEconfig.h>
52 #include CORBA_SERVER_HEADER(SMESH_Mesh)
53
54 //=================================================================================
55 // class    : SMESHGUI_RenumberingDlg
56 // purpose  : If the unit == 0 nodes will be renumbered, if the unit == 1 the elements will.
57 //=================================================================================
58 class SMESHGUI_RenumberingDlg : public QDialog
59
60     Q_OBJECT
61
62 public:
63     SMESHGUI_RenumberingDlg( SMESHGUI*,
64                              const char* name = 0,
65                              const int unit = 0,
66                              bool modal = FALSE,
67                              WFlags fl = 0);
68     ~SMESHGUI_RenumberingDlg();
69
70 private:
71     void Init();
72     void closeEvent( QCloseEvent* e ) ;
73     void enterEvent ( QEvent * ) ;                         /* mouse enter the QWidget */
74     void hideEvent ( QHideEvent * );                       /* ESC key */
75     void keyPressEvent( QKeyEvent* e );
76     
77     SMESHGUI*                     mySMESHGUI;              /* Current SMESHGUI object */
78     LightApp_SelectionMgr*        mySelectionMgr;          /* User shape selection */
79     int                           myConstructorId;         /* Current constructor id = radio button id */
80     QLineEdit*                    myEditCurrentArgument;   /* Current  LineEdit */
81
82     int myUnit;    
83     SMESH::SMESH_Mesh_var         myMesh;
84     //Handle(SMESH_TypeFilter)      myMeshFilter;
85     SUIT_SelectionFilter*         myMeshFilter;
86         
87     QButtonGroup* GroupConstructors;
88     QRadioButton* Constructor1;
89     QGroupBox* GroupButtons;
90     QPushButton* buttonOk;
91     QPushButton* buttonCancel;
92     QPushButton* buttonApply;
93     QPushButton* buttonHelp;
94     QGroupBox* GroupMesh;
95     QLabel* TextLabelMesh;
96     QPushButton* SelectButton;
97     QLineEdit* LineEditMesh;
98     
99     QString myHelpFileName;
100
101 private slots:
102
103     void ConstructorsClicked(int constructorId);
104     void ClickOnOk();
105     void ClickOnCancel();
106     void ClickOnApply();
107     void ClickOnHelp();
108     void SetEditCurrentArgument() ;
109     void SelectionIntoArgument() ;
110     void DeactivateActiveDialog() ;
111     void ActivateThisDialog() ;
112     
113 protected:
114     QGridLayout* SMESHGUI_RenumberingDlgLayout;
115     QGridLayout* GroupConstructorsLayout;
116     QGridLayout* GroupButtonsLayout;
117     QGridLayout* GroupMeshLayout;
118 };
119
120 #endif // DIALOGBOX_RENUMBERING_H