Salome HOME
Merge from V5_1_4_BR 07/05/2010
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_MoveNodesDlg.h
1 //  Copyright (C) 2007-2010  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
23 // SMESH SMESHGUI : GUI for SMESH component
24 // File   : SMESHGUI_MoveNodesDlg.h
25 // Author : Nicolas REJNERI, Open CASCADE S.A.S.
26 //
27 #ifndef SMESHGUI_MOVENODESDLG_H
28 #define SMESHGUI_MOVENODESDLG_H
29
30 // SMESH includes
31 #include "SMESH_SMESHGUI.hxx"
32
33 // Qt includes
34 #include <QDialog>
35
36 class QLineEdit;
37 class QPushButton;
38
39 class SMESHGUI;
40 class SMESH_Actor;
41 class SMESHGUI_SpinBox;
42 class SALOME_Actor;
43 class SVTK_Selector;
44 class LightApp_SelectionMgr;
45
46 //=================================================================================
47 // class    : SMESHGUI_MoveNodesDlg
48 // purpose  :
49 //=================================================================================
50 class SMESHGUI_EXPORT SMESHGUI_MoveNodesDlg : public QDialog
51
52   Q_OBJECT
53
54 public:
55   SMESHGUI_MoveNodesDlg( SMESHGUI* );
56   virtual ~SMESHGUI_MoveNodesDlg();
57     
58   void                          Init();
59
60 private slots:
61   void                          onOk();
62   bool                          onApply();
63   void                          onClose();
64   void                          onHelp();
65
66   void                          onDeactivate();
67
68   void                          onSelectionDone();
69   void                          redisplayPreview();
70   void                          onTextChange( const QString& );
71
72 private:
73   void                          closeEvent( QCloseEvent* );
74   void                          enterEvent( QEvent* );
75   void                          hideEvent( QHideEvent* );
76   void                          keyPressEvent( QKeyEvent* );
77   void                          erasePreview();
78   QWidget*                      createButtonFrame( QWidget* );
79   QWidget*                      createMainFrame  ( QWidget* );
80   bool                          isValid( const bool );
81   void                          reset();
82   void                          updateButtons();
83
84 private:
85   QPushButton*                  myOkBtn;
86   QPushButton*                  myApplyBtn;
87   QPushButton*                  myCloseBtn;
88   QPushButton*                  myHelpBtn;
89   
90   QLineEdit*                    myId;
91   SMESHGUI_SpinBox*             myX;
92   SMESHGUI_SpinBox*             myY;
93   SMESHGUI_SpinBox*             myZ;
94
95   LightApp_SelectionMgr*        mySelectionMgr;
96   SVTK_Selector*                mySelector;
97   SMESHGUI*                     mySMESHGUI;
98   
99   SALOME_Actor*                 myPreviewActor;
100   SMESH_Actor*                  myMeshActor;
101   bool                          myBusy;
102
103   QString                       myHelpFileName;
104 };
105
106 #endif // SMESHGUI_MOVENODESDLG_H