Salome HOME
0020321: EDF : Some windows do not appear depending on the platform (MinimumSizeHint())
[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, Open CASCADE S.A.S.
25 //
26 #ifndef SMESHGUI_RENUMBERINGDLG_H
27 #define SMESHGUI_RENUMBERINGDLG_H
28
29 // SMESH includes
30 #include "SMESH_SMESHGUI.hxx"
31
32 // Qt includes
33 #include <QDialog>
34
35 // IDL includes
36 #include <SALOMEconfig.h>
37 #include CORBA_SERVER_HEADER(SMESH_Mesh)
38
39 class QGroupBox;
40 class QLabel;
41 class QLineEdit;
42 class QPushButton;
43 class QRadioButton;
44 class SMESHGUI;
45 class LightApp_SelectionMgr;
46 class SUIT_SelectionFilter;
47
48 //=================================================================================
49 // class    : SMESHGUI_RenumberingDlg
50 // purpose  : If the unit == 0 nodes will be renumbered, if the unit == 1 the elements will.
51 //=================================================================================
52 class SMESHGUI_EXPORT SMESHGUI_RenumberingDlg : public QDialog
53
54   Q_OBJECT
55
56 public:
57   SMESHGUI_RenumberingDlg( SMESHGUI*, const int = 0 );
58   ~SMESHGUI_RenumberingDlg();
59
60 private:
61   void                          Init();
62   void                          closeEvent( QCloseEvent* );
63   void                          enterEvent( QEvent* );         /* mouse enter the QWidget */
64   void                          hideEvent( QHideEvent* );       /* ESC key */
65   void                          keyPressEvent( QKeyEvent* );
66   
67   SMESHGUI*                     mySMESHGUI;              /* Current SMESHGUI object */
68   LightApp_SelectionMgr*        mySelectionMgr;          /* User shape selection */
69   int                           myConstructorId;         /* Current constructor id = radio button id */
70   QLineEdit*                    myEditCurrentArgument;   /* Current  LineEdit */
71   
72   int myUnit;    
73   SMESH::SMESH_Mesh_var         myMesh;
74   //Handle(SMESH_TypeFilter)      myMeshFilter;
75   SUIT_SelectionFilter*         myMeshFilter;
76   
77   QGroupBox*                    GroupConstructors;
78   QRadioButton*                 Constructor1;
79   QGroupBox*                    GroupButtons;
80   QPushButton*                  buttonOk;
81   QPushButton*                  buttonCancel;
82   QPushButton*                  buttonApply;
83   QPushButton*                  buttonHelp;
84   QGroupBox*                    GroupMesh;
85   QLabel*                       TextLabelMesh;
86   QPushButton*                  SelectButton;
87   QLineEdit*                    LineEditMesh;
88   
89   QString                       myHelpFileName;
90
91 private slots:
92   void                          ClickOnOk();
93   void                          ClickOnCancel();
94   void                          ClickOnApply();
95   void                          ClickOnHelp();
96   void                          SetEditCurrentArgument();
97   void                          SelectionIntoArgument();
98   void                          DeactivateActiveDialog();
99   void                          ActivateThisDialog();
100 };
101
102 #endif // SMESHGUI_RENUMBERINGDLG_H