VTK
Public Types | Public Member Functions | Static Public Member Functions | Public Attributes
vtkWidgetSet Class Reference

Synchronize a collection on vtkWidgets drawn on different renderwindows using the Callback - Dispatch Action mechanism. More...

#include <vtkWidgetSet.h>

Inheritance diagram for vtkWidgetSet:
Inheritance graph
[legend]
Collaboration diagram for vtkWidgetSet:
Collaboration graph
[legend]

List of all members.

Public Types

typedef std::vector
< vtkAbstractWidget * > 
WidgetContainerType
typedef
WidgetContainerType::iterator 
WidgetIteratorType
typedef
WidgetContainerType::const_iterator 
WidgetConstIteratorType

Public Member Functions

void AddWidget (vtkAbstractWidget *)
void RemoveWidget (vtkAbstractWidget *)
unsigned int GetNumberOfWidgets ()
vtkAbstractWidgetGetNthWidget (unsigned int)
virtual void SetEnabled (int)
virtual void EnabledOn ()
virtual void EnabledOff ()

Static Public Member Functions

static vtkWidgetSetNew ()

Public Attributes

WidgetContainerType Widget
typedef vtkObject Superclass
static int IsTypeOf (const char *type)
static vtkWidgetSetSafeDownCast (vtkObjectBase *o)
virtual int IsA (const char *type)
vtkWidgetSetNewInstance () const
void PrintSelf (ostream &os, vtkIndent indent)
virtual vtkObjectBaseNewInstanceInternal () const
template<class TWidget >
void DispatchAction (TWidget *caller, typename ActionFunction< TWidget >::TActionFunctionPointer action)
 vtkWidgetSet ()
 ~vtkWidgetSet ()

Detailed Description

Synchronize a collection on vtkWidgets drawn on different renderwindows using the Callback - Dispatch Action mechanism.

The class synchronizes a set of vtkAbstractWidget(s). Widgets typically invoke "Actions" that drive the geometry/behaviour of their representations in response to interactor events. Interactor interactions on a render window are mapped into "Callbacks" by the widget, from which "Actions" are dispatched to the entire set. This architecture allows us to tie widgets existing in different render windows together. For instance a HandleWidget might exist on the sagittal view. Moving it around should update the representations of the corresponding handle widget that lies on the axial and coronal and volume views as well.

User API:
A user would use this class as follows.
 vtkWidgetSet *set = vtkWidgetSet::New();
 vtkParallelopipedWidget *w1 = vtkParallelopipedWidget::New();
 set->AddWidget(w1);
 w1->SetInteractor(axialRenderWindow->GetInteractor());
 vtkParallelopipedWidget *w2 = vtkParallelopipedWidget::New();
 set->AddWidget(w2);
 w2->SetInteractor(coronalRenderWindow->GetInteractor());
 vtkParallelopipedWidget *w3 = vtkParallelopipedWidget::New();
 set->AddWidget(w3);
 w3->SetInteractor(sagittalRenderWindow->GetInteractor());
 set->SetEnabled(1);
Motivation:
The motivation for this class is really to provide a usable API to tie together multiple widgets of the same kind. To enable this, subclasses of vtkAbstractWidget, must be written as follows: They will generally have callback methods mapped to some user interaction such as:
 this->CallbackMapper->SetCallbackMethod(vtkCommand::LeftButtonPressEvent,
                         vtkEvent::NoModifier, 0, 0, NULL,
                         vtkPaintbrushWidget::BeginDrawStrokeEvent,
                         this, vtkPaintbrushWidget::BeginDrawCallback);
The callback invoked when the left button is pressed looks like:
 void vtkPaintbrushWidget::BeginDrawCallback(vtkAbstractWidget *w)
 {
   vtkPaintbrushWidget *self = vtkPaintbrushWidget::SafeDownCast(w);
   self->WidgetSet->DispatchAction(self, &vtkPaintbrushWidget::BeginDrawAction);
 }
The actual code for handling the drawing is written in the BeginDrawAction method.
 void vtkPaintbrushWidget::BeginDrawAction( vtkPaintbrushWidget *dispatcher)
 {
 // Do stuff to draw...
 // Here dispatcher is the widget that was interacted with, the one that
 // dispatched an action to all the other widgets in its group. You may, if
 // necessary find it helpful to get parameters from it.
 //   For instance for a ResizeAction:
 //     if (this != dispatcher)
 //       {
 //       double *newsize = dispatcher->GetRepresentation()->GetSize();
 //       this->WidgetRep->SetSize(newsize);
 //       }
 //     else
 //       {
 //       this->WidgetRep->IncrementSizeByDelta();
 //       }
 }
Warning:
Actions are always dispatched first to the activeWidget, the one calling the set, and then to the other widgets in the set.

Definition at line 112 of file vtkWidgetSet.h.


Member Typedef Documentation

Standard methods for a VTK class.

Reimplemented from vtkObject.

Definition at line 120 of file vtkWidgetSet.h.

Definition at line 145 of file vtkWidgetSet.h.

typedef WidgetContainerType::iterator vtkWidgetSet::WidgetIteratorType

Definition at line 146 of file vtkWidgetSet.h.

typedef WidgetContainerType::const_iterator vtkWidgetSet::WidgetConstIteratorType

Definition at line 147 of file vtkWidgetSet.h.


Constructor & Destructor Documentation

vtkWidgetSet::vtkWidgetSet ( ) [protected]

Dispatch an "Action" to every widget in this set. This is meant to be invoked from a "Callback" in a widget.

vtkWidgetSet::~vtkWidgetSet ( ) [protected]

Dispatch an "Action" to every widget in this set. This is meant to be invoked from a "Callback" in a widget.


Member Function Documentation

static vtkWidgetSet* vtkWidgetSet::New ( ) [static]

Instantiate this class.

Reimplemented from vtkObject.

static int vtkWidgetSet::IsTypeOf ( const char *  type) [static]

Standard methods for a VTK class.

Reimplemented from vtkObject.

virtual int vtkWidgetSet::IsA ( const char *  type) [virtual]

Standard methods for a VTK class.

Reimplemented from vtkObject.

Standard methods for a VTK class.

Reimplemented from vtkObject.

virtual vtkObjectBase* vtkWidgetSet::NewInstanceInternal ( ) const [protected, virtual]

Standard methods for a VTK class.

Reimplemented from vtkObject.

Standard methods for a VTK class.

Reimplemented from vtkObject.

void vtkWidgetSet::PrintSelf ( ostream &  os,
vtkIndent  indent 
) [virtual]

Standard methods for a VTK class.

Reimplemented from vtkObject.

virtual void vtkWidgetSet::SetEnabled ( int  ) [virtual]

Method for activating and deactivating all widgets in the group.

virtual void vtkWidgetSet::EnabledOn ( ) [virtual]

Method for activating and deactivating all widgets in the group.

virtual void vtkWidgetSet::EnabledOff ( ) [virtual]

Method for activating and deactivating all widgets in the group.

Add a widget to the set.

Remove a widget from the set

Get number of widgets in the set.

Get the Nth widget in the set.

template<class TWidget >
void vtkWidgetSet::DispatchAction ( TWidget *  caller,
typename ActionFunction< TWidget >::TActionFunctionPointer  action 
) [inline]

Dispatch an "Action" to every widget in this set. This is meant to be invoked from a "Callback" in a widget.

Definition at line 154 of file vtkWidgetSet.h.


Member Data Documentation

Definition at line 148 of file vtkWidgetSet.h.


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