Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[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.salome-platform.org/ or email : webmaster.salome@opencascade.com
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 "LightApp_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   void                          onHelp();
70
71   void                          onDeactivate();
72
73   void                          onSelectionDone();
74   void                          redisplayPreview();
75   void                          onTextChange(const QString&);
76
77 private:
78
79   void                          closeEvent( QCloseEvent* e ) ;
80   void                          enterEvent ( QEvent * ) ;
81   void                          hideEvent ( QHideEvent * );
82   void                          erasePreview();
83   QFrame*                       createButtonFrame( QWidget* );
84   QFrame*                       createMainFrame  ( QWidget* );
85   bool                          isValid( const bool ) const;
86   void                          reset();
87   void                          updateButtons();
88
89 private:
90
91   QPushButton*                  myOkBtn;
92   QPushButton*                  myApplyBtn;
93   QPushButton*                  myCloseBtn;
94   QPushButton*                  myHelpBtn;
95   
96   QLineEdit*                    myId;
97   SMESHGUI_SpinBox*             myX;
98   SMESHGUI_SpinBox*             myY;
99   SMESHGUI_SpinBox*             myZ;
100
101   LightApp_SelectionMgr*        mySelectionMgr;
102   SVTK_Selector*                mySelector;
103   SMESHGUI*                     mySMESHGUI;
104   
105   SALOME_Actor*                 myPreviewActor;
106   SMESH_Actor*                  myMeshActor;
107   bool                          myBusy;
108
109   QString                       myHelpFileName;
110 };
111
112 #endif // DIALOGBOX_MOVE_NODES_H