summaryrefslogtreecommitdiff
path: root/libopie/oticker.h
Side-by-side diff
Diffstat (limited to 'libopie/oticker.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/oticker.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/libopie/oticker.h b/libopie/oticker.h
new file mode 100644
index 0000000..4f0ed11
--- a/dev/null
+++ b/libopie/oticker.h
@@ -0,0 +1,32 @@
+#ifndef OTICKER_H
+#define OTICKER_H
+
+#include <qwidget.h>
+#include <qpainter.h>
+#include <qdrawutil.h>
+#include <qpixmap.h>
+#include <qstring.h>
+#include <qslider.h>
+#include <qframe.h>
+#include <qlineedit.h>
+
+class OTicker : public QFrame {
+ Q_OBJECT
+
+public:
+ OTicker( QWidget* parent=0 );
+ ~OTicker();
+ void setText( const QString& text ) ;
+signals:
+ void mousePressed();
+protected:
+ void timerEvent( QTimerEvent * );
+ void drawContents( QPainter *p );
+ void mouseReleaseEvent ( QMouseEvent *);
+private:
+ QString scrollText;
+ QPixmap scrollTextPixmap;
+ int pos;//, pixelLen;
+};
+
+#endif