summaryrefslogtreecommitdiff
authorharlekin <harlekin>2004-06-20 12:32:59 (UTC)
committer harlekin <harlekin>2004-06-20 12:32:59 (UTC)
commit3d49080501c6619f9bb323be9935d28f4458530f (patch) (unidiff)
tree277baf812e3377554ea1369f54b6b5ac7814d118
parent63dd6d0c5919bd905f9c39eb1641d18c5372cdda (diff)
downloadopie-3d49080501c6619f9bb323be9935d28f4458530f.zip
opie-3d49080501c6619f9bb323be9935d28f4458530f.tar.gz
opie-3d49080501c6619f9bb323be9935d28f4458530f.tar.bz2
BUGFIX: 0001321 - The batteryapplet shows a real popup frame now
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/batteryapplet/batterystatus.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/applets/batteryapplet/batterystatus.cpp b/core/applets/batteryapplet/batterystatus.cpp
index 655fdc4..5a24b94 100644
--- a/core/applets/batteryapplet/batterystatus.cpp
+++ b/core/applets/batteryapplet/batterystatus.cpp
@@ -173,13 +173,13 @@ QString BatteryStatus::statusTextIpaq() const {
173 QString text; 173 QString text;
174 text += tr("Percentage battery remaining: ") + perc2 + " " + jackStatus; 174 text += tr("Percentage battery remaining: ") + perc2 + " " + jackStatus;
175 text += "\n" + tr("Battery time remaining: ") + sec2; 175 text += "\n" + tr("Battery time remaining: ") + sec2;
176 return text; 176 return text;
177} 177}
178 178
179void BatteryStatus::paintEvent( QPaintEvent * ) { 179void BatteryStatus::paintEvent( QPaintEvent * ev ) {
180 180
181 QPainter p( this ); 181 QPainter p( this );
182 182
183 QString text = statusText(); 183 QString text = statusText();
184 p.drawText( 10, 50, width() - 20, 40 , AlignVCenter, text ); 184 p.drawText( 10, 50, width() - 20, 40 , AlignVCenter, text );
185 185
@@ -235,12 +235,13 @@ void BatteryStatus::paintEvent( QPaintEvent * ) {
235 drawSegment( &p, QRect( 10, 90, jackPerc, 40 ), lightc, darkc, lightc.light(115), 6 ); 235 drawSegment( &p, QRect( 10, 90, jackPerc, 40 ), lightc, darkc, lightc.light(115), 6 );
236 drawSegment( &p, QRect( 11 + jackPerc, 90, rightEnd1 - jackPerc, 40 ), white.light(80), black, white.light(90), 6 ); 236 drawSegment( &p, QRect( 11 + jackPerc, 90, rightEnd1 - jackPerc, 40 ), white.light(80), black, white.light(90), 6 );
237 drawSegment( &p, QRect( rightEnd2, 97, 10, 25 ), white.light(80), black, white.light(90), 2 ); 237 drawSegment( &p, QRect( rightEnd2, 97, 10, 25 ), white.light(80), black, white.light(90), 2 );
238 p.setPen( black ); 238 p.setPen( black );
239 p.drawText(15, 100, width() - 20, 20 , AlignVCenter, jacketMsg); 239 p.drawText(15, 100, width() - 20, 20 , AlignVCenter, jacketMsg);
240 } 240 }
241 QFrame::paintEvent(ev);
241} 242}
242 243
243QSize BatteryStatus::sizeHint() const { 244QSize BatteryStatus::sizeHint() const {
244 QString text = statusText(); 245 QString text = statusText();
245 QString text2 = statusTextIpaq(); 246 QString text2 = statusTextIpaq();
246 QFontMetrics fm = fontMetrics(); 247 QFontMetrics fm = fontMetrics();