| 226 | } |
| 227 | |
| 228 | void PiuApplicationReflow(void* it, PiuFlags flags) |
| 229 | { |
| 230 | PiuApplication* self = it; |
| 231 | if (flags & piuHorizontallyChanged) |
| 232 | (*self)->flags |= piuContentsHorizontallyChanged; |
| 233 | else if (flags & piuContentsHorizontallyChanged) |
| 234 | (*self)->flags |= piuContentsHorizontallyChanged; |
| 235 | if (flags & piuVerticallyChanged) |
| 236 | (*self)->flags |= piuContentsVerticallyChanged; |
| 237 | else if (flags & piuContentsVerticallyChanged) |
| 238 | (*self)->flags |= piuContentsVerticallyChanged; |
| 239 | (*self)->flags |= piuContentsPlaced; |
| 240 | PiuViewReflow((*self)->view); |
| 241 | } |
| 242 | |
| 243 | void PiuApplicationResize(PiuApplication* self) |
| 244 | { |
nothing calls this directly
no test coverage detected