| 158 | } |
| 159 | |
| 160 | void WindowTestResizedAndPositioned::onWindowResized(EventCustom* e) |
| 161 | { |
| 162 | auto size = static_cast<Size*>(e->getUserData()); |
| 163 | if (size == nullptr) |
| 164 | return; |
| 165 | |
| 166 | label2->setString(fmt::format("size : {}, {}", (int)size->width, (int)size->height)); |
| 167 | } |
| 168 | |
| 169 | void WindowTestClose::onEnter() |
| 170 | { |
nothing calls this directly
no test coverage detected