Salome HOME
Fix for bug IPAL9258(/dn06/../current1706): SIGSEGV after trying to close dialog...
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_MoveNodesDlg.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_MoveNodesDlg.h
25 //  Author : Nicolas REJNERI
26 //  Module : SMESH
27 //  $Header$
28
29 #ifndef DIALOGBOX_MOVE_NODES_H
30 #define DIALOGBOX_MOVE_NODES_H
31
32 #include "SalomeApp_SelectionMgr.h"
33
34 #include <qdialog.h>
35
36 class QLineEdit;
37 class QPushButton;
38 class SMESHGUI_SpinBox;
39 class SALOME_Actor;
40 class QFrame;
41
42 class SMESHGUI;
43 class SMESH_Actor;
44 class SUIT_Desktop;
45 class SVTK_Selector;
46 class SVTK_ViewWindow;
47
48 //=================================================================================
49 // class    : SMESHGUI_MoveNodesDlg
50 // purpose  :
51 //=================================================================================
52 class SMESHGUI_MoveNodesDlg : public QDialog
53
54   Q_OBJECT
55
56 public:
57
58                                 SMESHGUI_MoveNodesDlg(SMESHGUI* theModule,
59                                                       const char* name = 0);
60  virtual                        ~SMESHGUI_MoveNodesDlg();
61     
62  void                           Init();
63
64 private slots:
65
66   void                          onOk();
67   bool                          onApply();
68   void                          onClose();
69
70   void                          onDeactivate();
71
72   void                          onSelectionDone();
73   void                          redisplayPreview();
74   void                          onTextChange(const QString&);
75
76 private:
77
78   void                          closeEvent( QCloseEvent* e ) ;
79   void                          enterEvent ( QEvent * ) ;
80   void                          hideEvent ( QHideEvent * );
81   void                          erasePreview();
82   QFrame*                       createButtonFrame( QWidget* );
83   QFrame*                       createMainFrame  ( QWidget* );
84   bool                          isValid( const bool ) const;
85   void                          reset();
86   void                          updateButtons();
87
88 private:
89
90   QPushButton*                  myOkBtn;
91   QPushButton*                  myApplyBtn;
92   QPushButton*                  myCloseBtn;
93   
94   QLineEdit*                    myId;
95   SMESHGUI_SpinBox*             myX;
96   SMESHGUI_SpinBox*             myY;
97   SMESHGUI_SpinBox*             myZ;
98
99   SalomeApp_SelectionMgr*       mySelectionMgr;
100   SVTK_Selector*                mySelector;
101   SMESHGUI*                     mySMESHGUI;
102   
103   SALOME_Actor*                 myPreviewActor;
104   SMESH_Actor*                  myMeshActor;
105   bool                          myBusy;
106 };
107
108 #endif // DIALOGBOX_MOVE_NODES_H