| 437 | } |
| 438 | |
| 439 | void TuningCanvas::OnMouseEnterWindow(wxMouseEvent& event) { |
| 440 | InteractiveCanvas::mouseTracker.OnMouseEnterWindow(event); |
| 441 | SetCursor(wxCURSOR_ARROW); |
| 442 | hoverIndex = 0; |
| 443 | hoverState = TUNING_HOVER_NONE; |
| 444 | lastPPM = currentPPM = wxGetApp().getPPM(); |
| 445 | #ifdef _WIN32 |
| 446 | if (wxGetApp().getAppFrame()->canFocus()) { |
| 447 | this->SetFocus(); |
| 448 | } |
| 449 | #endif |
| 450 | } |
| 451 | |
| 452 | void TuningCanvas::setHelpTip(std::string tip) { |
| 453 | helpTip = tip; |
nothing calls this directly
no test coverage detected