| 3 | |
| 4 | |
| 5 | ScrollText::ScrollText(QWidget *parent) : |
| 6 | QWidget(parent), scrollPos(0) |
| 7 | { |
| 8 | staticText.setTextFormat(Qt::PlainText); |
| 9 | |
| 10 | setFixedHeight(fontMetrics().height()); |
| 11 | leftMargin = height() / 3; |
| 12 | |
| 13 | setSeparator(" --- "); |
| 14 | |
| 15 | connect(&timer, SIGNAL(timeout()), this, SLOT(timer_timeout())); |
| 16 | timer.setInterval(50); |
| 17 | } |
| 18 | |
| 19 | QString ScrollText::text() const |
| 20 | { |