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, 0 insertions, 32 deletions
diff --git a/noncore/todayplugins/stockticker/stocktickerlib/ticker.h b/noncore/todayplugins/stockticker/stocktickerlib/ticker.h
deleted file mode 100644
index 3b68928..0000000
--- a/noncore/todayplugins/stockticker/stocktickerlib/ticker.h
+++ b/dev/null
@@ -1,32 +0,0 @@
-#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