| 149 | } |
| 150 | |
| 151 | void WindowTestResizedAndPositioned::onWindowPositioned(EventCustom* e) |
| 152 | { |
| 153 | auto pos = static_cast<Vec2*>(e->getUserData()); |
| 154 | if (pos == nullptr) |
| 155 | return; |
| 156 | |
| 157 | label1->setString(fmt::format("pos : {}, {}", (int)pos->x, (int)pos->y)); |
| 158 | } |
| 159 | |
| 160 | void WindowTestResizedAndPositioned::onWindowResized(EventCustom* e) |
| 161 | { |
nothing calls this directly
no test coverage detected