------------------------------------------------------------------------------
| 341 | |
| 342 | //------------------------------------------------------------------------------ |
| 343 | void vtkContextInteractorStyle::OnRightButtonUp() |
| 344 | { |
| 345 | this->BeginProcessingEvent(); |
| 346 | |
| 347 | bool eatEvent = false; |
| 348 | if (this->Scene) |
| 349 | { |
| 350 | vtkContextMouseEvent event; |
| 351 | this->ConstructMouseEvent(event, vtkContextMouseEvent::RIGHT_BUTTON); |
| 352 | eatEvent = this->Scene->ButtonReleaseEvent(event); |
| 353 | } |
| 354 | if (!eatEvent) |
| 355 | { |
| 356 | this->Superclass::OnRightButtonUp(); |
| 357 | } |
| 358 | this->EndProcessingEvent(); |
| 359 | } |
| 360 | |
| 361 | //------------------------------------------------------------------------------ |
| 362 | void vtkContextInteractorStyle::OnRightButtonDoubleClick() |
nothing calls this directly
no test coverage detected