| 527 | } |
| 528 | |
| 529 | void PiuView_onResize(xsMachine* the) |
| 530 | { |
| 531 | PiuView* self = PIU(View, xsThis); |
| 532 | PiuApplication* application = (*self)->application; |
| 533 | xsVars(2); |
| 534 | PiuApplicationResize(application); |
| 535 | if ((*application)->behavior) { |
| 536 | xsVar(0) = xsReference((*application)->behavior); |
| 537 | if (xsFindResult(xsVar(0), xsID_onResize)) { |
| 538 | xsVar(1) = xsReference((*application)->reference); |
| 539 | xsCallFunction2(xsResult, xsVar(0), xsVar(1), xsArg(0)); |
| 540 | } |
| 541 | } |
| 542 | } |
| 543 | |
| 544 | void PiuView_onTouchBegan(xsMachine* the) |
| 545 | { |
nothing calls this directly
no test coverage detected