Medical Imaging Interaction Toolkit
2016.11.0
Medical Imaging Interaction Toolkit
|
Interface defining methods for probe selection of ultrasound devices. It consists of methods for getting all available probes and selecting one of them. More...
#include <mitkUSControlInterfaceProbes.h>
Public Member Functions | |
mitkClassMacro (USControlInterfaceProbes, USAbstractControlInterface) | |
virtual std::vector< USProbe::Pointer > | GetProbeSet ()=0 |
void | SelectProbe (unsigned int index) |
void | SelectProbe (USProbe::Pointer probe) |
virtual void | OnSelectProbe (unsigned int index)=0 |
Virtual method which is called inside mitk::USControlInterfaceProbes::SelectProbe(). Implement this method to handle the actual selecting of the probe at the device api. More... | |
virtual void | OnSelectProbe (USProbe::Pointer probe)=0 |
Virtual method which is called inside mitk::USControlInterfaceProbes::SelectProbe(). Implement this method to handle the actual selecting of the probe at the device api. More... | |
virtual USProbe::Pointer | GetSelectedProbe ()=0 |
virtual unsigned int | GetProbesCount () const =0 |
Public Member Functions inherited from mitk::USAbstractControlInterface | |
mitkClassMacroItkParent (USAbstractControlInterface, itk::Object) | |
virtual void | SetIsActive (bool isActive)=0 |
virtual bool | GetIsActive ()=0 |
Protected Member Functions | |
USControlInterfaceProbes (itk::SmartPointer< USDevice > device) | |
virtual | ~USControlInterfaceProbes () |
Protected Member Functions inherited from mitk::USAbstractControlInterface | |
USAbstractControlInterface (itk::SmartPointer< USDevice > device) | |
virtual | ~USAbstractControlInterface () |
Additional Inherited Members | |
Protected Attributes inherited from mitk::USAbstractControlInterface | |
itk::SmartPointer< USDevice > | m_Device |
Interface defining methods for probe selection of ultrasound devices. It consists of methods for getting all available probes and selecting one of them.
All of the methods of this interface must be implemented in a concrete subclass. There are some pure virtual methods in the superclass mitk::USAbstractControlInterface which must be implemente, too.
Definition at line 34 of file mitkUSControlInterfaceProbes.h.
|
protected |
Definition at line 20 of file mitkUSControlInterfaceProbes.cpp.
|
protectedvirtual |
Definition at line 25 of file mitkUSControlInterfaceProbes.cpp.
|
pure virtual |
Implemented in mitk::USTelemedProbesControls.
|
pure virtual |
Implemented in mitk::USTelemedProbesControls.
|
pure virtual |
Implemented in mitk::USTelemedProbesControls.
mitk::USControlInterfaceProbes::mitkClassMacro | ( | USControlInterfaceProbes | , |
USAbstractControlInterface | |||
) |
|
pure virtual |
Virtual method which is called inside mitk::USControlInterfaceProbes::SelectProbe(). Implement this method to handle the actual selecting of the probe at the device api.
index | index of the probe to be selected |
Implemented in mitk::USTelemedProbesControls.
|
pure virtual |
Virtual method which is called inside mitk::USControlInterfaceProbes::SelectProbe(). Implement this method to handle the actual selecting of the probe at the device api.
probe | pointer to probe to be selected |
Implemented in mitk::USTelemedProbesControls.
void mitk::USControlInterfaceProbes::SelectProbe | ( | unsigned int | index | ) |
Select and activate probe by given index. The index corresponds to the the index of the probe in the vector returned by mitk::USControlInterfaceProbes::GetProbeSet().
Do not override this method in a subclass. Implement mitk::USControlInterfaceProbes::OnSelectProbe() instead.
index | index of the probe to be selected |
Definition at line 29 of file mitkUSControlInterfaceProbes.cpp.
References GetName().
void mitk::USControlInterfaceProbes::SelectProbe | ( | USProbe::Pointer | probe | ) |
Select and activate probe by given mitk::USProbe object. This object can be one of these returned by mitk::USControlInterfaceProbes::GetProbeSet().
Do not override this method in a subclass. Implement mitk::USControlInterfaceProbes::OnSelectProbe() instead.
probe | pointer to probe to be selected |
Definition at line 37 of file mitkUSControlInterfaceProbes.cpp.
References GetName().