summaryrefslogtreecommitdiff
path: root/libopie/oticker.cpp
Side-by-side diff
Diffstat (limited to 'libopie/oticker.cpp') (more/less context) (show whitespace changes)
-rw-r--r--libopie/oticker.cpp23
1 files changed, 17 insertions, 6 deletions
diff --git a/libopie/oticker.cpp b/libopie/oticker.cpp
index b4afbf9..6cd0dc8 100644
--- a/libopie/oticker.cpp
+++ b/libopie/oticker.cpp
@@ -47,6 +47,5 @@
OTicker::OTicker( QWidget* parent )
- : QFrame( parent ) {
-
-// setFrameStyle( NoFrame/*WinPanel | Sunken */);
-
+ : QLabel( parent ) {
+ // : QFrame( parent ) {
+ setTextFormat(Qt::RichText);
Config cfg("qpe");
@@ -55,2 +54,4 @@ OTicker::OTicker( QWidget* parent )
foregroundcolor= Qt::black;
+ updateTimerTime = 50;
+ scrollLength = 1;
}
@@ -91,4 +92,5 @@ void OTicker::setText( const QString& text ) {
killTimers();
+ // qDebug("Scrollupdate %d", updateTimerTime);
if ( pixelLen > contentsRect().width() )
- startTimer( 50 );
+ startTimer( updateTimerTime);
update();
@@ -98,3 +100,3 @@ void OTicker::setText( const QString& text ) {
void OTicker::timerEvent( QTimerEvent * ) {
- pos = ( pos <= 0 ) ? scrollTextPixmap.width() : pos - 1;
+ pos = ( pos <= 0 ) ? scrollTextPixmap.width() : pos - scrollLength;//1;
repaint( FALSE );
@@ -113 +115,10 @@ void OTicker::mouseReleaseEvent( QMouseEvent * ) {
}
+
+void OTicker::setUpdateTime(int time) {
+ updateTimerTime=time;
+}
+
+void OTicker::setScrollLength(int len) {
+scrollLength=len;
+}
+