------------------------------------------------------------------------------
| 776 | |
| 777 | //------------------------------------------------------------------------------ |
| 778 | void vtkImagePlaneWidget::OnRightButtonUp() |
| 779 | { |
| 780 | switch (this->RightButtonAction) |
| 781 | { |
| 782 | case vtkImagePlaneWidget::VTK_CURSOR_ACTION: |
| 783 | this->StopCursor(); |
| 784 | break; |
| 785 | case vtkImagePlaneWidget::VTK_SLICE_MOTION_ACTION: |
| 786 | this->StopSliceMotion(); |
| 787 | break; |
| 788 | case vtkImagePlaneWidget::VTK_WINDOW_LEVEL_ACTION: |
| 789 | this->StopWindowLevel(); |
| 790 | break; |
| 791 | } |
| 792 | } |
| 793 | |
| 794 | //------------------------------------------------------------------------------ |
| 795 | void vtkImagePlaneWidget::StartCursor() |
no test coverage detected