------------------------------------------------------------------------------
| 229 | |
| 230 | //------------------------------------------------------------------------------ |
| 231 | void vtkContextInteractorStyle::OnLeftButtonUp() |
| 232 | { |
| 233 | this->BeginProcessingEvent(); |
| 234 | |
| 235 | bool eatEvent = false; |
| 236 | if (this->Scene) |
| 237 | { |
| 238 | vtkContextMouseEvent event; |
| 239 | this->ConstructMouseEvent(event, vtkContextMouseEvent::LEFT_BUTTON); |
| 240 | eatEvent = this->Scene->ButtonReleaseEvent(event); |
| 241 | } |
| 242 | if (!eatEvent) |
| 243 | { |
| 244 | this->Superclass::OnLeftButtonUp(); |
| 245 | } |
| 246 | this->EndProcessingEvent(); |
| 247 | } |
| 248 | |
| 249 | //------------------------------------------------------------------------------ |
| 250 | void vtkContextInteractorStyle::OnLeftButtonDoubleClick() |
nothing calls this directly
no test coverage detected