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