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) (unidiff)
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 @@
1#ifndef TICKER_H
2#define TICKER_H
3
4#include <qwidget.h>
5#include <qpainter.h>
6#include <qdrawutil.h>
7#include <qpixmap.h>
8#include <qstring.h>
9#include <qslider.h>
10#include <qframe.h>
11#include <qlineedit.h>
12
13class Ticker : public QFrame {
14 Q_OBJECT
15
16public:
17 Ticker( QWidget* parent=0 );
18 ~Ticker();
19 void setText( const QString& text ) ;
20signals:
21 void mousePressed();
22protected:
23 void timerEvent( QTimerEvent * );
24 void drawContents( QPainter *p );
25 void mouseReleaseEvent ( QMouseEvent *);
26private:
27 QString scrollText;
28 QPixmap scrollTextPixmap;
29 int pos;//, pixelLen;
30};
31
32#endif