------------------------------------------------------------------------------
| 360 | |
| 361 | //------------------------------------------------------------------------------ |
| 362 | void vtkContextInteractorStyle::OnRightButtonDoubleClick() |
| 363 | { |
| 364 | this->BeginProcessingEvent(); |
| 365 | bool eatEvent = false; |
| 366 | if (this->Scene) |
| 367 | { |
| 368 | vtkContextMouseEvent event; |
| 369 | this->ConstructMouseEvent(event, vtkContextMouseEvent::RIGHT_BUTTON); |
| 370 | eatEvent = this->Scene->DoubleClickEvent(event); |
| 371 | } |
| 372 | if (!eatEvent) |
| 373 | { |
| 374 | this->Superclass::OnRightButtonDoubleClick(); |
| 375 | } |
| 376 | this->EndProcessingEvent(); |
| 377 | } |
| 378 | |
| 379 | //------------------------------------------------------------------------------ |
| 380 | void vtkContextInteractorStyle::OnMouseWheelForward() |
no test coverage detected