| 14 | { |
| 15 | |
| 16 | Label::Label(const UString &Text, sp<BitmapFont> font) |
| 17 | : Control(), text(Text), font(font), scrollOffset(0), TextHAlign(HorizontalAlignment::Left), |
| 18 | TextVAlign(VerticalAlignment::Top), WordWrap(true) |
| 19 | { |
| 20 | if (font) |
| 21 | { |
| 22 | palette = font->getPalette(); |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | Label::~Label() = default; |
| 27 |
nothing calls this directly
no test coverage detected