| 155 | } |
| 156 | |
| 157 | void PiuLabelMeasureVertically(void* it) |
| 158 | { |
| 159 | PiuLabel* self = it; |
| 160 | PiuAlignment vertical = (*self)->coordinates.vertical; |
| 161 | if (!(vertical & piuHeight)) { |
| 162 | if ((*self)->string && (*self)->computedStyle) |
| 163 | (*self)->coordinates.height = PiuStyleGetHeight((*self)->computedStyle, (*self)->string); |
| 164 | else |
| 165 | (*self)->coordinates.height = 0; |
| 166 | } |
| 167 | } |
| 168 | |
| 169 | void PiuLabelUnbind(void* it, PiuApplication* application, PiuView* view) |
| 170 | { |
nothing calls this directly
no test coverage detected