------------------------------------------------------------------------------
| 322 | |
| 323 | //------------------------------------------------------------------------------ |
| 324 | void vtkContextInteractorStyle::OnRightButtonDown() |
| 325 | { |
| 326 | this->BeginProcessingEvent(); |
| 327 | |
| 328 | bool eatEvent = false; |
| 329 | if (this->Scene) |
| 330 | { |
| 331 | vtkContextMouseEvent event; |
| 332 | this->ConstructMouseEvent(event, vtkContextMouseEvent::RIGHT_BUTTON); |
| 333 | eatEvent = this->ProcessMousePress(event); |
| 334 | } |
| 335 | if (!eatEvent) |
| 336 | { |
| 337 | this->Superclass::OnRightButtonDown(); |
| 338 | } |
| 339 | this->EndProcessingEvent(); |
| 340 | } |
| 341 | |
| 342 | //------------------------------------------------------------------------------ |
| 343 | void vtkContextInteractorStyle::OnRightButtonUp() |
nothing calls this directly
no test coverage detected