summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/oticker.cpp3
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
@@ -47,40 +47,43 @@
47OTicker::OTicker( QWidget* parent ) 47OTicker::OTicker( QWidget* parent )
48 : QFrame( parent ) { 48 : QFrame( parent ) {
49 49
50// setFrameStyle( NoFrame/*WinPanel | Sunken */); 50// setFrameStyle( NoFrame/*WinPanel | Sunken */);
51 51
52 Config cfg("qpe"); 52 Config cfg("qpe");
53 cfg.setGroup("Appearance"); 53 cfg.setGroup("Appearance");
54 backgroundcolor = QColor( cfg.readEntry( "Background", "#E5E1D5" ) ); 54 backgroundcolor = QColor( cfg.readEntry( "Background", "#E5E1D5" ) );
55 foregroundcolor= Qt::black; 55 foregroundcolor= Qt::black;
56} 56}
57 57
58OTicker::~OTicker() { 58OTicker::~OTicker() {
59} 59}
60 60
61void OTicker::setBackgroundColor(QColor backcolor) { 61void OTicker::setBackgroundColor(QColor backcolor) {
62 backgroundcolor = backcolor; 62 backgroundcolor = backcolor;
63 update();
63} 64}
64 65
65void OTicker::setForegroundColor(QColor backcolor) { 66void OTicker::setForegroundColor(QColor backcolor) {
66 foregroundcolor = backcolor; 67 foregroundcolor = backcolor;
68 update();
67} 69}
68 70
69void OTicker::setFrame(int frameStyle) { 71void OTicker::setFrame(int frameStyle) {
70 setFrameStyle( frameStyle/*WinPanel | Sunken */); 72 setFrameStyle( frameStyle/*WinPanel | Sunken */);
73 update();
71} 74}
72 75
73void OTicker::setText( const QString& text ) { 76void 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() );
79// pm.fill( QColor( 167, 212, 167 )); 82// pm.fill( QColor( 167, 212, 167 ));
80 83
81 pm.fill(backgroundcolor); 84 pm.fill(backgroundcolor);
82 QPainter pmp( &pm ); 85 QPainter pmp( &pm );
83 pmp.setPen(foregroundcolor ); 86 pmp.setPen(foregroundcolor );
84 pmp.drawText( 0, 0, pixelLen, contentsRect().height(), AlignVCenter, scrollText ); 87 pmp.drawText( 0, 0, pixelLen, contentsRect().height(), AlignVCenter, scrollText );
85 pmp.end(); 88 pmp.end();
86 scrollTextPixmap = pm; 89 scrollTextPixmap = pm;