Medical Imaging Interaction Toolkit
2016.11.0
Medical Imaging Interaction Toolkit
|
Interface for MITK Workbench Views with special Zombie state handling. More...
#include <mitkIZombieViewPart.h>
Public Member Functions | |
~IZombieViewPart () | |
virtual void | ActivatedZombieView (berry::SmartPointer< berry::IWorkbenchPartReference > zombieView)=0 |
Public Member Functions inherited from mitk::ILifecycleAwarePart | |
virtual | ~ILifecycleAwarePart () |
virtual void | Activated ()=0 |
virtual void | Deactivated ()=0 |
virtual void | Visible ()=0 |
virtual void | Hidden ()=0 |
Interface for MITK Workbench Views with special Zombie state handling.
Some MITK Views need to change the application state in a way which should not be affected by this View's activated/deactivated state. Examples are setting special interactors or removing the crosshair from a QmitkRenderWindow. Such MITK Views are called Zombie Views because they partially outlive their own deactivation. Zombie Views are usually mutually exclusive.
To ease the handling of Zombie Views, this interface acts as a marker to declare the implementing class being a Zombie View, meaning that it will change some application state when it is activated but will not reset it when deactivated.
If a Zombie View is activated, the previously active Zombie View is notified by calling its ActivatedZombieView() method. It should then reset the application state.
Definition at line 50 of file mitkIZombieViewPart.h.
mitk::IZombieViewPart::~IZombieViewPart | ( | ) |
Definition at line 20 of file mitkIZombieViewPart.cpp.
|
pure virtual |
Called when another Zombie View was activated. This usually means that this part should clean up its Zombie state.
zombieView | The newly activate Zombie View. |