Selectively disable and enable default mouse interactions in vtk

hi all,
i want to selectively disable and enable default mouse interactions in vtk. does anyone
know how to selectively disable/enable the interactions using vtkInteractorStyle or any
of its subclasses.

One way would be to subclass vtkInteractorStyle and override the mouse event handlers: OnMouseMove, OnLeftButtonDown, etc.

1 Like

Thanks for your response.