| 147 | } |
| 148 | |
| 149 | void InteractiveCanvas::OnMouseEnterWindow(wxMouseEvent& event) { |
| 150 | mouseTracker.OnMouseEnterWindow(event); |
| 151 | |
| 152 | shiftDown = event.ShiftDown(); |
| 153 | altDown = event.AltDown(); |
| 154 | ctrlDown = event.ControlDown(); |
| 155 | } |
| 156 | |
| 157 | void InteractiveCanvas::setStatusText(std::string statusText) { |
| 158 |
nothing calls this directly
no outgoing calls
no test coverage detected