author | llornkcor <llornkcor> | 2002-11-10 17:41:51 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-11-10 17:41:51 (UTC) |
commit | b84ab7a14a0efb50cd425a8614ff465081116420 (patch) (unidiff) | |
tree | 286e6df100d617aeb3216044438eb4428875d38b | |
parent | 270d8caf81bdf6486df38b78cb6f5299965ad9ce (diff) | |
download | opie-b84ab7a14a0efb50cd425a8614ff465081116420.zip opie-b84ab7a14a0efb50cd425a8614ff465081116420.tar.gz opie-b84ab7a14a0efb50cd425a8614ff465081116420.tar.bz2 |
update after changing colors and such
-rw-r--r-- | libopie/oticker.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libopie/oticker.cpp b/libopie/oticker.cpp index 47dcb3e..b4afbf9 100644 --- a/libopie/oticker.cpp +++ b/libopie/oticker.cpp | |||
@@ -55,24 +55,27 @@ OTicker::OTicker( QWidget* parent ) | |||
55 | foregroundcolor= Qt::black; | 55 | foregroundcolor= Qt::black; |
56 | } | 56 | } |
57 | 57 | ||
58 | OTicker::~OTicker() { | 58 | OTicker::~OTicker() { |
59 | } | 59 | } |
60 | 60 | ||
61 | void OTicker::setBackgroundColor(QColor backcolor) { | 61 | void OTicker::setBackgroundColor(QColor backcolor) { |
62 | backgroundcolor = backcolor; | 62 | backgroundcolor = backcolor; |
63 | update(); | ||
63 | } | 64 | } |
64 | 65 | ||
65 | void OTicker::setForegroundColor(QColor backcolor) { | 66 | void OTicker::setForegroundColor(QColor backcolor) { |
66 | foregroundcolor = backcolor; | 67 | foregroundcolor = backcolor; |
68 | update(); | ||
67 | } | 69 | } |
68 | 70 | ||
69 | void OTicker::setFrame(int frameStyle) { | 71 | void OTicker::setFrame(int frameStyle) { |
70 | setFrameStyle( frameStyle/*WinPanel | Sunken */); | 72 | setFrameStyle( frameStyle/*WinPanel | Sunken */); |
73 | update(); | ||
71 | } | 74 | } |
72 | 75 | ||
73 | void OTicker::setText( const QString& text ) { | 76 | void OTicker::setText( const QString& text ) { |
74 | pos = 0; // reset it everytime the text is changed | 77 | pos = 0; // reset it everytime the text is changed |
75 | scrollText = text; | 78 | scrollText = text; |
76 | 79 | ||
77 | int pixelLen = fontMetrics().width( text ); | 80 | int pixelLen = fontMetrics().width( text ); |
78 | QPixmap pm( pixelLen, contentsRect().height() ); | 81 | QPixmap pm( pixelLen, contentsRect().height() ); |