13#ifndef QmitkUSAbstractNavigationStep_h
14#define QmitkUSAbstractNavigationStep_h
18#include "mitkDataStorage.h"
22template<
class T>
class SmartPointer;
26class NavigationDataToNavigationDataFilter;
81 typedef std::vector< itk::SmartPointer<mitk::NavigationDataToNavigationDataFilter> >
FilterVector;
Abstract base class for navigation step widgets.
itk::SmartPointer< mitk::DataStorage > GetDataStorage(bool throwNull=true)
Returns the data storage set for the navigation step.
void SignalNoLongerReadyForNextStep()
Signals that it is no longer possible to proceed with following steps. This signal is emitted when th...
NavigationStepState GetNavigationStepState()
Get the current state of the navigation step.
bool DeactivateStep()
Should be called to deactivate the navigation step.
void SignalSettingsNodeChanged(itk::SmartPointer< mitk::DataNode >)
Signals that the settings node was changed. This signal must not be emitted in an OnSettingsChanged()...
virtual FilterVector GetFilter()
Getter for navigation data filters of the navigation step. This method may be implemented by a concre...
QmitkUSAbstractNavigationStep(QWidget *parent=nullptr)
void Update()
Should be called periodically while the navigation step is active. Internal, the method OnUpdate() is...
void SignalReadyForNextStep()
Signals that all necessary actions where done. The user can proceed with the next stept after this wa...
void SignalCombinedModalityChanged(itk::SmartPointer< mitk::AbstractUltrasoundTrackerDevice >)
Signals that the combined modality was changed by this step. This signal is mainly for steps which cr...
virtual bool OnDeactivateStep()
Called when the navigation step gets deactivated (-> state started). This method may be implemented b...
static const char * DATANAME_BASENODE
~QmitkUSAbstractNavigationStep() override
bool StopStep()
Should be called to stop the navigation step.
virtual void OnSettingsChanged(const itk::SmartPointer< mitk::DataNode >)
Called every time the settings for the navigation process where changed. This method may be implement...
void SetCombinedModality(itk::SmartPointer< mitk::AbstractUltrasoundTrackerDevice > combinedModality)
Sets the combined modality for the navigation step. OnSetCombinedModality() is called internal.
virtual bool OnStartStep()=0
Called when the navigation step gets started. This method has to be implemented by a concrete subclas...
itk::SmartPointer< mitk::DataNode > GetNamedDerivedNodeAndCreate(const char *name, const char *sourceName)
Returns node with the given name and the given source node (parent) from the data storage....
bool RestartStep()
Should be called to restart the navigation step.
itk::SmartPointer< mitk::AbstractUltrasoundTrackerDevice > GetCombinedModality(bool throwNull=true)
Returns the combined modality set for the navigation step.
virtual void OnUpdate()=0
Called periodically while a navigation step is active. This method has to be implemented by a concret...
bool StartStep()
Should be called to start the navigation step.
virtual bool OnActivateStep()=0
Called when the navigation step gets activated. This method has to be implemented by a concrete subcl...
virtual bool GetIsRestartable()
Indicates if it makes sense to be able to restart the step. This method must be implemented by concre...
static const char * DATANAME_SETTINGS
std::vector< itk::SmartPointer< mitk::NavigationDataToNavigationDataFilter > > FilterVector
virtual bool OnFinishStep()=0
Called when all necessary actions for the step where done. This method has to be implemented by a con...
bool ActivateStep()
Should be called to activate the navigation step. The step gets started before if it was stopped.
virtual bool OnRestartStep()
Called when restarting a navigation step. This method may be implemented by a concrete subclass to ha...
void SignalIntermediateResult(const itk::SmartPointer< mitk::DataNode >)
Signals that an intermediate result was produced. The properties of the given data node must contain ...
bool FinishStep()
Should be called to finish the navigation step. The state has to be 'active' before and is 'started' ...
void SetDataStorage(itk::SmartPointer< mitk::DataStorage > dataStorage)
Sets the data storage for the exchange of results between navigation steps.
static const char * DATANAME_IMAGESTREAM
itk::SmartPointer< mitk::DataNode > GetNamedDerivedNode(const char *name, const char *sourceName)
Returns node with the given name and the given source node (parent) from the data storage.
virtual bool OnStopStep()
Callen when the navigation step gets stopped. This method may be implemented by a concrete subclass t...
virtual void OnSetCombinedModality()
Called every time SetCombinedModality() was called. This method may be implemented by a concrete subc...
virtual QString GetTitle()=0
Getter for the title of the navigation step. This title should be human readable and can be used to d...