MCPcopy Index your code
hub / github.com/Audio4Linux/JDSP4Linux / ScrollText

Method ScrollText

src/interface/WidgetMarqueeLabel.cpp:5–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3
4
5ScrollText::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
19QString ScrollText::text() const
20{

Callers

nothing calls this directly

Calls 2

heightFunction · 0.85
connectFunction · 0.85

Tested by

no test coverage detected