Salome HOME
1. Implementation of new pattern mapping algorthm (mesh refinement)
[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 <qdialog.h>
33 #include "SALOME_Selection.h"
34
35 class QLineEdit;
36 class QPushButton;
37 class SMESHGUI_SpinBox;
38 class SALOME_Actor;
39 class QFrame;
40 class SMESH_Actor;
41
42 //=================================================================================
43 // class    : SMESHGUI_MoveNodesDlg
44 // purpose  :
45 //=================================================================================
46 class SMESHGUI_MoveNodesDlg : public QDialog
47
48   Q_OBJECT
49
50 public:
51
52                                 SMESHGUI_MoveNodesDlg( QWidget*,
53                                                        SALOME_Selection*,
54                                                        const char* = 0 );
55  virtual                        ~SMESHGUI_MoveNodesDlg();
56     
57  void                           Init( SALOME_Selection* ) ;
58
59 private slots:
60
61   void                          onOk();
62   bool                          onApply();
63   void                          onClose();
64
65   void                          onDeactivate();
66
67   void                          onSelectionDone();
68   void                          redisplayPreview();
69   void                          onTextChange(const QString&);
70
71 private:
72
73   void                          closeEvent( QCloseEvent* e ) ;
74   void                          enterEvent ( QEvent * ) ;
75   void                          hideEvent ( QHideEvent * );
76   void                          erasePreview();
77   QFrame*                       createButtonFrame( QWidget* );
78   QFrame*                       createMainFrame  ( QWidget* );
79   bool                          isValid( const bool ) const;
80   void                          reset();
81   void                          updateButtons();
82
83 private:
84
85   QPushButton*                  myOkBtn;
86   QPushButton*                  myApplyBtn;
87   QPushButton*                  myCloseBtn;
88   
89   QLineEdit*                    myId;
90   SMESHGUI_SpinBox*             myX;
91   SMESHGUI_SpinBox*             myY;
92   SMESHGUI_SpinBox*             myZ;
93
94   SALOME_Selection*             mySelection;
95   
96   SALOME_Actor*                 myPreviewActor;
97   SMESH_Actor*                  myMeshActor;
98   bool                          myBusy;
99 };
100
101 #endif // DIALOGBOX_MOVE_NODES_H