------------------------------------------------------------------------------
| 210 | |
| 211 | //------------------------------------------------------------------------------ |
| 212 | void vtkContextInteractorStyle::OnLeftButtonDown() |
| 213 | { |
| 214 | this->BeginProcessingEvent(); |
| 215 | |
| 216 | bool eatEvent = false; |
| 217 | if (this->Scene) |
| 218 | { |
| 219 | vtkContextMouseEvent event; |
| 220 | this->ConstructMouseEvent(event, vtkContextMouseEvent::LEFT_BUTTON); |
| 221 | eatEvent = this->ProcessMousePress(event); |
| 222 | } |
| 223 | if (!eatEvent) |
| 224 | { |
| 225 | this->Superclass::OnLeftButtonDown(); |
| 226 | } |
| 227 | this->EndProcessingEvent(); |
| 228 | } |
| 229 | |
| 230 | //------------------------------------------------------------------------------ |
| 231 | void vtkContextInteractorStyle::OnLeftButtonUp() |
nothing calls this directly
no test coverage detected