| 105 | } |
| 106 | |
| 107 | void InteractiveCanvas::OnKeyDown(wxKeyEvent& event) { |
| 108 | shiftDown = event.ShiftDown(); |
| 109 | altDown = event.AltDown(); |
| 110 | ctrlDown = event.ControlDown(); |
| 111 | } |
| 112 | |
| 113 | void InteractiveCanvas::OnMouseMoved(wxMouseEvent& event) { |
| 114 | mouseTracker.OnMouseMoved(event); |
nothing calls this directly
no outgoing calls
no test coverage detected