| 175 | } |
| 176 | |
| 177 | void MeterCanvas::OnMouseEnterWindow(wxMouseEvent& event) { |
| 178 | InteractiveCanvas::mouseTracker.OnMouseEnterWindow(event); |
| 179 | SetCursor(wxCURSOR_CROSS); |
| 180 | #ifdef _WIN32 |
| 181 | if (wxGetApp().getAppFrame()->canFocus()) { |
| 182 | this->SetFocus(); |
| 183 | } |
| 184 | #endif |
| 185 | } |
| 186 | |
| 187 | void MeterCanvas::setHelpTip(std::string tip) { |
| 188 | helpTip = tip; |
nothing calls this directly
no test coverage detected