From 88539c74ca4a6b6699df2b050a498a81d22a0793 Mon Sep 17 00:00:00 2001 From: llornkcor Date: Sun, 03 Nov 2002 19:44:54 +0000 Subject: add oticker --- (limited to 'libopie/oticker.h') 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 @@ +#ifndef OTICKER_H +#define OTICKER_H + +#include +#include +#include +#include +#include +#include +#include +#include + +class OTicker : public QFrame { + Q_OBJECT + +public: + OTicker( QWidget* parent=0 ); + ~OTicker(); + 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 -- cgit v0.9.0.2