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 | |||
@@ -1,110 +1,113 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of the Opie Project | 2 | This file is part of the Opie Project |
3 | Copyright (c) 2002 L. Potter <ljp@llornkcor.com> | 3 | Copyright (c) 2002 L. Potter <ljp@llornkcor.com> |
4 | =. | 4 | =. |
5 | .=l. | 5 | .=l. |
6 | .>+-= | 6 | .>+-= |
7 | _;:, .> :=|. This program is free software; you can | 7 | _;:, .> :=|. This program is free software; you can |
8 | .> <`_, > . <= redistribute it and/or modify it under | 8 | .> <`_, > . <= redistribute it and/or modify it under |
9 | :`=1 )Y*s>-.-- : the terms of the GNU General Public | 9 | :`=1 )Y*s>-.-- : the terms of the GNU General Public |
10 | .="- .-=="i, .._ License as published by the Free Software | 10 | .="- .-=="i, .._ License as published by the Free Software |
11 | - . .-<_> .<> Foundation; either version 2 of the License, | 11 | - . .-<_> .<> Foundation; either version 2 of the License, |
12 | ._= =} : or (at your option) any later version. | 12 | ._= =} : or (at your option) any later version. |
13 | .%`+i> _;_. | 13 | .%`+i> _;_. |
14 | .i_,=:_. -<s. This program is distributed in the hope that | 14 | .i_,=:_. -<s. This program is distributed in the hope that |
15 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; | 15 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; |
16 | : .. .:, . . . without even the implied warranty of | 16 | : .. .:, . . . without even the implied warranty of |
17 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A | 17 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A |
18 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU | 18 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU |
19 | ..}^=.= = ; Library General Public License for more | 19 | ..}^=.= = ; Library General Public License for more |
20 | ++= -. .` .: details. | 20 | ++= -. .` .: details. |
21 | : = ...= . :.=- | 21 | : = ...= . :.=- |
22 | -. .:....=;==+<; You should have received a copy of the GNU | 22 | -. .:....=;==+<; You should have received a copy of the GNU |
23 | -_. . . )=. = Library General Public License along with | 23 | -_. . . )=. = Library General Public License along with |
24 | -- :-=` this library; see the file COPYING.LIB. | 24 | -- :-=` this library; see the file COPYING.LIB. |
25 | If not, write to the Free Software Foundation, | 25 | If not, write to the Free Software Foundation, |
26 | Inc., 59 Temple Place - Suite 330, | 26 | Inc., 59 Temple Place - Suite 330, |
27 | Boston, MA 02111-1307, USA. | 27 | Boston, MA 02111-1307, USA. |
28 | 28 | ||
29 | */ | 29 | */ |
30 | 30 | ||
31 | #include <qpe/qpeapplication.h> | 31 | #include <qpe/qpeapplication.h> |
32 | #include <qpe/resource.h> | 32 | #include <qpe/resource.h> |
33 | #include <qpe/config.h> | 33 | #include <qpe/config.h> |
34 | 34 | ||
35 | #include <qwidget.h> | 35 | #include <qwidget.h> |
36 | #include <qpixmap.h> | 36 | #include <qpixmap.h> |
37 | #include <qbutton.h> | 37 | #include <qbutton.h> |
38 | #include <qpainter.h> | 38 | #include <qpainter.h> |
39 | #include <qframe.h> | 39 | #include <qframe.h> |
40 | #include <qlayout.h> | 40 | #include <qlayout.h> |
41 | #include <qdir.h> | 41 | #include <qdir.h> |
42 | #include <stdlib.h> | 42 | #include <stdlib.h> |
43 | #include <stdio.h> | 43 | #include <stdio.h> |
44 | 44 | ||
45 | #include "oticker.h" | 45 | #include "oticker.h" |
46 | 46 | ||
47 | OTicker::OTicker( QWidget* parent ) | 47 | OTicker::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 | ||
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() ); |
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; |
87 | 90 | ||
88 | killTimers(); | 91 | killTimers(); |
89 | if ( pixelLen > contentsRect().width() ) | 92 | if ( pixelLen > contentsRect().width() ) |
90 | startTimer( 50 ); | 93 | startTimer( 50 ); |
91 | update(); | 94 | update(); |
92 | } | 95 | } |
93 | 96 | ||
94 | 97 | ||
95 | void OTicker::timerEvent( QTimerEvent * ) { | 98 | void OTicker::timerEvent( QTimerEvent * ) { |
96 | pos = ( pos <= 0 ) ? scrollTextPixmap.width() : pos - 1; | 99 | pos = ( pos <= 0 ) ? scrollTextPixmap.width() : pos - 1; |
97 | repaint( FALSE ); | 100 | repaint( FALSE ); |
98 | } | 101 | } |
99 | 102 | ||
100 | void OTicker::drawContents( QPainter *p ) { | 103 | void OTicker::drawContents( QPainter *p ) { |
101 | int pixelLen = scrollTextPixmap.width(); | 104 | int pixelLen = scrollTextPixmap.width(); |
102 | p->drawPixmap( pos, contentsRect().y(), scrollTextPixmap ); | 105 | p->drawPixmap( pos, contentsRect().y(), scrollTextPixmap ); |
103 | if ( pixelLen > contentsRect().width() ) // Scrolling | 106 | if ( pixelLen > contentsRect().width() ) // Scrolling |
104 | p->drawPixmap( pos - pixelLen, contentsRect().y(), scrollTextPixmap ); | 107 | p->drawPixmap( pos - pixelLen, contentsRect().y(), scrollTextPixmap ); |
105 | } | 108 | } |
106 | 109 | ||
107 | void OTicker::mouseReleaseEvent( QMouseEvent * ) { | 110 | void OTicker::mouseReleaseEvent( QMouseEvent * ) { |
108 | // qDebug("<<<<<<<>>>>>>>>>"); | 111 | // qDebug("<<<<<<<>>>>>>>>>"); |
109 | emit mousePressed(); | 112 | emit mousePressed(); |
110 | } | 113 | } |