| 119 | } |
| 120 | |
| 121 | void InteractiveCanvas::OnMouseDown(wxMouseEvent& event) { |
| 122 | mouseTracker.OnMouseDown(event); |
| 123 | |
| 124 | shiftDown = event.ShiftDown(); |
| 125 | altDown = event.AltDown(); |
| 126 | ctrlDown = event.ControlDown(); |
| 127 | } |
| 128 | |
| 129 | void InteractiveCanvas::OnMouseWheelMoved(wxMouseEvent& event) { |
| 130 | mouseTracker.OnMouseWheelMoved(event); |
nothing calls this directly
no outgoing calls
no test coverage detected