SubWidget
| 39 | |
| 40 | // SubWidget |
| 41 | explicit ExampleRectanglesWidget(Widget* const parent); |
| 42 | |
| 43 | // TopLevelWidget |
| 44 | explicit ExampleRectanglesWidget(Window& windowToMapTo); |
| 45 | |
| 46 | // StandaloneWindow |
| 47 | explicit ExampleRectanglesWidget(Application& app); |
| 48 | |
| 49 | void init() |
| 50 | { |
| 51 | BaseWidget::setSize(300, 300); |
| 52 | |
| 53 | for (int i=0; i<9; ++i) |
| 54 | clicked[i] = false; |
| 55 | } |
| 56 | |
| 57 | protected: |
| 58 | void onDisplay() override |
no test coverage detected