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.
86 lines
2.3 KiB
C++
86 lines
2.3 KiB
C++
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: vtkQWidgetTexture.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.
|
|
|
|
=========================================================================*/
|
|
#ifndef vtkQWidgetTexture_h
|
|
#define vtkQWidgetTexture_h
|
|
|
|
#include "vtkGUISupportQtModule.h" // For export macro
|
|
#include "vtkTextureObject.h"
|
|
#include <functional> // for ivar
|
|
|
|
class QGraphicsScene;
|
|
class QOffscreenSurface;
|
|
class QOpenGLFramebufferObject;
|
|
class QWidget;
|
|
|
|
/**
|
|
* @class vtkQWidgetTexture
|
|
* @brief Allows a QWidget to be used as a texture in VTK with OpenGL
|
|
*
|
|
* This class works by rendering the QWidget into a Framebuffer
|
|
* and then sending the OpenGL texture handle to VTK for rendering.
|
|
*/
|
|
class VTKGUISUPPORTQT_EXPORT vtkQWidgetTexture : public vtkTextureObject
|
|
{
|
|
public:
|
|
static vtkQWidgetTexture* New();
|
|
vtkTypeMacro(vtkQWidgetTexture, vtkTextureObject);
|
|
|
|
//@{
|
|
/**
|
|
* Set/Get the QWidget that this TextureObject will render/use
|
|
*/
|
|
void SetWidget(QWidget* w);
|
|
QWidget* GetWidget() { return this->Widget; }
|
|
//@}
|
|
|
|
/**
|
|
* get the QScene used for rendering, this is where events will
|
|
* be forwarded to.
|
|
*/
|
|
QGraphicsScene* GetScene() { return this->Scene; }
|
|
|
|
/**
|
|
* Activate and Bind the texture. Ovrloaded to handle the opengl related
|
|
* setup at the same time. as We know the context will be active then.
|
|
*/
|
|
void Activate() override;
|
|
|
|
/**
|
|
* Free resources
|
|
*/
|
|
void ReleaseGraphicsResources(vtkWindow* win) override;
|
|
|
|
protected:
|
|
vtkQWidgetTexture();
|
|
~vtkQWidgetTexture() override;
|
|
|
|
QGraphicsScene* Scene;
|
|
QOffscreenSurface* OffscreenSurface;
|
|
QOpenGLFramebufferObject* Framebuffer;
|
|
QWidget* Widget;
|
|
|
|
// method called when the widget needs repainting
|
|
std::function<void()> RedrawMethod;
|
|
|
|
// internal method to setup the scene/framebuffer/etc
|
|
void AllocateFromWidget();
|
|
|
|
private:
|
|
vtkQWidgetTexture(const vtkQWidgetTexture&) = delete;
|
|
void operator=(const vtkQWidgetTexture&) = delete;
|
|
};
|
|
|
|
#endif
|