| 580 | } |
| 581 | |
| 582 | void PiuView_onTouchMoved(xsMachine* the) |
| 583 | { |
| 584 | PiuView* self = PIU(View, xsThis); |
| 585 | PiuApplication* application = (*self)->application; |
| 586 | if (!application) return; |
| 587 | xsIntegerValue index = xsToInteger(xsArg(0)); |
| 588 | PiuCoordinate x = xsToPiuCoordinate(xsArg(1)); |
| 589 | PiuCoordinate y = xsToPiuCoordinate(xsArg(2)); |
| 590 | xsNumberValue ticks = xsToNumber(xsArg(3)); |
| 591 | PiuApplicationTouchMoved(application, index, x, y, ticks); |
| 592 | } |
| 593 | |
| 594 | void PiuView_get_rotation(xsMachine* the) |
| 595 | { |
nothing calls this directly
no test coverage detected