| 28 | wxEND_EVENT_TABLE() |
| 29 | |
| 30 | ModeSelectorCanvas::ModeSelectorCanvas(wxWindow *parent, const wxGLAttributes& dispAttrs) : |
| 31 | InteractiveCanvas(parent, dispAttrs), numChoices(0), currentSelection(-1), toggleMode(false), inputChanged(false), padX(4.0), padY(4.0), highlightOverride(false) { |
| 32 | |
| 33 | glContext = new ModeSelectorContext(this, &wxGetApp().GetContext(this), wxGetApp().GetContextAttributes()); |
| 34 | |
| 35 | highlightColor = RGBA4f(1.0,1.0,1.0,1.0); |
| 36 | } |
| 37 | |
| 38 | ModeSelectorCanvas::~ModeSelectorCanvas() = default; |
| 39 |
nothing calls this directly
no test coverage detected