You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

138 lines
3.7 KiB
C++

/*=========================================================================
Program: Visualization Toolkit
Module: QVTKInteractor.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/*=========================================================================
Copyright 2004 Sandia Corporation.
Under the terms of Contract DE-AC04-94AL85000, there is a non-exclusive
license for use of this work by or on behalf of the
U.S. Government. Redistribution and use in source and binary forms, with
or without modification, are permitted provided that this Notice and any
statement of authorship are reproduced on all copies.
=========================================================================*/
#ifndef Q_VTK_INTERACTOR_H
#define Q_VTK_INTERACTOR_H
#include "QVTKWin32Header.h"
#include "vtkGUISupportQtModule.h" // For export macro
#include <QtCore/QObject>
#include <vtkCommand.h>
#include <vtkRenderWindowInteractor.h>
#include "vtkTDxConfigure.h" // defines VTK_USE_TDX
#if defined(VTK_USE_TDX) && defined(Q_OS_WIN)
class vtkTDxWinDevice;
#endif
#if defined(VTK_USE_TDX) && defined(Q_OS_MAC)
class vtkTDxMacDevice;
#endif
#if defined(VTK_USE_TDX) && (defined(Q_WS_X11) || defined(Q_OS_LINUX))
class vtkTDxDevice;
class vtkTDxUnixDevice;
#endif
class QVTKInteractorInternal;
/**
* @class QVTKInteractor
* @brief - an interactor for QVTKOpenGLNativeWidget (and QVTKWiget).
*
* QVTKInteractor handles relaying Qt events to VTK.
* @sa QVTKOpenGLNativeWidget
*/
class VTKGUISUPPORTQT_EXPORT QVTKInteractor : public vtkRenderWindowInteractor
{
public:
static QVTKInteractor* New();
vtkTypeMacro(QVTKInteractor, vtkRenderWindowInteractor);
/**
* Enum for additional event types supported.
* These events can be picked up by command observers on the interactor.
*/
enum vtkCustomEvents
{
ContextMenuEvent = vtkCommand::UserEvent + 100,
DragEnterEvent,
DragMoveEvent,
DragLeaveEvent,
DropEvent
};
/**
* Overloaded terminate app, which does nothing in Qt.
* Use qApp->exit() instead.
*/
void TerminateApp() override;
/**
* Overloaded start method does nothing.
* Use qApp->exec() instead.
*/
void Start() override;
void Initialize() override;
/**
* Start listening events on 3DConnexion device.
*/
virtual void StartListening();
/**
* Stop listening events on 3DConnexion device.
*/
virtual void StopListening();
/**
* timer event slot
*/
virtual void TimerEvent(int timerId);
#if defined(VTK_USE_TDX) && (defined(Q_WS_X11) || defined(Q_OS_LINUX))
virtual vtkTDxUnixDevice* GetDevice();
virtual void SetDevice(vtkTDxDevice* device);
#endif
protected:
// constructor
QVTKInteractor();
// destructor
~QVTKInteractor() override;
// create a Qt Timer
int InternalCreateTimer(int timerId, int timerType, unsigned long duration) override;
// destroy a Qt Timer
int InternalDestroyTimer(int platformTimerId) override;
#if defined(VTK_USE_TDX) && defined(Q_OS_WIN)
vtkTDxWinDevice* Device;
#endif
#if defined(VTK_USE_TDX) && defined(Q_OS_MAC)
vtkTDxMacDevice* Device;
#endif
#if defined(VTK_USE_TDX) && (defined(Q_WS_X11) || defined(Q_OS_LINUX))
vtkTDxUnixDevice* Device;
#endif
private:
QVTKInteractorInternal* Internal;
QVTKInteractor(const QVTKInteractor&) = delete;
void operator=(const QVTKInteractor&) = delete;
};
#endif