-rw-r--r-- | libopie/oticker.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libopie/oticker.h b/libopie/oticker.h index 4f0ed11..92a4be4 100644 --- a/libopie/oticker.h +++ b/libopie/oticker.h @@ -10,4 +10,5 @@ #include <qframe.h> #include <qlineedit.h> +#include <qcolor.h> class OTicker : public QFrame { @@ -18,4 +19,7 @@ public: ~OTicker(); void setText( const QString& text ) ; + void setBackgroundColor(QColor color); + void setForegroundColor(QColor color); + void setFrame(int); signals: void mousePressed(); @@ -25,4 +29,5 @@ protected: void mouseReleaseEvent ( QMouseEvent *); private: + QColor backgroundcolor, foregroundcolor; QString scrollText; QPixmap scrollTextPixmap; |