Medical Imaging Interaction Toolkit
2016.11.0
Medical Imaging Interaction Toolkit
|
Base class of all OpenGL-based mappers. More...
#include <mitkGLMapper.h>
Public Member Functions | |
mitkClassMacro (GLMapper, Mapper) | |
virtual void | Paint (mitk::BaseRenderer *renderer)=0 |
Do the painting into the renderer. More... | |
virtual void | ApplyProperties (mitk::BaseRenderer *renderer) |
Apply color and opacity properties read from the PropertyList. More... | |
virtual void | ApplyColorAndOpacityProperties (mitk::BaseRenderer *renderer, vtkActor *actor=NULL) override |
Apply color and opacity properties read from the PropertyList. The actor is not used in the GLMappers. Called by mapper subclasses. More... | |
void | MitkRender (mitk::BaseRenderer *renderer, mitk::VtkPropRenderer::RenderType type) override |
Checks visibility and calls the paint method. More... | |
virtual bool | IsVtkBased () const override |
Returns whether this is a vtk-based mapper. More... | |
Public Member Functions inherited from mitk::Mapper | |
virtual std::vector< std::string > | GetClassHierarchy () const |
virtual const char * | GetClassName () const |
virtual void | SetDataNode (DataNode *_arg) |
Set the DataNode containing the data to map. More... | |
virtual DataNode * | GetDataNode () const |
Get the DataNode containing the data to map. Method only returns valid DataNode Pointer if the mapper belongs to a data node. Otherwise, the returned DataNode Pointer might be invalid. More... | |
BaseData * | GetData () const |
Get the data to map. More... | |
virtual bool | GetColor (float rgb[3], BaseRenderer *renderer, const char *name="color") const |
Convenience access method for color properties (instances of ColorProperty) More... | |
virtual bool | GetVisibility (bool &visible, BaseRenderer *renderer, const char *name="visible") const |
Convenience access method for visibility properties (instances of BoolProperty) More... | |
virtual bool | GetOpacity (float &opacity, BaseRenderer *renderer, const char *name="opacity") const |
Convenience access method for opacity properties (instances of FloatProperty) More... | |
virtual bool | GetLevelWindow (LevelWindow &levelWindow, BaseRenderer *renderer, const char *name="levelwindow") const |
Convenience access method for color properties (instances of LevelWindoProperty) More... | |
virtual bool | IsVisible (BaseRenderer *renderer, const char *name="visible") const |
Convenience access method for visibility properties (instances of BoolProperty). Return value is the visibility. Default is visible==true, i.e., true is returned even if the property (propertyKey) is not found. More... | |
virtual void | Update (BaseRenderer *renderer) |
Calls the time step of the input data for the specified renderer and checks whether the time step is valid and calls method GenerateDataForRenderer() More... | |
int | GetTimestep () const |
Returns the current time step as calculated from the renderer. More... | |
virtual bool | IsLODEnabled (BaseRenderer *) const |
Protected Member Functions | |
GLMapper () | |
Returns whether this mapper allows picking in the renderwindow virtual bool IsPickable() const { return false; }. More... | |
virtual | ~GLMapper () |
Protected Member Functions inherited from mitk::Mapper | |
Mapper () | |
explicit constructor which disallows implicit conversions More... | |
virtual | ~Mapper () |
virtual destructor in order to derive from this class More... | |
virtual void | GenerateData () |
Generate the data needed for rendering (independent of a specific renderer) More... | |
virtual void | GenerateDataForRenderer (BaseRenderer *) |
Generate the data needed for rendering into renderer. More... | |
virtual void | CalculateTimeStep (BaseRenderer *renderer) |
Updates the time step, which is sometimes needed in subclasses. More... | |
virtual void | ResetMapper (BaseRenderer *) |
Reset the mapper (i.e., make sure that nothing is displayed) if no valid data is present. In most cases the reimplemented function disables the according actors (toggling visibility off) More... | |
virtual OverlayManager * | GetOverlayManager () const |
Additional Inherited Members | |
Public Types inherited from mitk::Mapper | |
typedef Mapper | Self |
typedef itk::Object | Superclass |
typedef itk::SmartPointer< Self > | Pointer |
typedef itk::SmartPointer< const Self > | ConstPointer |
Static Public Member Functions inherited from mitk::Mapper | |
static const char * | GetStaticNameOfClass () |
static void | SetDefaultProperties (DataNode *node, BaseRenderer *renderer=nullptr, bool overwrite=false) |
Set default values of properties used by this mapper to node. More... | |
Protected Attributes inherited from mitk::Mapper | |
mitk::DataNode * | m_DataNode |
Base class of all OpenGL-based mappers.
Those must implement the abstract method Paint(BaseRenderer), which is called by method MitkRender(). The Paint() method should be used to paint into a renderer via OpenGL-drawing commands. The OpenGL context matrices (GL_MODELVIEWMATRIX/GL_PROJECTIONMATRIX) are preinitialized by the mitkVtkPropRenderer so that the origin of the 2D-coordinate system of the 2D render window is located in the lower left corner and has the width and height in display pixels of the respective renderwindow. The x-axis is horizontally oriented, while the y-axis is vertically oriented. The drawing commands are directly interpreted as display coordinates. ApplyColorAndOpacity() can be used in the subclasses to apply color and opacity properties read from the PropertyList.
Definition at line 45 of file mitkGLMapper.h.
|
protected |
Returns whether this mapper allows picking in the renderwindow virtual bool IsPickable() const { return false; }.
constructor
Definition at line 20 of file mitkGLMapper.cpp.
|
protectedvirtual |
virtual destructor in order to derive from this class
Definition at line 24 of file mitkGLMapper.cpp.
|
overridevirtual |
Apply color and opacity properties read from the PropertyList. The actor is not used in the GLMappers. Called by mapper subclasses.
Implements mitk::Mapper.
Definition at line 48 of file mitkGLMapper.cpp.
|
inlinevirtual |
Apply color and opacity properties read from the PropertyList.
Definition at line 56 of file mitkGLMapper.h.
|
overridevirtual |
Returns whether this is a vtk-based mapper.
Implements mitk::Mapper.
Definition at line 43 of file mitkGLMapper.cpp.
|
overridevirtual |
Checks visibility and calls the paint method.
Note: The enumeration is disregarded, since OpenGL rendering only needs a single render pass.
Implements mitk::Mapper.
Definition at line 28 of file mitkGLMapper.cpp.
References mitk::VtkPropRenderer::Opaque.
Referenced by vtkGLMapperProp::RenderOpaqueGeometry().
|
pure virtual |
Do the painting into the renderer.
Implemented in mitk::PlanarFigureMapper2D, mitk::UnstructuredGridMapper2D, mitk::VectorImageMapper2D, mitk::ContourModelSetGLMapper2D, mitk::ContourModelGLMapper2D, mitk::MeshMapper2D, mitk::ContourMapper2D, and mitk::ContourSetMapper2D.