Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[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     
76     SMESHGUI*                     mySMESHGUI;              /* Current SMESHGUI object */
77     LightApp_SelectionMgr*        mySelectionMgr;          /* User shape selection */
78     int                           myConstructorId;         /* Current constructor id = radio button id */
79     QLineEdit*                    myEditCurrentArgument;   /* Current  LineEdit */
80
81     int myUnit;    
82     SMESH::SMESH_Mesh_var         myMesh;
83     //Handle(SMESH_TypeFilter)      myMeshFilter;
84     SUIT_SelectionFilter*         myMeshFilter;
85         
86     QButtonGroup* GroupConstructors;
87     QRadioButton* Constructor1;
88     QGroupBox* GroupButtons;
89     QPushButton* buttonOk;
90     QPushButton* buttonCancel;
91     QPushButton* buttonApply;
92     QPushButton* buttonHelp;
93     QGroupBox* GroupMesh;
94     QLabel* TextLabelMesh;
95     QPushButton* SelectButton;
96     QLineEdit* LineEditMesh;
97     
98     QString myHelpFileName;
99
100 private slots:
101
102     void ConstructorsClicked(int constructorId);
103     void ClickOnOk();
104     void ClickOnCancel();
105     void ClickOnApply();
106     void ClickOnHelp();
107     void SetEditCurrentArgument() ;
108     void SelectionIntoArgument() ;
109     void DeactivateActiveDialog() ;
110     void ActivateThisDialog() ;
111     
112 protected:
113     QGridLayout* SMESHGUI_RenumberingDlgLayout;
114     QGridLayout* GroupConstructorsLayout;
115     QGridLayout* GroupButtonsLayout;
116     QGridLayout* GroupMeshLayout;
117 };
118
119 #endif // DIALOGBOX_RENUMBERING_H