summaryrefslogtreecommitdiff
path: root/noncore/todayplugins/stockticker/stocktickerlib/ticker.h
authorllornkcor <llornkcor>2002-11-03 19:45:33 (UTC)
committer llornkcor <llornkcor>2002-11-03 19:45:33 (UTC)
commitfe933da66a39ae964f44d0f057fabece5bdf077b (patch) (side-by-side diff)
tree8e2bb1cfb4f52da40da9efc8834f8967da4bf080 /noncore/todayplugins/stockticker/stocktickerlib/ticker.h
parent88539c74ca4a6b6699df2b050a498a81d22a0793 (diff)
downloadopie-fe933da66a39ae964f44d0f057fabece5bdf077b.zip
opie-fe933da66a39ae964f44d0f057fabece5bdf077b.tar.gz
opie-fe933da66a39ae964f44d0f057fabece5bdf077b.tar.bz2
moved ticker to oticker
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