| 689 | } |
| 690 | |
| 691 | MeterCanvas * AppFrame::makeSpectrumAvgMeter(wxWindow *parent, const wxGLAttributes &attribList) { |
| 692 | auto *pCanvas = new MeterCanvas(parent, attribList); |
| 693 | pCanvas->setHelpTip("Spectrum averaging speed, click or drag to adjust."); |
| 694 | pCanvas->setMax(1.0); |
| 695 | pCanvas->setLevel(0.65f); |
| 696 | pCanvas->setShowUserInput(false); |
| 697 | pCanvas->SetMinSize(wxSize(12, 24)); |
| 698 | return pCanvas; |
| 699 | } |
| 700 | |
| 701 | SpectrumCanvas *AppFrame::makeSpectrumCanvas(wxWindow *parent, const wxGLAttributes &attribList) { |
| 702 | auto *pCanvas = new SpectrumCanvas(parent, attribList); |
nothing calls this directly
no test coverage detected