1 // Copyright (C) 2007-2011 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // SMESH SMESHGUI : GUI for SMESH component
24 // File : SMESHGUI_MoveNodesDlg.h
25 // Author : Nicolas REJNERI, Open CASCADE S.A.S.
27 #ifndef SMESHGUI_MOVENODESDLG_H
28 #define SMESHGUI_MOVENODESDLG_H
31 #include "SMESH_SMESHGUI.hxx"
41 class SMESHGUI_SpinBox;
44 class LightApp_SelectionMgr;
46 //=================================================================================
47 // class : SMESHGUI_MoveNodesDlg
49 //=================================================================================
50 class SMESHGUI_EXPORT SMESHGUI_MoveNodesDlg : public QDialog
55 SMESHGUI_MoveNodesDlg( SMESHGUI* );
56 virtual ~SMESHGUI_MoveNodesDlg();
68 void onSelectionDone();
69 void redisplayPreview();
70 void onTextChange( const QString& );
73 void closeEvent( QCloseEvent* );
74 void enterEvent( QEvent* );
75 void hideEvent( QHideEvent* );
76 void keyPressEvent( QKeyEvent* );
78 QWidget* createButtonFrame( QWidget* );
79 QWidget* createMainFrame ( QWidget* );
80 bool isValid( const bool );
86 QPushButton* myApplyBtn;
87 QPushButton* myCloseBtn;
88 QPushButton* myHelpBtn;
91 SMESHGUI_SpinBox* myX;
92 SMESHGUI_SpinBox* myY;
93 SMESHGUI_SpinBox* myZ;
95 LightApp_SelectionMgr* mySelectionMgr;
96 SVTK_Selector* mySelector;
99 SALOME_Actor* myPreviewActor;
100 SMESH_Actor* myMeshActor;
103 QString myHelpFileName;
106 #endif // SMESHGUI_MOVENODESDLG_H