Salome HOME
1357b6434c5f901068ee26f8b40ee4f4944d3b66
[modules/gui.git] / src / SVTK / SVTK_UpdateRateDlg.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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 //  SALOME VTKViewer : build VTK viewer into Salome desktop
23 //  File   : 
24 //  Author : 
25 //  Module : SALOME
26 //  $Header$
27 //
28 #ifndef SVTK_UPDATERATEDLG_H
29 #define SVTK_UPDATERATEDLG_H
30
31 #include "SVTK_DialogBase.h"
32
33 #include <vtkSmartPointer.h>
34
35 class SVTK_ViewWindow;
36 class SVTK_RenderWindowInteractor;
37
38 class QtxDoubleSpinBox;
39 class QtxAction;
40
41 class QGroupBox;
42 class QLineEdit;
43
44 class vtkCallbackCommand;
45 class vtkObject;
46
47
48 class SVTK_UpdateRateDlg : public SVTK_DialogBase
49 {
50   Q_OBJECT;
51
52 public:
53   SVTK_UpdateRateDlg(QtxAction* theAction,
54                      SVTK_ViewWindow* theParent,
55                      const char* theName);
56
57   ~SVTK_UpdateRateDlg();
58
59   void Update();
60
61 protected:
62   SVTK_RenderWindowInteractor* myRWInteractor;
63   QtxDoubleSpinBox* myDesiredUpdateRateSblSpinBox;
64   QtxDoubleSpinBox* myStillUpdateRateSblSpinBox;
65   QGroupBox* myIsEnableUpdateRateGroupBox;
66
67   QLineEdit* myCurrentUpdateRateLineEdit;
68   QLineEdit* myNumberOfCellsLineEdit;
69
70   QtxAction* myAction;
71
72   //----------------------------------------------------------------------------
73   // Priority at which events are processed
74   vtkFloatingPointType myPriority;
75
76   // Used to process events
77   vtkSmartPointer<vtkCallbackCommand> myEventCallbackCommand;
78
79   // Description:
80   // Main process event method
81   static void ProcessEvents(vtkObject* object, 
82                             unsigned long event,
83                             void* clientdata, 
84                             void* calldata);
85   
86 protected slots:
87   void onClickOk();
88   void onClickApply();
89   void onClickClose();
90 };
91
92 #endif // SVTK_UPDATERATEDLG_H