1 // SALOME VTKViewer : build VTK viewer into Salome desktop
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.salome-platform.org/ or email : webmaster.salome@opencascade.com
29 #ifndef SVTK_UPDATERATEDLG_H
30 #define SVTK_UPDATERATEDLG_H
32 #include "SVTK_DialogBase.h"
34 #include <vtkSmartPointer.h>
36 class SVTK_MainWindow;
37 class SVTK_RenderWindowInteractor;
45 class vtkCallbackCommand;
49 class SVTK_UpdateRateDlg : public SVTK_DialogBase
54 SVTK_UpdateRateDlg(QtxAction* theAction,
55 SVTK_MainWindow* theParent,
58 ~SVTK_UpdateRateDlg();
63 SVTK_RenderWindowInteractor* myRWInteractor;
64 QtxDblSpinBox* myDesiredUpdateRateSblSpinBox;
65 QtxDblSpinBox* myStillUpdateRateSblSpinBox;
66 QGroupBox* myIsEnableUpdateRateGroupBox;
68 QLineEdit* myCurrentUpdateRateLineEdit;
69 QLineEdit* myNumberOfCellsLineEdit;
73 //----------------------------------------------------------------------------
74 // Priority at which events are processed
75 vtkFloatingPointType myPriority;
77 // Used to process events
78 vtkSmartPointer<vtkCallbackCommand> myEventCallbackCommand;
81 // Main process event method
82 static void ProcessEvents(vtkObject* object,
93 #endif // SVTK_UPDATERATEDLG_H