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