summaryrefslogtreecommitdiff
path: root/noncore/todayplugins/stockticker/stocktickerlib/ticker.h
Side-by-side diff
Diffstat (limited to 'noncore/todayplugins/stockticker/stocktickerlib/ticker.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/todayplugins/stockticker/stocktickerlib/ticker.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/noncore/todayplugins/stockticker/stocktickerlib/ticker.h b/noncore/todayplugins/stockticker/stocktickerlib/ticker.h
new file mode 100644
index 0000000..3b68928
--- a/dev/null
+++ b/noncore/todayplugins/stockticker/stocktickerlib/ticker.h
@@ -0,0 +1,32 @@
+#ifndef TICKER_H
+#define TICKER_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 Ticker : public QFrame {
+ Q_OBJECT
+
+public:
+ Ticker( QWidget* parent=0 );
+ ~Ticker();
+ 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