ActiViz .NET  5.8.0
Public Member Functions | Static Public Member Functions | Public Attributes | Static Public Attributes | Protected Member Functions | Private Member Functions | Static Private Member Functions
Kitware.VTK.vtkRenderViewBase Class Reference

vtkRenderViewBase - A base view containing a renderer. More...

Inheritance diagram for Kitware.VTK.vtkRenderViewBase:
[legend]
Collaboration diagram for Kitware.VTK.vtkRenderViewBase:
[legend]

List of all members.

Public Member Functions

 vtkRenderViewBase (IntPtr rawCppThis, bool callDisposalMethod, bool strong)
 Automatically generated constructor - called from generated code. DO NOT call directly.
 vtkRenderViewBase ()
 Undocumented Block.
virtual vtkRenderWindowInteractor GetInteractor ()
 The render window interactor. Note that this requires special handling in order to do correctly - see the notes in the detailed description of vtkRenderViewBase.
virtual vtkRenderWindow GetRenderWindow ()
 Get a handle to the render window.
virtual vtkRenderer GetRenderer ()
 Gets the renderer for this view.
override int IsA (string type)
 Undocumented Block.
new vtkRenderViewBase NewInstance ()
 Undocumented Block.
virtual void Render ()
 Updates the representations, then calls Render() on the render window associated with this view.
virtual void ResetCamera ()
 Updates the representations, then calls ResetCamera() on the renderer associated with this view.
virtual void ResetCameraClippingRange ()
 Updates the representations, then calls ResetCameraClippingRange() on the renderer associated with this view.
virtual void SetInteractor (vtkRenderWindowInteractor arg0)
 The render window interactor. Note that this requires special handling in order to do correctly - see the notes in the detailed description of vtkRenderViewBase.
virtual void SetRenderWindow (vtkRenderWindow win)
 Set the render window for this view. Note that this requires special handling in order to do correctly - see the notes in the detailed description of vtkRenderViewBase.
virtual void SetRenderer (vtkRenderer ren)
 Sets the renderer for this view.

Static Public Member Functions

static new vtkRenderViewBase New ()
 Undocumented Block.
static new int IsTypeOf (string type)
 Undocumented Block.
static new vtkRenderViewBase SafeDownCast (vtkObjectBase o)
 Undocumented Block.

Public Attributes

new const string MRFullTypeName = "Kitware.VTK.vtkRenderViewBase"
 Automatically generated type registration mechanics.

Static Public Attributes

static new readonly string MRClassNameKey = "17vtkRenderViewBase"
 Automatically generated type registration mechanics.

Protected Member Functions

override void Dispose (bool disposing)
 Automatically generated protected Dispose method - called from public Dispose or the C# destructor. DO NOT call directly.

Private Member Functions

static internal IntPtr vtkRenderViewBase_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkRenderViewBase_GetInteractor_01 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkRenderViewBase_GetRenderWindow_02 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkRenderViewBase_GetRenderer_03 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal int vtkRenderViewBase_IsA_04 (HandleRef pThis, string type)
static internal int vtkRenderViewBase_IsTypeOf_05 (string type)
static internal IntPtr vtkRenderViewBase_NewInstance_07 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkRenderViewBase_Render_08 (HandleRef pThis)
static internal void vtkRenderViewBase_ResetCamera_09 (HandleRef pThis)
static internal void vtkRenderViewBase_ResetCameraClippingRange_10 (HandleRef pThis)
static internal IntPtr vtkRenderViewBase_SafeDownCast_11 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkRenderViewBase_SetInteractor_12 (HandleRef pThis, HandleRef arg0)
static internal void vtkRenderViewBase_SetRenderWindow_13 (HandleRef pThis, HandleRef win)
static internal void vtkRenderViewBase_SetRenderer_14 (HandleRef pThis, HandleRef ren)

Static Private Member Functions

static vtkRenderViewBase ()
 Automatically generated type registration mechanics.

Detailed Description

vtkRenderViewBase - A base view containing a renderer.

Description vtkRenderViewBase is a view which contains a vtkRenderer. You may add vtkActors directly to the renderer.

This class is also the parent class for any more specialized view which uses a renderer.

In order to use the view with a QVTKWidget the following code is required to ensure the interactor and render window are initialized properly.

    QVTKWidget *widget = new QVTKWidget;
    vtkContextView *view = vtkContextView::New();
    view->SetInteractor(widget->GetInteractor());
    widget->SetRenderWindow(view->GetRenderWindow());

Constructor & Destructor Documentation

Automatically generated type registration mechanics.

Kitware.VTK.vtkRenderViewBase.vtkRenderViewBase ( IntPtr  rawCppThis,
bool  callDisposalMethod,
bool  strong 
)

Automatically generated constructor - called from generated code. DO NOT call directly.

Undocumented Block.


Member Function Documentation

override void Kitware.VTK.vtkRenderViewBase.Dispose ( bool  disposing) [protected]

The render window interactor. Note that this requires special handling in order to do correctly - see the notes in the detailed description of vtkRenderViewBase.

Here is the call graph for this function:

Gets the renderer for this view.

Here is the call graph for this function:

Get a handle to the render window.

Here is the call graph for this function:

override int Kitware.VTK.vtkRenderViewBase.IsA ( string  type) [virtual]
static new int Kitware.VTK.vtkRenderViewBase.IsTypeOf ( string  type) [static]
virtual void Kitware.VTK.vtkRenderViewBase.Render ( ) [virtual]

Updates the representations, then calls Render() on the render window associated with this view.

Reimplemented in Kitware.VTK.vtkRenderView, Kitware.VTK.vtkGeoView, and Kitware.VTK.vtkGeoView2D.

virtual void Kitware.VTK.vtkRenderViewBase.ResetCamera ( ) [virtual]

Updates the representations, then calls ResetCamera() on the renderer associated with this view.

Updates the representations, then calls ResetCameraClippingRange() on the renderer associated with this view.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkView.

Reimplemented in Kitware.VTK.vtkGraphLayoutView, Kitware.VTK.vtkRenderView, Kitware.VTK.vtkTreeAreaView, Kitware.VTK.vtkGeoView, Kitware.VTK.vtkHierarchicalGraphView, Kitware.VTK.vtkParallelCoordinatesView, Kitware.VTK.vtkGeoView2D, Kitware.VTK.vtkTreeRingView, Kitware.VTK.vtkContextView, Kitware.VTK.vtkIcicleView, and Kitware.VTK.vtkTreeMapView.

Here is the call graph for this function:

The render window interactor. Note that this requires special handling in order to do correctly - see the notes in the detailed description of vtkRenderViewBase.

Reimplemented in Kitware.VTK.vtkRenderView.

virtual void Kitware.VTK.vtkRenderViewBase.SetRenderer ( vtkRenderer  ren) [virtual]

Sets the renderer for this view.

Set the render window for this view. Note that this requires special handling in order to do correctly - see the notes in the detailed description of vtkRenderViewBase.

Reimplemented in Kitware.VTK.vtkRenderView.

static internal IntPtr Kitware.VTK.vtkRenderViewBase.vtkRenderViewBase_GetInteractor_01 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkRenderViewBase.vtkRenderViewBase_GetRenderer_03 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkRenderViewBase.vtkRenderViewBase_GetRenderWindow_02 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal int Kitware.VTK.vtkRenderViewBase.vtkRenderViewBase_IsA_04 ( HandleRef  pThis,
string  type 
) [private]
static internal int Kitware.VTK.vtkRenderViewBase.vtkRenderViewBase_IsTypeOf_05 ( string  type) [private]
static internal IntPtr Kitware.VTK.vtkRenderViewBase.vtkRenderViewBase_New ( ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkRenderViewBase.vtkRenderViewBase_NewInstance_07 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkRenderViewBase.vtkRenderViewBase_Render_08 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkRenderViewBase.vtkRenderViewBase_ResetCamera_09 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkRenderViewBase.vtkRenderViewBase_ResetCameraClippingRange_10 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkRenderViewBase.vtkRenderViewBase_SafeDownCast_11 ( HandleRef  o,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkRenderViewBase.vtkRenderViewBase_SetInteractor_12 ( HandleRef  pThis,
HandleRef  arg0 
) [private]
static internal void Kitware.VTK.vtkRenderViewBase.vtkRenderViewBase_SetRenderer_14 ( HandleRef  pThis,
HandleRef  ren 
) [private]
static internal void Kitware.VTK.vtkRenderViewBase.vtkRenderViewBase_SetRenderWindow_13 ( HandleRef  pThis,
HandleRef  win 
) [private]

Member Data Documentation

new readonly string Kitware.VTK.vtkRenderViewBase.MRClassNameKey = "17vtkRenderViewBase" [static]
new const string Kitware.VTK.vtkRenderViewBase.MRFullTypeName = "Kitware.VTK.vtkRenderViewBase"

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