Salome HOME
Update from local sources
[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 "SalomeApp_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 (QWidget* parent = 0,
64                              const char* name = 0,
65                              SalomeApp_SelectionMgr* Sel = 0,
66                              const int unit = 0,
67                              bool modal = FALSE,
68                              WFlags fl = 0);
69     ~SMESHGUI_RenumberingDlg();
70
71 private:
72
73     void Init( SalomeApp_SelectionMgr* Sel ) ;
74     void closeEvent( QCloseEvent* e ) ;
75     void enterEvent ( QEvent * ) ;                         /* mouse enter the QWidget */
76     void hideEvent ( QHideEvent * );                       /* ESC key */
77     
78     SMESHGUI*                     mySMESHGUI;              /* Current SMESHGUI object */
79     SalomeApp_SelectionMgr*       mySelectionMgr;          /* User shape selection */
80     int                           myConstructorId;         /* Current constructor id = radio button id */
81     QLineEdit*                    myEditCurrentArgument;   /* Current  LineEdit */
82
83     int myUnit;    
84     SMESH::SMESH_Mesh_var         myMesh;
85     //Handle(SMESH_TypeFilter)      myMeshFilter;
86     SUIT_SelectionFilter*         myMeshFilter;
87         
88     QButtonGroup* GroupConstructors;
89     QRadioButton* Constructor1;
90     QGroupBox* GroupButtons;
91     QPushButton* buttonOk;
92     QPushButton* buttonCancel;
93     QPushButton* buttonApply;
94     QGroupBox* GroupMesh;
95     QLabel* TextLabelMesh;
96     QPushButton* SelectButton;
97     QLineEdit* LineEditMesh;
98
99 private slots:
100
101     void ConstructorsClicked(int constructorId);
102     void ClickOnOk();
103     void ClickOnCancel();
104     void ClickOnApply();
105     void SetEditCurrentArgument() ;
106     void SelectionIntoArgument() ;
107     void DeactivateActiveDialog() ;
108     void ActivateThisDialog() ;
109     
110 protected:
111     QGridLayout* SMESHGUI_RenumberingDlgLayout;
112     QGridLayout* GroupConstructorsLayout;
113     QGridLayout* GroupButtonsLayout;
114     QGridLayout* GroupMeshLayout;
115 };
116
117 #endif // DIALOGBOX_RENUMBERING_H