summaryrefslogtreecommitdiff
path: root/core/applets/batteryapplet
authordrw <drw>2004-12-21 00:05:06 (UTC)
committer drw <drw>2004-12-21 00:05:06 (UTC)
commit8c316a01b28879b9f4fc6df736773245c8358ffc (patch) (side-by-side diff)
tree3cfd20bfac60255a9ebe1460baeabe68427c8ac6 /core/applets/batteryapplet
parentfaf7441b78dfc293f1dea1edebc202244fc3a1cf (diff)
downloadopie-8c316a01b28879b9f4fc6df736773245c8358ffc.zip
opie-8c316a01b28879b9f4fc6df736773245c8358ffc.tar.gz
opie-8c316a01b28879b9f4fc6df736773245c8358ffc.tar.bz2
Some cleaner string handling
Diffstat (limited to 'core/applets/batteryapplet') (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/batteryapplet/batterystatus.cpp55
1 files changed, 36 insertions, 19 deletions
diff --git a/core/applets/batteryapplet/batterystatus.cpp b/core/applets/batteryapplet/batterystatus.cpp
index addb517..7f8de2c 100644
--- a/core/applets/batteryapplet/batterystatus.cpp
+++ b/core/applets/batteryapplet/batterystatus.cpp
@@ -90,25 +90,26 @@ bool BatteryStatus::getProcApmStatusIpaq() {
if (perc2.isEmpty()) {
perc2 = tr("no data");
} else {
perc2 += " %";
}
if (sec2 == "0" || sec2 == "" || sec2.isEmpty()) {
sec2 = tr("no data");
} else {
sec2 += " min";
}
- jackStatus == (" ( " + jackStatus + " )");
+ jackStatus.prepend( " ( " );
+ jackStatus.append( " )" );
return true;
}
void BatteryStatus::updatePercent( int pc ) {
percent = pc;
repaint(FALSE);
}
void BatteryStatus::drawSegment( QPainter *p, const QRect &r, const QColor &topgrad, const QColor &botgrad, const QColor &highlight, int hightlight_height ) {
int h1, h2, s1, s2, v1, v2, ng = r.height(), hy = ng*30/100, hh = hightlight_height;
topgrad.hsv( &h1, &s1, &v1 );
@@ -130,63 +131,79 @@ void BatteryStatus::drawSegment( QPainter *p, const QRect &r, const QColor &topg
}
QString BatteryStatus::statusText() const {
QString text;
if ( ps->batteryStatus() == PowerStatus::Charging ) {
if (bat2) {
text = tr("Charging both devices");
} else {
text = tr("Charging");
}
} else if ( ps->batteryPercentAccurate() ) {
- text.sprintf( tr("Remaining Power") + ": %i%%", percent );
+ text = tr( "Remaining Power: %1%" ).arg( percent );
+ //text.sprintf( tr("Remaining Power") + ": %i%%", percent );
} else {
- text = tr("Battery status: ");
+ text = tr( "Battery status: " );
switch ( ps->batteryStatus() ) {
case PowerStatus::High:
- text += tr("Good");
+ text.append( tr( "Good" ) );
break;
case PowerStatus::Low:
- text += tr("Low");
+ text.append( tr( "Low" ) );
break;
case PowerStatus::VeryLow:
- text += tr("Very Low");
+ text.append( tr( "Very Low" ) );
break;
case PowerStatus::Critical:
- text += tr("Critical");
+ text.append( tr( "Critical" ) );
break;
default: // NotPresent, etc.
- text += tr("Unknown");
+ text.append( tr( "Unknown" ) );
}
}
if ( ps->acStatus() == PowerStatus::Backup )
- text += "\n" + tr("On backup power");
+ {
+ text.append( '\n' );
+ text.append( tr( "On backup power" ) );
+ }
else if ( ps->acStatus() == PowerStatus::Online )
- text += "\n" + tr("Power on-line");
+ {
+ text.append( '\n' );
+ text.append( tr( "Power on-line" ) );
+ }
else if ( ps->acStatus() == PowerStatus::Offline )
- text += "\n" + tr("External power disconnected");
+ {
+ text.append( '\n' );
+ text.append( tr( "External power disconnected" ) );
+ }
- if ( ps->batteryTimeRemaining() >= 0 ) {
- text += "\n" + QString().sprintf( tr("Remaining Time") + ": %im %02is",
- ps->batteryTimeRemaining() / 60, ps->batteryTimeRemaining() % 60 );
+ if ( ps->batteryTimeRemaining() >= 0 )
+ {
+ text.append( '\n' );
+ text.append( tr("Remaining Time: %1m %2s" ).arg( ps->batteryTimeRemaining() / 60 )
+ .arg( ps->batteryTimeRemaining() % 60, 2 ) );
+/* text += "\n" + QString().sprintf( tr("Remaining Time") + ": %im %02is",
+ ps->batteryTimeRemaining() / 60, ps->batteryTimeRemaining() % 60 );*/
}
return text;
}
QString BatteryStatus::statusTextIpaq() const {
- QString text;
- text += tr("Remaining Power: ") + perc2 + " " + jackStatus;
- text += "\n" + tr("Remaining Time: ") + sec2;
+ QString text = tr( "Remaing Power: %1 %2\nRemaining Time: %3" ).arg( perc2 )
+ .arg( jackStatus )
+ .arg( sec2 );
+/* QString text = tr("Remaining Power: ") + perc2 + " " + jackStatus;
+ text += "\n" + tr("Remaining Time: ") + sec2;*/
return text;
}
void BatteryStatus::paintEvent( QPaintEvent * ev ) {
QPainter p( this );
QString text = statusText();
p.drawText( 10, 50, width() - 20, 40 , AlignVCenter, text );
QColor c;
QColor darkc;
@@ -211,32 +228,32 @@ void BatteryStatus::paintEvent( QPaintEvent * ev ) {
int rightEnd2 = width() - 35;
int percent2 = (percent * rightEnd1) / 100;
p.setPen( black );
qDrawShadePanel( &p, 9, 10, rightEnd1 , 39, colorGroup(), TRUE, 1, NULL);
qDrawShadePanel( &p, rightEnd2, 17, 12, 24, colorGroup(), TRUE, 1, NULL);
drawSegment( &p, QRect( 10, 10, percent2, 40 ), lightc, darkc, lightc.light(115), 6 );
drawSegment( &p, QRect( 11 + percent2, 10, rightEnd1 - percent2, 40 ), white.light(80), black, white.light(90), 6 );
drawSegment( &p, QRect( rightEnd2, 17, 10, 25 ), white.light(80), black, white.light(90), 2 );
p.setPen( black);
if ( ODevice::inst ( )-> series ( ) == Model_iPAQ && bat2 ) {
- p.drawText( 15, 30, tr ("Ipaq ") + ipaqChem );
+ p.drawText( 15, 30, tr("Ipaq %1").arg( ipaqChem ) );
QString jacketMsg;
if (bat2) {
p.setPen(black);
QString text = statusTextIpaq();
p.drawText( 10, 150, text );
- jacketMsg = tr("Jacket ") + jackChem;
+ jacketMsg = tr("Jacket ").arg( jackChem );
} else {
jackPercent = 0;
jacketMsg = tr("No jacket with battery inserted");
}
int jackPerc = ( jackPercent * ( width() - 47 ) ) / 100;
qDrawShadePanel( &p, 9, 90, rightEnd1, 39, colorGroup(), TRUE, 1, NULL);
qDrawShadePanel( &p, rightEnd2, 97, 12, 24, colorGroup(), TRUE, 1, NULL);
drawSegment( &p, QRect( 10, 90, jackPerc, 40 ), lightc, darkc, lightc.light(115), 6 );
drawSegment( &p, QRect( 11 + jackPerc, 90, rightEnd1 - jackPerc, 40 ), white.light(80), black, white.light(90), 6 );
drawSegment( &p, QRect( rightEnd2, 97, 10, 25 ), white.light(80), black, white.light(90), 2 );