| 19 | #include "drawtext.h" |
| 20 | |
| 21 | DrawText::DrawText(const QString &text, const QPoint &pos) |
| 22 | { |
| 23 | _direction = DirectionHorizontal; |
| 24 | _textSize = 50; |
| 25 | _textStyle = TextNormal; |
| 26 | _visible = true; |
| 27 | _textHJustify = TextHLeft; |
| 28 | _textVJustify = TextVCenter; |
| 29 | setPos(pos); |
| 30 | setText(text); |
| 31 | } |
| 32 | |
| 33 | Draw *DrawText::clone() const |
| 34 | { |
nothing calls this directly
no outgoing calls
no test coverage detected