1 // SMESH SMESHGUI : GUI for SMESH component
3 // Copyright (C) 2003 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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
24 // File : SMESHGUI_MoveNodesDlg.h
25 // Author : Nicolas REJNERI
29 #ifndef DIALOGBOX_MOVE_NODES_H
30 #define DIALOGBOX_MOVE_NODES_H
32 #include "SALOME_Selection.h"
38 // Open CASCADE Includes
39 #include <TColStd_MapOfInteger.hxx>
51 class SMESHGUI_SpinBox;
54 #include <SALOMEconfig.h>
55 #include CORBA_SERVER_HEADER(SMESH_Mesh)
60 //=================================================================================
61 // class : SMESHGUI_MoveNodesDlg
63 //=================================================================================
64 class SMESHGUI_MoveNodesDlg : public QDialog
69 SMESHGUI_MoveNodesDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
70 ~SMESHGUI_MoveNodesDlg();
74 void Init( SALOME_Selection* Sel ) ;
75 void closeEvent( QCloseEvent* e ) ;
76 void enterEvent ( QEvent * ) ; /* mouse enter the QWidget */
78 SMESHGUI* mySMESHGUI ; /* Current SMESHGUI object */
79 SALOME_Selection* mySelection ; /* User shape selection */
80 bool myOkNodes ; /* to check when arguments is defined */
81 int myConstructorId ; /* Current constructor id = radio button id */
83 QLineEdit* myEditCurrentArgument; /* Current LineEdit */
85 SMESH::SMESH_Mesh_var myMesh;
86 TColStd_MapOfInteger myMapIndex;
88 vtkActor *mySimulationActor;
90 QGroupBox* GroupCoordinates;
94 SMESHGUI_SpinBox* SpinBox_X;
95 SMESHGUI_SpinBox* SpinBox_Y;
96 SMESHGUI_SpinBox* SpinBox_Z;
98 QButtonGroup* GroupConstructors;
99 QRadioButton* Constructor1;
100 QGroupBox* GroupButtons;
101 QPushButton* buttonOk;
102 QPushButton* buttonCancel;
103 QPushButton* buttonApply;
105 QLabel* TextLabelC1A1;
106 QPushButton* SelectButtonC1A1;
107 QLineEdit* LineEditC1A1;
111 void ConstructorsClicked(int constructorId);
113 void ClickOnCancel();
115 void SetEditCurrentArgument() ;
116 void SelectionIntoArgument() ;
117 void DeactivateActiveDialog() ;
118 void ActivateThisDialog() ;
119 void ValueChangedInSpinBox( double newValue ) ;
122 QGridLayout* SMESHGUI_MoveNodesDlgLayout;
123 QGridLayout* GroupConstructorsLayout;
124 QGridLayout* GroupButtonsLayout;
125 QGridLayout* GroupC1Layout;
126 QGridLayout* GroupCoordinatesLayout;
129 #endif // DIALOGBOX_MOVE_NODES_H