VTK  9.3.20240418
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
vtkQWidgetTexture Class Reference

Allows a QWidget to be used as a texture in VTK with OpenGL. More...

#include <vtkQWidgetTexture.h>

Inheritance diagram for vtkQWidgetTexture:
[legend]
Collaboration diagram for vtkQWidgetTexture:
[legend]

Public Types

typedef vtkTextureObject Superclass
 
- Public Types inherited from vtkTextureObject
enum  {
  Lequal = 0 , Gequal , Less , Greater ,
  Equal , NotEqual , AlwaysTrue , Never ,
  NumberOfDepthTextureCompareFunctions
}
 
enum  {
  ClampToEdge = 0 , Repeat , MirroredRepeat , ClampToBorder ,
  NumberOfWrapModes
}
 
enum  {
  Nearest = 0 , Linear , NearestMipmapNearest , NearestMipmapLinear ,
  LinearMipmapNearest , LinearMipmapLinear , NumberOfMinificationModes
}
 
enum  {
  Native = 0 , Fixed8 , Fixed16 , Fixed24 ,
  Fixed32 , Float16 , Float32 , NumberOfDepthFormats
}
 
typedef vtkObject Superclass
 

Public Member Functions

virtual vtkTypeBool IsA (const char *type)
 Return 1 if this class is the same type of (or a subclass of) the named class. More...
 
vtkQWidgetTextureNewInstance () const
 
void PrintSelf (ostream &os, vtkIndent indent) override
 Methods invoked by print to print information about the object including superclasses. More...
 
QGraphicsScene * GetScene ()
 get the QScene used for rendering, this is where events will be forwarded to. More...
 
void Activate () override
 Activate and Bind the texture. More...
 
void ReleaseGraphicsResources (vtkWindow *win) override
 Free resources. More...
 
void SetWidget (QWidget *w)
 Set/Get the QWidget that this TextureObject will render/use. More...
 
QWidget * GetWidget ()
 Set/Get the QWidget that this TextureObject will render/use. More...
 
- Public Member Functions inherited from vtkTextureObject
vtkTextureObjectNewInstance () const
 
void PrintSelf (ostream &os, vtkIndent indent) override
 Methods invoked by print to print information about the object including superclasses. More...
 
virtual int GetNumberOfDimensions ()
 
virtual void SetSamples (unsigned int)
 
int GetTextureUnit ()
 Return the texture unit used for this texture. More...
 
void Deactivate ()
 Deactivate and UnBind the texture. More...
 
bool IsBound ()
 Tells if the texture object is bound to the active texture image unit. More...
 
void SendParameters ()
 Send all the texture object parameters to the hardware if not done yet. More...
 
bool Create2DFromRaw (unsigned int width, unsigned int height, int numComps, int dataType, void *data)
 Create a 2D texture from client memory numComps must be in [1-4]. More...
 
bool CreateDepthFromRaw (unsigned int width, unsigned int height, int internalFormat, int rawType, void *raw)
 Create a 2D depth texture using a raw pointer. More...
 
bool CreateTextureBuffer (unsigned int numValues, int numComps, int dataType, vtkOpenGLBufferObject *bo)
 Create a texture buffer basically a 1D texture that can be very large for passing data into the fragment shader. More...
 
bool EmulateTextureBufferWith2DTextures (unsigned int numValues, int numComps, int dataType, vtkOpenGLBufferObject *bo)
 Emulates a texture buffer with 2D texture. More...
 
bool CreateCubeFromRaw (unsigned int width, unsigned int height, int numComps, int dataType, void *data[6])
 Create a cube texture from 6 buffers from client memory. More...
 
bool Create1D (int numComps, vtkPixelBufferObject *pbo, bool shaderSupportsTextureInt)
 Create a 1D texture using the PBO. More...
 
bool Create1DFromRaw (unsigned int width, int numComps, int dataType, void *data)
 Create 1D texture from client memory. More...
 
bool Create2D (unsigned int width, unsigned int height, int numComps, vtkPixelBufferObject *pbo, bool shaderSupportsTextureInt)
 Create a 2D texture using the PBO. More...
 
bool Create3D (unsigned int width, unsigned int height, unsigned int depth, int numComps, vtkPixelBufferObject *pbo, bool shaderSupportsTextureInt)
 Create a 3D texture using the PBO. More...
 
bool Create3DFromRaw (unsigned int width, unsigned int height, unsigned int depth, int numComps, int dataType, void *data)
 Create a 3D texture from client memory numComps must be in [1-4]. More...
 
bool AllocateProxyTexture3D (unsigned int width, unsigned int height, unsigned int depth, int numComps, int dataType)
 Create a 3D texture using the GL_PROXY_TEXTURE_3D target. More...
 
vtkPixelBufferObjectDownload ()
 This is used to download raw data from the texture into a pixel buffer. More...
 
vtkPixelBufferObjectDownload (unsigned int target, unsigned int level)
 
bool CreateDepth (unsigned int width, unsigned int height, int internalFormat, vtkPixelBufferObject *pbo)
 Create a 2D depth texture using a PBO. More...
 
bool AllocateDepth (unsigned int width, unsigned int height, int internalFormat)
 Create a 2D depth texture but does not initialize its values. More...
 
bool AllocateDepthStencil (unsigned int width, unsigned int height)
 Create a 2D septh stencil texture but does not initialize its values. More...
 
bool Allocate1D (unsigned int width, int numComps, int vtkType)
 Create a 1D color texture but does not initialize its values. More...
 
bool Allocate2D (unsigned int width, unsigned int height, int numComps, int vtkType, int level=0)
 Create a 2D color texture but does not initialize its values. More...
 
bool Allocate3D (unsigned int width, unsigned int height, unsigned int depth, int numComps, int vtkType)
 Create a 3D color texture but does not initialize its values. More...
 
int GetVTKDataType ()
 Get the data type for the texture as a vtk type int i.e. More...
 
void ResetFormatAndType ()
 Reset format, internal format, and type of the texture. More...
 
unsigned int GetMinificationFilterMode (int vtktype)
 
unsigned int GetMagnificationFilterMode (int vtktype)
 
unsigned int GetWrapSMode (int vtktype)
 
unsigned int GetWrapTMode (int vtktype)
 
unsigned int GetWrapRMode (int vtktype)
 
void SetLinearMagnification (bool val)
 Tells if the magnification mode is linear (true) or nearest (false). More...
 
bool GetLinearMagnification ()
 
void CopyFromFrameBuffer (int srcXmin, int srcYmin, int dstXmin, int dstYmin, int width, int height)
 Copy a sub-part of a logical buffer of the framebuffer (color or depth) to the texture object. More...
 
void GetShiftAndScale (float &shift, float &scale)
 Get the shift and scale required in the shader to return the texture values to their original range. More...
 
void Resize (unsigned int width, unsigned int height)
 
void AssignToExistingTexture (unsigned int handle, unsigned int target)
 Assign the TextureObject to a externally provided Handle and Target. More...
 
void SetContext (vtkOpenGLRenderWindow *)
 Get/Set the context. More...
 
vtkOpenGLRenderWindowGetContext ()
 Get/Set the context. More...
 
virtual unsigned int GetWidth ()
 Get the texture dimensions. More...
 
virtual unsigned int GetHeight ()
 Get the texture dimensions. More...
 
virtual unsigned int GetDepth ()
 Get the texture dimensions. More...
 
virtual unsigned int GetSamples ()
 Get the texture dimensions. More...
 
virtual int GetComponents ()
 Get the texture dimensions. More...
 
unsigned int GetTuples ()
 Get the texture dimensions. More...
 
virtual unsigned int GetTarget ()
 Returns OpenGL texture target to which the texture is/can be bound. More...
 
virtual unsigned int GetHandle ()
 Returns the OpenGL handle. More...
 
void Bind ()
 Bind the texture, must have been created using Create(). More...
 
virtual void SetAutoParameters (int)
 Get/Set AutoParameters flag. More...
 
virtual int GetAutoParameters ()
 Get/Set AutoParameters flag. More...
 
virtual void AutoParametersOn ()
 Get/Set AutoParameters flag. More...
 
virtual void AutoParametersOff ()
 Get/Set AutoParameters flag. More...
 
bool Create2D (unsigned int width, unsigned int height, int numComps, int vtktype, bool)
 Create texture without uploading any data. More...
 
bool Create3D (unsigned int width, unsigned int height, unsigned int depth, int numComps, int vtktype, bool)
 Create texture without uploading any data. More...
 
int GetDataType (int vtk_scalar_type)
 Get the data type for the texture as GLenum type. More...
 
void SetDataType (unsigned int glType)
 Get the data type for the texture as GLenum type. More...
 
int GetDefaultDataType (int vtk_scalar_type)
 Get the data type for the texture as GLenum type. More...
 
unsigned int GetInternalFormat (int vtktype, int numComps, bool shaderSupportsTextureInt)
 Get/Set internal format (OpenGL internal format) that should be used. More...
 
void SetInternalFormat (unsigned int glInternalFormat)
 Get/Set internal format (OpenGL internal format) that should be used. More...
 
unsigned int GetDefaultInternalFormat (int vtktype, int numComps, bool shaderSupportsTextureInt)
 Get/Set internal format (OpenGL internal format) that should be used. More...
 
unsigned int GetFormat (int vtktype, int numComps, bool shaderSupportsTextureInt)
 Get/Set format (OpenGL internal format) that should be used. More...
 
void SetFormat (unsigned int glFormat)
 Get/Set format (OpenGL internal format) that should be used. More...
 
unsigned int GetDefaultFormat (int vtktype, int numComps, bool shaderSupportsTextureInt)
 Get/Set format (OpenGL internal format) that should be used. More...
 
virtual void SetRequireDepthBufferFloat (bool)
 Optional, require support for floating point depth buffer formats. More...
 
virtual bool GetRequireDepthBufferFloat ()
 Optional, require support for floating point depth buffer formats. More...
 
virtual bool GetSupportsDepthBufferFloat ()
 Optional, require support for floating point depth buffer formats. More...
 
virtual void SetRequireTextureFloat (bool)
 Optional, require support for floating point texture formats. More...
 
virtual bool GetRequireTextureFloat ()
 Optional, require support for floating point texture formats. More...
 
virtual bool GetSupportsTextureFloat ()
 Optional, require support for floating point texture formats. More...
 
virtual void SetRequireTextureInteger (bool)
 Optional, require support for integer texture formats. More...
 
virtual bool GetRequireTextureInteger ()
 Optional, require support for integer texture formats. More...
 
virtual bool GetSupportsTextureInteger ()
 Optional, require support for integer texture formats. More...
 
virtual int GetWrapS ()
 Wrap mode for the first texture coordinate "s" Valid values are: More...
 
virtual void SetWrapS (int)
 Wrap mode for the first texture coordinate "s" Valid values are: More...
 
virtual int GetWrapT ()
 Wrap mode for the first texture coordinate "t" Valid values are: More...
 
virtual void SetWrapT (int)
 Wrap mode for the first texture coordinate "t" Valid values are: More...
 
virtual int GetWrapR ()
 Wrap mode for the first texture coordinate "r" Valid values are: More...
 
virtual void SetWrapR (int)
 Wrap mode for the first texture coordinate "r" Valid values are: More...
 
virtual int GetMinificationFilter ()
 Minification filter mode. More...
 
virtual void SetMinificationFilter (int)
 Minification filter mode. More...
 
virtual int GetMagnificationFilter ()
 Magnification filter mode. More...
 
virtual void SetMagnificationFilter (int)
 Magnification filter mode. More...
 
virtual void SetBorderColor (float, float, float, float)
 Border Color (RGBA). More...
 
virtual void SetBorderColor (float[4])
 Border Color (RGBA). More...
 
virtual float * GetBorderColor ()
 Border Color (RGBA). More...
 
virtual void GetBorderColor (float &, float &, float &, float &)
 Border Color (RGBA). More...
 
virtual void GetBorderColor (float[4])
 Border Color (RGBA). More...
 
virtual void SetMinLOD (float)
 Lower-clamp the computed LOD against this value. More...
 
virtual float GetMinLOD ()
 Lower-clamp the computed LOD against this value. More...
 
virtual void SetMaxLOD (float)
 Upper-clamp the computed LOD against this value. More...
 
virtual float GetMaxLOD ()
 Upper-clamp the computed LOD against this value. More...
 
virtual void SetBaseLevel (int)
 Level of detail of the first texture image. More...
 
virtual int GetBaseLevel ()
 Level of detail of the first texture image. More...
 
virtual void SetMaxLevel (int)
 Level of detail of the first texture image. More...
 
virtual int GetMaxLevel ()
 Level of detail of the first texture image. More...
 
virtual bool GetDepthTextureCompare ()
 Tells if the output of a texture unit with a depth texture uses comparison or not. More...
 
virtual void SetDepthTextureCompare (bool)
 Tells if the output of a texture unit with a depth texture uses comparison or not. More...
 
virtual int GetDepthTextureCompareFunction ()
 In case DepthTextureCompare is true, specify the comparison function in use. More...
 
virtual void SetDepthTextureCompareFunction (int)
 In case DepthTextureCompare is true, specify the comparison function in use. More...
 
virtual bool GetGenerateMipmap ()
 Tells the hardware to generate mipmap textures from the first texture image at BaseLevel. More...
 
virtual void SetGenerateMipmap (bool)
 Tells the hardware to generate mipmap textures from the first texture image at BaseLevel. More...
 
virtual void SetMaximumAnisotropicFiltering (float)
 Set/Get the maximum anisotropic filtering to use. More...
 
virtual float GetMaximumAnisotropicFiltering ()
 Set/Get the maximum anisotropic filtering to use. More...
 
void CopyToFrameBuffer (vtkShaderProgram *program, vtkOpenGLVertexArrayObject *vao)
 Copy the texture (src) in the current framebuffer. More...
 
void CopyToFrameBuffer (int srcXmin, int srcYmin, int srcXmax, int srcYmax, int dstXmin, int dstYmin, int dstXmax, int dstYmax, int dstSizeX, int dstSizeY, vtkShaderProgram *program, vtkOpenGLVertexArrayObject *vao)
 Copy the texture (src) in the current framebuffer. More...
 
void CopyToFrameBuffer (int srcXmin, int srcYmin, int srcXmax, int srcYmax, int dstXmin, int dstYmin, int dstSizeX, int dstSizeY, vtkShaderProgram *program, vtkOpenGLVertexArrayObject *vao)
 Copy the texture (src) in the current framebuffer. More...
 
void CopyToFrameBuffer (float *tcoords, float *verts, vtkShaderProgram *program, vtkOpenGLVertexArrayObject *vao)
 Copy the texture (src) in the current framebuffer. More...
 
virtual bool GetUseSRGBColorSpace ()
 Is this texture using the sRGB color space. More...
 
virtual void SetUseSRGBColorSpace (bool)
 Is this texture using the sRGB color space. More...
 
virtual void UseSRGBColorSpaceOn ()
 Is this texture using the sRGB color space. More...
 
virtual void UseSRGBColorSpaceOff ()
 Is this texture using the sRGB color space. More...
 
int GetMaximumTextureSize3D ()
 Overload which uses the internal context to query the maximum 3D texture size. More...
 
- Public Member Functions inherited from vtkObject
 vtkBaseTypeMacro (vtkObject, vtkObjectBase)
 
virtual void DebugOn ()
 Turn debugging output on. More...
 
virtual void DebugOff ()
 Turn debugging output off. More...
 
bool GetDebug ()
 Get the value of the debug flag. More...
 
void SetDebug (bool debugFlag)
 Set the value of the debug flag. More...
 
virtual void Modified ()
 Update the modification time for this object. More...
 
virtual vtkMTimeType GetMTime ()
 Return this object's modified time. More...
 
void RemoveObserver (unsigned long tag)
 
void RemoveObservers (unsigned long event)
 
void RemoveObservers (const char *event)
 
void RemoveAllObservers ()
 
vtkTypeBool HasObserver (unsigned long event)
 
vtkTypeBool HasObserver (const char *event)
 
vtkTypeBool InvokeEvent (unsigned long event)
 
vtkTypeBool InvokeEvent (const char *event)
 
std::string GetObjectDescription () const override
 The object description printed in messages and PrintSelf output. More...
 
unsigned long AddObserver (unsigned long event, vtkCommand *, float priority=0.0f)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
unsigned long AddObserver (const char *event, vtkCommand *, float priority=0.0f)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
vtkCommandGetCommand (unsigned long tag)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
void RemoveObserver (vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
void RemoveObservers (unsigned long event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
void RemoveObservers (const char *event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
vtkTypeBool HasObserver (unsigned long event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
vtkTypeBool HasObserver (const char *event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
template<class U , class T >
unsigned long AddObserver (unsigned long event, U observer, void(T::*callback)(), float priority=0.0f)
 Overloads to AddObserver that allow developers to add class member functions as callbacks for events. More...
 
template<class U , class T >
unsigned long AddObserver (unsigned long event, U observer, void(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f)
 Overloads to AddObserver that allow developers to add class member functions as callbacks for events. More...
 
template<class U , class T >
unsigned long AddObserver (unsigned long event, U observer, bool(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f)
 Allow user to set the AbortFlagOn() with the return value of the callback method. More...
 
vtkTypeBool InvokeEvent (unsigned long event, void *callData)
 This method invokes an event and return whether the event was aborted or not. More...
 
vtkTypeBool InvokeEvent (const char *event, void *callData)
 This method invokes an event and return whether the event was aborted or not. More...
 
virtual void SetObjectName (const std::string &objectName)
 Set/get the name of this object for reporting purposes. More...
 
virtual std::string GetObjectName () const
 Set/get the name of this object for reporting purposes. More...
 
- Public Member Functions inherited from vtkObjectBase
const char * GetClassName () const
 Return the class name as a string. More...
 
virtual vtkIdType GetNumberOfGenerationsFromBase (const char *name)
 Given the name of a base class of this class type, return the distance of inheritance between this class type and the named class (how many generations of inheritance are there between this class and the named class). More...
 
virtual void Delete ()
 Delete a VTK object. More...
 
virtual void FastDelete ()
 Delete a reference to this object. More...
 
void InitializeObjectBase ()
 
void Print (ostream &os)
 Print an object to an ostream. More...
 
void Register (vtkObjectBase *o)
 Increase the reference count (mark as used by another object). More...
 
virtual void UnRegister (vtkObjectBase *o)
 Decrease the reference count (release by another object). More...
 
int GetReferenceCount ()
 Return the current reference count of this object. More...
 
void SetReferenceCount (int)
 Sets the reference count. More...
 
bool GetIsInMemkind () const
 A local state flag that remembers whether this object lives in the normal or extended memory space. More...
 
virtual void PrintHeader (ostream &os, vtkIndent indent)
 Methods invoked by print to print information about the object including superclasses. More...
 
virtual void PrintTrailer (ostream &os, vtkIndent indent)
 Methods invoked by print to print information about the object including superclasses. More...
 
virtual bool UsesGarbageCollector () const
 Indicate whether the class uses vtkGarbageCollector or not. More...
 

Static Public Member Functions

static vtkQWidgetTextureNew ()
 
static vtkTypeBool IsTypeOf (const char *type)
 
static vtkQWidgetTextureSafeDownCast (vtkObjectBase *o)
 
- Static Public Member Functions inherited from vtkTextureObject
static vtkTextureObjectNew ()
 
static vtkTypeBool IsTypeOf (const char *type)
 
static vtkTextureObjectSafeDownCast (vtkObjectBase *o)
 
static bool IsSupported (vtkOpenGLRenderWindow *renWin, bool requireTexFloat, bool requireDepthFloat, bool requireTexInt)
 Returns if the context supports the required extensions. More...
 
static bool IsSupported (vtkOpenGLRenderWindow *renWin)
 Check for feature support, without any optional features. More...
 
static int GetMaximumTextureSize (vtkOpenGLRenderWindow *context)
 Query and return maximum texture size (dimension) supported by the OpenGL driver for a particular context. More...
 
static int GetMaximumTextureSize3D (vtkOpenGLRenderWindow *context)
 Query and return maximum texture size (dimension) supported by the OpenGL driver for a particular context. More...
 
- Static Public Member Functions inherited from vtkObject
static vtkObjectNew ()
 Create an object with Debug turned off, modified time initialized to zero, and reference counting on. More...
 
static void BreakOnError ()
 This method is called when vtkErrorMacro executes. More...
 
static void SetGlobalWarningDisplay (vtkTypeBool val)
 This is a global flag that controls whether any debug, warning or error messages are displayed. More...
 
static void GlobalWarningDisplayOn ()
 This is a global flag that controls whether any debug, warning or error messages are displayed. More...
 
static void GlobalWarningDisplayOff ()
 This is a global flag that controls whether any debug, warning or error messages are displayed. More...
 
static vtkTypeBool GetGlobalWarningDisplay ()
 This is a global flag that controls whether any debug, warning or error messages are displayed. More...
 
- Static Public Member Functions inherited from vtkObjectBase
static vtkTypeBool IsTypeOf (const char *name)
 Return 1 if this class type is the same type of (or a subclass of) the named class. More...
 
static vtkIdType GetNumberOfGenerationsFromBaseType (const char *name)
 Given a the name of a base class of this class type, return the distance of inheritance between this class type and the named class (how many generations of inheritance are there between this class and the named class). More...
 
static vtkObjectBaseNew ()
 Create an object with Debug turned off, modified time initialized to zero, and reference counting on. More...
 
static void SetMemkindDirectory (const char *directoryname)
 The name of a directory, ideally mounted -o dax, to memory map an extended memory space within. More...
 
static bool GetUsingMemkind ()
 A global state flag that controls whether vtkObjects are constructed in the usual way (the default) or within the extended memory space. More...
 

Protected Member Functions

virtual vtkObjectBaseNewInstanceInternal () const
 
 vtkQWidgetTexture ()
 
 ~vtkQWidgetTexture () override
 
void AllocateFromWidget ()
 
- Protected Member Functions inherited from vtkTextureObject
 vtkTextureObject ()
 
 ~vtkTextureObject () override
 
bool LoadRequiredExtensions (vtkOpenGLRenderWindow *renWin)
 Load all necessary extensions. More...
 
void CreateTexture ()
 Creates a texture handle if not already created. More...
 
void DestroyTexture ()
 Destroy the texture. More...
 
- Protected Member Functions inherited from vtkObject
 vtkObject ()
 
 ~vtkObject () override
 
void RegisterInternal (vtkObjectBase *, vtkTypeBool check) override
 
void UnRegisterInternal (vtkObjectBase *, vtkTypeBool check) override
 
void InternalGrabFocus (vtkCommand *mouseEvents, vtkCommand *keypressEvents=nullptr)
 These methods allow a command to exclusively grab all events. More...
 
void InternalReleaseFocus ()
 These methods allow a command to exclusively grab all events. More...
 
- Protected Member Functions inherited from vtkObjectBase
 vtkObjectBase ()
 
virtual ~vtkObjectBase ()
 
virtual void ReportReferences (vtkGarbageCollector *)
 
 vtkObjectBase (const vtkObjectBase &)
 
void operator= (const vtkObjectBase &)
 

Protected Attributes

QGraphicsScene * Scene
 
QWidget * Widget
 
std::function< void()> RedrawMethod
 
unsigned char * ImageBuffer
 
std::array< int, 2 > ImageBufferDimensions
 
- Protected Attributes inherited from vtkTextureObject
vtkGenericOpenGLResourceFreeCallbackResourceCallback
 
int NumberOfDimensions
 
unsigned int Width
 
unsigned int Height
 
unsigned int Depth
 
unsigned int Samples
 
bool UseSRGBColorSpace
 
float MaximumAnisotropicFiltering
 
unsigned int Target
 
unsigned int Format
 
unsigned int InternalFormat
 
unsigned int Type
 
int Components
 
vtkWeakPointer< vtkOpenGLRenderWindowContext
 
unsigned int Handle
 
bool OwnHandle
 
bool RequireTextureInteger
 
bool SupportsTextureInteger
 
bool RequireTextureFloat
 
bool SupportsTextureFloat
 
bool RequireDepthBufferFloat
 
bool SupportsDepthBufferFloat
 
int WrapS
 
int WrapT
 
int WrapR
 
int MinificationFilter
 
int MagnificationFilter
 
float MinLOD
 
float MaxLOD
 
int BaseLevel
 
int MaxLevel
 
float BorderColor [4]
 
bool DepthTextureCompare
 
int DepthTextureCompareFunction
 
bool GenerateMipmap
 
int AutoParameters
 
vtkTimeStamp SendParametersTime
 
vtkOpenGLHelperShaderProgram
 
vtkOpenGLBufferObjectBufferObject
 
- Protected Attributes inherited from vtkObject
bool Debug
 
vtkTimeStamp MTime
 
vtkSubjectHelper * SubjectHelper
 
std::string ObjectName
 
- Protected Attributes inherited from vtkObjectBase
std::atomic< int32_t > ReferenceCount
 
vtkWeakPointerBase ** WeakPointers
 

Additional Inherited Members

- Static Protected Member Functions inherited from vtkObjectBase
static vtkMallocingFunction GetCurrentMallocFunction ()
 
static vtkReallocingFunction GetCurrentReallocFunction ()
 
static vtkFreeingFunction GetCurrentFreeFunction ()
 
static vtkFreeingFunction GetAlternateFreeFunction ()
 

Detailed Description

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.

Definition at line 23 of file vtkQWidgetTexture.h.

Member Typedef Documentation

◆ Superclass

Definition at line 27 of file vtkQWidgetTexture.h.

Constructor & Destructor Documentation

◆ vtkQWidgetTexture()

vtkQWidgetTexture::vtkQWidgetTexture ( )
protected

◆ ~vtkQWidgetTexture()

vtkQWidgetTexture::~vtkQWidgetTexture ( )
overrideprotected

Member Function Documentation

◆ New()

static vtkQWidgetTexture* vtkQWidgetTexture::New ( )
static

◆ IsTypeOf()

static vtkTypeBool vtkQWidgetTexture::IsTypeOf ( const char *  type)
static

◆ IsA()

virtual vtkTypeBool vtkQWidgetTexture::IsA ( const char *  name)
virtual

Return 1 if this class is the same type of (or a subclass of) the named class.

Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.

Reimplemented from vtkTextureObject.

◆ SafeDownCast()

static vtkQWidgetTexture* vtkQWidgetTexture::SafeDownCast ( vtkObjectBase o)
static

◆ NewInstanceInternal()

virtual vtkObjectBase* vtkQWidgetTexture::NewInstanceInternal ( ) const
protectedvirtual

Reimplemented from vtkTextureObject.

◆ NewInstance()

vtkQWidgetTexture* vtkQWidgetTexture::NewInstance ( ) const

◆ PrintSelf()

void vtkQWidgetTexture::PrintSelf ( ostream &  os,
vtkIndent  indent 
)
overridevirtual

Methods invoked by print to print information about the object including superclasses.

Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.

Reimplemented from vtkObject.

◆ SetWidget()

void vtkQWidgetTexture::SetWidget ( QWidget *  w)

Set/Get the QWidget that this TextureObject will render/use.

◆ GetWidget()

QWidget* vtkQWidgetTexture::GetWidget ( )
inline

Set/Get the QWidget that this TextureObject will render/use.

Definition at line 35 of file vtkQWidgetTexture.h.

◆ GetScene()

QGraphicsScene* vtkQWidgetTexture::GetScene ( )
inline

get the QScene used for rendering, this is where events will be forwarded to.

Definition at line 42 of file vtkQWidgetTexture.h.

◆ Activate()

void vtkQWidgetTexture::Activate ( )
overridevirtual

Activate and Bind the texture.

Overloaded to handle the opengl related setup at the same time. as We know the context will be active then.

Reimplemented from vtkTextureObject.

◆ ReleaseGraphicsResources()

void vtkQWidgetTexture::ReleaseGraphicsResources ( vtkWindow win)
overridevirtual

Free resources.

Reimplemented from vtkTextureObject.

◆ AllocateFromWidget()

void vtkQWidgetTexture::AllocateFromWidget ( )
protected

Member Data Documentation

◆ Scene

QGraphicsScene* vtkQWidgetTexture::Scene
protected

Definition at line 59 of file vtkQWidgetTexture.h.

◆ Widget

QWidget* vtkQWidgetTexture::Widget
protected

Definition at line 60 of file vtkQWidgetTexture.h.

◆ RedrawMethod

std::function<void()> vtkQWidgetTexture::RedrawMethod
protected

Definition at line 63 of file vtkQWidgetTexture.h.

◆ ImageBuffer

unsigned char* vtkQWidgetTexture::ImageBuffer
protected

Definition at line 68 of file vtkQWidgetTexture.h.

◆ ImageBufferDimensions

std::array<int, 2> vtkQWidgetTexture::ImageBufferDimensions
protected

Definition at line 69 of file vtkQWidgetTexture.h.


The documentation for this class was generated from the following file: