| 69 | } |
| 70 | |
| 71 | void onDraw(Drawing::RenderTarget& rt) override |
| 72 | { |
| 73 | WindowDrawWidgets(*this, rt); |
| 74 | |
| 75 | auto screenCoords = windowPos + ScreenCoordsXY{ (width + 1) / 2 - 1, kPadding - 1 }; |
| 76 | drawStringCentredRaw(rt, screenCoords, _numLines, _text.data(), FontStyle::medium); |
| 77 | } |
| 78 | |
| 79 | void onPeriodicUpdate() override |
| 80 | { |
nothing calls this directly
no test coverage detected