summaryrefslogtreecommitdiff
path: root/libopie/oticker.h
authorllornkcor <llornkcor>2002-11-03 19:44:54 (UTC)
committer llornkcor <llornkcor>2002-11-03 19:44:54 (UTC)
commit88539c74ca4a6b6699df2b050a498a81d22a0793 (patch) (unidiff)
treec3ce1f6fc5107d16513e0009d41e64494a280d6e /libopie/oticker.h
parent7d282e8e721d4c7c71a6d308d082da7138139484 (diff)
downloadopie-88539c74ca4a6b6699df2b050a498a81d22a0793.zip
opie-88539c74ca4a6b6699df2b050a498a81d22a0793.tar.gz
opie-88539c74ca4a6b6699df2b050a498a81d22a0793.tar.bz2
add oticker
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 @@
1#ifndef OTICKER_H
2#define OTICKER_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 OTicker : public QFrame {
14 Q_OBJECT
15
16public:
17 OTicker( QWidget* parent=0 );
18 ~OTicker();
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