#include <mitkSliceNavigationController.h>
Public Types | |
typedef TimeSlicedGeometryEvent | Self |
typedef itk::AnyEvent | Superclass |
Public Member Functions | |
TimeSlicedGeometryEvent (TimeSlicedGeometry *aTimeSlicedGeometry, unsigned int aPos) | |
virtual | ~TimeSlicedGeometryEvent () |
virtual const char * | GetEventName () const |
virtual bool | CheckEvent (const ::itk::EventObject *e) const |
virtual ::itk::EventObject * | MakeObject () const |
TimeSlicedGeometry * | GetTimeSlicedGeometry () const |
unsigned int | GetPos () const |
Definition at line 248 of file mitkSliceNavigationController.h.
typedef itk::AnyEvent mitk::SliceNavigationController::TimeSlicedGeometryEvent::Superclass |
mitk::SliceNavigationController::TimeSlicedGeometryEvent::TimeSlicedGeometryEvent | ( | TimeSlicedGeometry * | aTimeSlicedGeometry, |
unsigned int | aPos | ||
) | [inline] |
Definition at line 254 of file mitkSliceNavigationController.h.
: m_TimeSlicedGeometry(aTimeSlicedGeometry), m_Pos(aPos) {}
virtual mitk::SliceNavigationController::TimeSlicedGeometryEvent::~TimeSlicedGeometryEvent | ( | ) | [inline, virtual] |
Definition at line 259 of file mitkSliceNavigationController.h.
{}
virtual bool mitk::SliceNavigationController::TimeSlicedGeometryEvent::CheckEvent | ( | const ::itk::EventObject * | e ) | const [inline, virtual] |
Reimplemented in mitk::SliceNavigationController::GeometrySendEvent, mitk::SliceNavigationController::GeometryUpdateEvent, mitk::SliceNavigationController::GeometryTimeEvent, and mitk::SliceNavigationController::GeometrySliceEvent.
Definition at line 265 of file mitkSliceNavigationController.h.
{ return dynamic_cast<const Self*>(e); }
virtual const char* mitk::SliceNavigationController::TimeSlicedGeometryEvent::GetEventName | ( | ) | const [inline, virtual] |
Reimplemented in mitk::SliceNavigationController::GeometrySendEvent, mitk::SliceNavigationController::GeometryUpdateEvent, mitk::SliceNavigationController::GeometryTimeEvent, and mitk::SliceNavigationController::GeometrySliceEvent.
Definition at line 262 of file mitkSliceNavigationController.h.
{ return "TimeSlicedGeometryEvent"; }
unsigned int mitk::SliceNavigationController::TimeSlicedGeometryEvent::GetPos | ( | ) | const [inline] |
Definition at line 274 of file mitkSliceNavigationController.h.
Referenced by mitk::BaseRenderer::SetGeometrySlice(), and mitk::BaseRenderer::SetGeometryTime().
{ return m_Pos; }
TimeSlicedGeometry* mitk::SliceNavigationController::TimeSlicedGeometryEvent::GetTimeSlicedGeometry | ( | ) | const [inline] |
Definition at line 271 of file mitkSliceNavigationController.h.
{ return m_TimeSlicedGeometry; }
virtual ::itk::EventObject* mitk::SliceNavigationController::TimeSlicedGeometryEvent::MakeObject | ( | ) | const [inline] |
Reimplemented in mitk::SliceNavigationController::GeometrySendEvent, mitk::SliceNavigationController::GeometryUpdateEvent, mitk::SliceNavigationController::GeometryTimeEvent, and mitk::SliceNavigationController::GeometrySliceEvent.
Definition at line 268 of file mitkSliceNavigationController.h.
{ return new Self(m_TimeSlicedGeometry, m_Pos); }