| 65 | }; |
| 66 | |
| 67 | void PiuRoundRectDictionary(xsMachine* the, void* it) |
| 68 | { |
| 69 | PiuRoundRect* self = it; |
| 70 | xsIntegerValue integer; |
| 71 | if (xsFindInteger(xsArg(1), xsID_corners, &integer)) { |
| 72 | (*self)->corners = integer; |
| 73 | } |
| 74 | if (xsFindInteger(xsArg(1), xsID_radius, &integer)) { |
| 75 | (*self)->radius = integer; |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | void PiuRoundRectDraw(void* it, PiuView* view, PiuRectangle area) |
| 80 | { |
no outgoing calls
no test coverage detected