Salome HOME
IPAL21120 SIGSEGV on Meshing attached Compound with Automatic Hexadralization
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_RenumberingDlg.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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 //  SMESH SMESHGUI : GUI for SMESH component
23 //  File   : SMESHGUI_RenumberingDlg.h
24 //  Author : Michael ZORIN
25 //  Module : SMESH
26 //  $Header:
27 //
28 #ifndef DIALOGBOX_RENUMBERING_H
29 #define DIALOGBOX_RENUMBERING_H
30
31 #include "SMESH_SMESHGUI.hxx"
32
33 #include "LightApp_SelectionMgr.h"
34 //#include "SMESH_TypeFilter.hxx"
35 #include "SUIT_SelectionFilter.h"
36
37 // QT Includes
38 #include <qdialog.h>
39
40 // Open CASCADE Includes
41
42 class QGridLayout; 
43 class QButtonGroup;
44 class QGroupBox;
45 class QLabel;
46 class QLineEdit;
47 class QPushButton;
48 class QRadioButton;
49 class SMESHGUI;
50
51 // IDL Headers
52 #include <SALOMEconfig.h>
53 #include CORBA_SERVER_HEADER(SMESH_Mesh)
54
55 //=================================================================================
56 // class    : SMESHGUI_RenumberingDlg
57 // purpose  : If the unit == 0 nodes will be renumbered, if the unit == 1 the elements will.
58 //=================================================================================
59 class SMESHGUI_EXPORT SMESHGUI_RenumberingDlg : public QDialog
60
61     Q_OBJECT
62
63 public:
64     SMESHGUI_RenumberingDlg( SMESHGUI*,
65                              const char* name = 0,
66                              const int unit = 0,
67                              bool modal = FALSE,
68                              WFlags fl = 0);
69     ~SMESHGUI_RenumberingDlg();
70
71 private:
72     void Init();
73     void closeEvent( QCloseEvent* e ) ;
74     void enterEvent ( QEvent * ) ;                         /* mouse enter the QWidget */
75     void hideEvent ( QHideEvent * );                       /* ESC key */
76     void keyPressEvent( QKeyEvent* e );
77     
78     SMESHGUI*                     mySMESHGUI;              /* Current SMESHGUI object */
79     LightApp_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     QPushButton* buttonHelp;
95     QGroupBox* GroupMesh;
96     QLabel* TextLabelMesh;
97     QPushButton* SelectButton;
98     QLineEdit* LineEditMesh;
99     
100     QString myHelpFileName;
101
102 private slots:
103
104     void ConstructorsClicked(int constructorId);
105     void ClickOnOk();
106     void ClickOnCancel();
107     void ClickOnApply();
108     void ClickOnHelp();
109     void SetEditCurrentArgument() ;
110     void SelectionIntoArgument() ;
111     void DeactivateActiveDialog() ;
112     void ActivateThisDialog() ;
113     
114 protected:
115     QGridLayout* SMESHGUI_RenumberingDlgLayout;
116     QGridLayout* GroupConstructorsLayout;
117     QGridLayout* GroupButtonsLayout;
118     QGridLayout* GroupMeshLayout;
119 };
120
121 #endif // DIALOGBOX_RENUMBERING_H