| 18 | #include <wx/numformatter.h> |
| 19 | |
| 20 | InteractiveCanvas::InteractiveCanvas(wxWindow *parent, const wxGLAttributes& dispAttrs) : |
| 21 | wxGLCanvas(parent, dispAttrs, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxFULL_REPAINT_ON_RESIZE), |
| 22 | parent(parent), shiftDown(false), altDown(false), ctrlDown(false), centerFreq(0), bandwidth(0), lastBandwidth(0), isView( |
| 23 | false) { |
| 24 | mouseTracker.setTarget(this); |
| 25 | } |
| 26 | |
| 27 | InteractiveCanvas::~InteractiveCanvas() = default; |
| 28 |