VTK
|
a vtkContextItem that draws a block (optional label). More...
#include <vtkBlockItem.h>
a vtkContextItem that draws a block (optional label).
This is a vtkContextItem that can be placed into a vtkContextScene. It draws a block of the given dimensions, and reacts to mouse events.
Definition at line 36 of file vtkBlockItem.h.
Reimplemented from vtkContextItem.
Definition at line 39 of file vtkBlockItem.h.
vtkBlockItem::vtkBlockItem | ( | ) | [protected] |
vtkBlockItem::~vtkBlockItem | ( | ) | [protected] |
static int vtkBlockItem::IsTypeOf | ( | const char * | name | ) | [static] |
Return 1 if this class type 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 vtkContextItem.
virtual int vtkBlockItem::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 vtkContextItem.
static vtkBlockItem* vtkBlockItem::SafeDownCast | ( | vtkObjectBase * | o | ) | [static] |
Reimplemented from vtkContextItem.
virtual vtkObjectBase* vtkBlockItem::NewInstanceInternal | ( | ) | const [protected, virtual] |
Reimplemented from vtkContextItem.
vtkBlockItem* vtkBlockItem::NewInstance | ( | ) | const |
Reimplemented from vtkContextItem.
virtual void vtkBlockItem::PrintSelf | ( | ostream & | os, |
vtkIndent | indent | ||
) | [virtual] |
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 vtkContextItem.
static vtkBlockItem* vtkBlockItem::New | ( | ) | [static] |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
Reimplemented from vtkObject.
virtual bool vtkBlockItem::Paint | ( | vtkContext2D * | painter | ) | [virtual] |
Paint event for the item.
Reimplemented from vtkAbstractContextItem.
virtual bool vtkBlockItem::Hit | ( | const vtkContextMouseEvent & | mouse | ) | [virtual] |
Returns true if the supplied x, y coordinate is inside the item.
Reimplemented from vtkAbstractContextItem.
virtual bool vtkBlockItem::MouseEnterEvent | ( | const vtkContextMouseEvent & | mouse | ) | [virtual] |
Mouse enter event.
Reimplemented from vtkAbstractContextItem.
virtual bool vtkBlockItem::MouseMoveEvent | ( | const vtkContextMouseEvent & | mouse | ) | [virtual] |
Mouse move event.
Reimplemented from vtkAbstractContextItem.
virtual bool vtkBlockItem::MouseLeaveEvent | ( | const vtkContextMouseEvent & | mouse | ) | [virtual] |
Mouse leave event.
Reimplemented from vtkAbstractContextItem.
virtual bool vtkBlockItem::MouseButtonPressEvent | ( | const vtkContextMouseEvent & | mouse | ) | [virtual] |
Mouse button down event.
Reimplemented from vtkAbstractContextItem.
virtual bool vtkBlockItem::MouseButtonReleaseEvent | ( | const vtkContextMouseEvent & | mouse | ) | [virtual] |
Mouse button release event.
Reimplemented from vtkAbstractContextItem.
virtual void vtkBlockItem::SetLabel | ( | const vtkStdString & | label | ) | [virtual] |
Set the block label.
virtual vtkStdString vtkBlockItem::GetLabel | ( | ) | [virtual] |
Get the block label.
virtual void vtkBlockItem::SetDimensions | ( | float | , |
float | , | ||
float | , | ||
float | |||
) | [virtual] |
Set the dimensions of the block, elements 0 and 1 are the x and y coordinate of the bottom corner. Elements 2 and 3 are the width and height. Initial value is (0,0,0,0).
virtual void vtkBlockItem::SetDimensions | ( | float | [4] | ) | [virtual] |
Set the dimensions of the block, elements 0 and 1 are the x and y coordinate of the bottom corner. Elements 2 and 3 are the width and height. Initial value is (0,0,0,0).
virtual float* vtkBlockItem::GetDimensions | ( | ) | [virtual] |
Get the dimensions of the block, elements 0 and 1 are the x and y coordinate of the bottom corner. Elements 2 and 3 are the width and height. Initial value is (0,0,0,0)
virtual void vtkBlockItem::GetDimensions | ( | float & | , |
float & | , | ||
float & | , | ||
float & | |||
) | [virtual] |
Get the dimensions of the block, elements 0 and 1 are the x and y coordinate of the bottom corner. Elements 2 and 3 are the width and height. Initial value is (0,0,0,0)
virtual void vtkBlockItem::GetDimensions | ( | float | [4] | ) | [virtual] |
Get the dimensions of the block, elements 0 and 1 are the x and y coordinate of the bottom corner. Elements 2 and 3 are the width and height. Initial value is (0,0,0,0)
void vtkBlockItem::SetScalarFunctor | ( | double(*)(double, double) | scalarFunction | ) |
float vtkBlockItem::Dimensions[4] [protected] |
Definition at line 98 of file vtkBlockItem.h.
vtkStdString vtkBlockItem::Label [protected] |
Definition at line 100 of file vtkBlockItem.h.
bool vtkBlockItem::MouseOver [protected] |
Definition at line 102 of file vtkBlockItem.h.
double(* vtkBlockItem::scalarFunction)(double, double) [protected] |
Definition at line 105 of file vtkBlockItem.h.