| 131 | } |
| 132 | |
| 133 | void InteractiveCanvas::OnMouseReleased(wxMouseEvent& event) { |
| 134 | mouseTracker.OnMouseReleased(event); |
| 135 | |
| 136 | shiftDown = event.ShiftDown(); |
| 137 | altDown = event.AltDown(); |
| 138 | ctrlDown = event.ControlDown(); |
| 139 | } |
| 140 | |
| 141 | void InteractiveCanvas::OnMouseLeftWindow(wxMouseEvent& event) { |
| 142 | mouseTracker.OnMouseLeftWindow(event); |
nothing calls this directly
no outgoing calls
no test coverage detected