Version: 9.16.0
SVTK_GenericRenderWindowInteractor.h
Go to the documentation of this file.
1// Copyright (C) 2007-2026 CEA, EDF, 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, or (at your option) any later version.
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
23// SALOME VTKViewer : build VTK viewer into Salome desktop
24// File :
25// Author :
26
27#ifndef SVTK_GenericRenderWindowInteractor_h
28#define SVTK_GenericRenderWindowInteractor_h
29
30#include "SVTK.h"
31
32#include <QObject>
33#include <vtkGenericRenderWindowInteractor.h>
34#include <vtkSmartPointer.h>
35
36class QTimer;
37class QWidget;
38
39class SVTK_Selector;
40//class SVTK_Renderer;
41
42#ifdef WIN32
43#pragma warning ( disable:4251 )
44#endif
45
58 public QObject,
60{
61 Q_OBJECT
62
63 public:
66
67
68 virtual
69 int
70 CreateTimer( int ) ;
71
73 virtual
74 int
75 DestroyTimer() ;
76
77 protected slots:
79 void
80 OnTimeOut();
81
82 protected:
85
86 QTimer* myTimer;
87};
88
89
98{
99 public:
102
103
105 GetSelector();
106
108 void
109 SetSelector(SVTK_Selector* theSelector);
110
112 QWidget*
113 GetRenderWidget();
114
116 void
117 SetRenderWidget(QWidget* theRenderWidget);
118
119 protected:
122
125};
126
127#ifdef WIN32
128#pragma warning ( default:4251 )
129#endif
130
131#endif
#define SVTK_EXPORT
Definition: SVTK.h:37
For more information see QT documentation.
Definition: SVTK_GenericRenderWindowInteractor.h:60
vtkTypeMacro(QVTK_GenericRenderWindowInteractor, vtkGenericRenderWindowInteractor) virtual int CreateTimer(int)
Starts the QTimer instance on defined microseconds.
QTimer * myTimer
Qt timer device.
Definition: SVTK_GenericRenderWindowInteractor.h:86
static QVTK_GenericRenderWindowInteractor * New()
QVTK_GenericRenderWindowInteractor()
Instatiate QTimer.
Definition: SVTK_GenericRenderWindowInteractor.h:98
SVTK_Selector * mySelector
Keeps a pointer to SVTK_Selector.
Definition: SVTK_GenericRenderWindowInteractor.h:123
vtkTypeMacro(SVTK_GenericRenderWindowInteractor, QVTK_GenericRenderWindowInteractor) SVTK_Selector *GetSelector()
To get access to SVTK_Selector.
static SVTK_GenericRenderWindowInteractor * New()
QWidget * myRenderWidget
Keeps a pointer to QWidget, where vtkRenderWindow maps to.
Definition: SVTK_GenericRenderWindowInteractor.h:124
Define an abstract interface for selection in SVTK package.
Definition: SVTK_Selector.h:58