summaryrefslogtreecommitdiff
path: root/core/applets/batteryapplet
authorharlekin <harlekin>2003-01-10 22:18:06 (UTC)
committer harlekin <harlekin>2003-01-10 22:18:06 (UTC)
commit2b407d0aae3c40c6f1caa356b53fb24cf1bff707 (patch) (side-by-side diff)
treeb7e4c80f66ef5d0dd9f8d28f4d56971eb357f285 /core/applets/batteryapplet
parent5199ee62d5478bbf5a8eb898c148352704f288e7 (diff)
downloadopie-2b407d0aae3c40c6f1caa356b53fb24cf1bff707.zip
opie-2b407d0aae3c40c6f1caa356b53fb24cf1bff707.tar.gz
opie-2b407d0aae3c40c6f1caa356b53fb24cf1bff707.tar.bz2
merged ipaq stuff in, one step closer to kill batteryapplet ipaq
Diffstat (limited to 'core/applets/batteryapplet') (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/batteryapplet/batteryapplet.pro2
-rw-r--r--core/applets/batteryapplet/batterystatus.cpp328
-rw-r--r--core/applets/batteryapplet/batterystatus.h14
3 files changed, 226 insertions, 118 deletions
diff --git a/core/applets/batteryapplet/batteryapplet.pro b/core/applets/batteryapplet/batteryapplet.pro
index a947ca6..d7e0a92 100644
--- a/core/applets/batteryapplet/batteryapplet.pro
+++ b/core/applets/batteryapplet/batteryapplet.pro
@@ -6,7 +6,7 @@ TARGET = batteryapplet
DESTDIR = $(OPIEDIR)/plugins/applets
INCLUDEPATH += $(OPIEDIR)/include
DEPENDPATH += ../$(OPIEDIR)/include ..
-LIBS += -lqpe
+LIBS += -lqpe -lopie
VERSION = 1.0.0
TRANSLATIONS = ../../../i18n/de/libbatteryapplet.ts \
diff --git a/core/applets/batteryapplet/batterystatus.cpp b/core/applets/batteryapplet/batterystatus.cpp
index d18b6c9..2af3e99 100644
--- a/core/applets/batteryapplet/batterystatus.cpp
+++ b/core/applets/batteryapplet/batterystatus.cpp
@@ -1,140 +1,236 @@
-/**********************************************************************
-** Copyright (C) 2000 Trolltech AS. All rights reserved.
-**
-** This file is part of Qtopia Environment.
-**
-** This file may be distributed and/or modified under the terms of the
-** GNU General Public License version 2 as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL included in the
-** packaging of this file.
-**
-** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
-** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
-**
-** See http://www.trolltech.com/gpl/ for GPL licensing information.
-**
-** Contact info@trolltech.com if any conditions of this licensing are
-** not clear to you.
-**
-**********************************************************************/
+
#include "batterystatus.h"
#include <qpe/power.h>
+#include <opie/odevice.h>
+
#include <qpainter.h>
-#include <qpushbutton.h>
-#include <qdrawutil.h>
+#include <qpushbutton.h>
+#include <qdrawutil.h>
+#include <qfile.h>
+#include <qtextstream.h>
+#include <qmessagebox.h>
+using namespace Opie;
BatteryStatus::BatteryStatus( const PowerStatus *p, QWidget *parent )
- : QWidget( parent, 0, WDestructiveClose), ps(p)
-{
- setCaption( tr("Battery Status") );
- QPushButton *pb = new QPushButton( tr("Close"), this );
- pb->move( 70, 220 );
- pb->show();
- connect( pb, SIGNAL( clicked() ), this, SLOT( close() ) );
- percent = ps->batteryPercentRemaining();
- show();
+ : QWidget( parent, 0, WDestructiveClose), ps(p) {
+ setCaption( tr("Battery status for Ipaq") );
+ QPushButton *pb = new QPushButton( tr("Close"), this );
+ pb->move( 70, 250 );
+ pb->setMaximumHeight(20);
+ pb->show();
+ if ( ODevice::inst ( )-> series ( ) == Model_iPAQ ) {
+ getProcApmStatusIpaq();
+ }
+ connect( pb, SIGNAL( clicked() ), this, SLOT( close() ) );
+ percent = ps->batteryPercentRemaining();
+ show();
}
BatteryStatus::~BatteryStatus()
{
}
-void BatteryStatus::updatePercent( int pc )
-{
- percent = pc;
- repaint(FALSE);
-}
+/*
+ * Make use of the advanced apm interface of the ipaq
+ */
+bool BatteryStatus::getProcApmStatusIpaq() {
-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 );
- botgrad.hsv( &h2, &s2, &v2 );
- for ( int j = 0; j < hy-2; j++ ) {
- p->setPen( QColor( h1 + ((h2-h1)*j)/(ng-1), s1 + ((s2-s1)*j)/(ng-1),
- v1 + ((v2-v1)*j)/(ng-1), QColor::Hsv ) );
- p->drawLine( r.x(), r.top()+hy-2-j, r.x()+r.width(), r.top()+hy-2-j );
- }
- for ( int j = 0; j < hh; j++ ) {
- p->setPen( highlight );
- p->drawLine( r.x(), r.top()+hy-2+j, r.x()+r.width(), r.top()+hy-2+j );
+ bat2 = false;
+
+ QFile procApmIpaq("/proc/hal/battery");
+
+ if (procApmIpaq.open(IO_ReadOnly) ) {
+ QStringList list;
+ // since it is /proc we _must_ use QTextStream
+ QTextStream stream ( &procApmIpaq);
+ QString streamIn;
+ streamIn = stream.read();
+ list = QStringList::split("\n", streamIn);
+
+ for(QStringList::Iterator line=list.begin(); line!=list.end(); line++) {
+ // not nice, need a rewrite later
+ if( (*line).startsWith(" Percentage") ){
+ if (bat2 == true) {
+ perc2 = (*line).mid(((*line).find('('))+1,(*line).find(')')-(*line).find('(')-2);
+ } else {
+ perc1 = (*line).mid(((*line).find('('))+1,(*line).find(')')-(*line).find('(')-2);
+ }
+ }else if( (*line).startsWith(" Life") ){
+ if (bat2 == true) {
+ sec2 = (*line).mid(((*line).find(':')+2), 5 );
+ } else {
+ sec1 = (*line).mid(((*line).find(':')+2), 5 );
+ }
+ }else if( (*line).startsWith("Battery #1") ){
+ bat2 = true;
+ }else if( (*line).startsWith(" Status") ){
+ if (bat2 == true) {
+ jackStatus = (*line).mid((*line).find('(')+1., (*line).find(')')-(*line).find('(')-1);
+ } else {
+ ipaqStatus = (*line).mid((*line).find('(')+1., (*line).find(')')-(*line).find('(')-1);
+ }
+ }else if( (*line).startsWith(" Chemistry") ) {
+ if (bat2 == true) {
+ jackChem = (*line).mid((*line).find('('), (*line).find(')')-(*line).find('(')+1);
+ } else {
+ ipaqChem = (*line).mid((*line).find('('), (*line).find(')')-(*line).find('(')+1);
+ }
+ }
}
- for ( int j = 0; j < ng-hy-hh; j++ ) {
- p->setPen( QColor( h1 + ((h2-h1)*j)/(ng-1), s1 + ((s2-s1)*j)/(ng-1),
- v1 + ((v2-v1)*j)/(ng-1), QColor::Hsv ) );
- p->drawLine( r.x(), r.top()+hy+hh-2+j, r.x()+r.width(), r.top()+hy+hh-2+j );
+ } else {
+ QMessageBox::warning(this, tr("Failure"),tr("could not open file"));
+ }
+
+ procApmIpaq.close();
+
+ jackPercent = perc2.toInt();
+ ipaqPercent = perc1.toInt();
+
+ if (perc2.isEmpty()) {
+ perc2 = "no data";
+ } else {
+ perc2 += " %";
+ }
+
+
+ if (sec2 == "0" || sec2 == "" || sec2.isEmpty()) {
+ sec2 = "no data";
+ } else {
+ sec2 += " min";
+ }
+
+ jackStatus == (" ( " + jackStatus + " )");
+
+ 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 );
+ botgrad.hsv( &h2, &s2, &v2 );
+ for ( int j = 0; j < hy-2; j++ ) {
+ p->setPen( QColor( h1 + ((h2-h1)*j)/(ng-1), s1 + ((s2-s1)*j)/(ng-1),
+ v1 + ((v2-v1)*j)/(ng-1), QColor::Hsv ) );
+ p->drawLine( r.x(), r.top()+hy-2-j, r.x()+r.width(), r.top()+hy-2-j );
+ }
+ for ( int j = 0; j < hh; j++ ) {
+ p->setPen( highlight );
+ p->drawLine( r.x(), r.top()+hy-2+j, r.x()+r.width(), r.top()+hy-2+j );
}
+ for ( int j = 0; j < ng-hy-hh; j++ ) {
+ p->setPen( QColor( h1 + ((h2-h1)*j)/(ng-1), s1 + ((s2-s1)*j)/(ng-1),
+ v1 + ((v2-v1)*j)/(ng-1), QColor::Hsv ) );
+ p->drawLine( r.x(), r.top()+hy+hh-2+j, r.x()+r.width(), r.top()+hy+hh-2+j );
+ }
}
-void BatteryStatus::paintEvent( QPaintEvent * )
-{
- QPainter p(this);
- QString text;
- if ( ps->batteryStatus() == PowerStatus::Charging ) {
- text = tr("Charging");
- } else if ( ps->batteryPercentAccurate() ) {
- text.sprintf( tr("Percentage battery remaining") + ": %i%%", percent );
- } else {
- text = tr("Battery status: ");
- switch ( ps->batteryStatus() ) {
- case PowerStatus::High:
- text += tr("Good");
- break;
- case PowerStatus::Low:
- text += tr("Low");
- break;
- case PowerStatus::VeryLow:
- text += tr("Very Low");
- break;
- case PowerStatus::Critical:
- text += tr("Critical");
- break;
- default: // NotPresent, etc.
- text += tr("Unknown");
+void BatteryStatus::paintEvent( QPaintEvent * ) {
+
+ QPainter p(this);
+ 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("Percentage battery remaining") + ": %i%%", percent );
+ } else {
+ text = tr("Battery status: ");
+ switch ( ps->batteryStatus() ) {
+ case PowerStatus::High:
+ text += tr("Good");
+ break;
+ case PowerStatus::Low:
+ text += tr("Low");
+ break;
+ case PowerStatus::VeryLow:
+ text += tr("Very Low");
+ break;
+ case PowerStatus::Critical:
+ text += tr("Critical");
+ break;
+ default: // NotPresent, etc.
+ text += tr("Unknown");
}
- p.drawText( 10, 120, text );
- if ( ps->acStatus() == PowerStatus::Backup )
- p.drawText( 10, 150, tr("On backup power") );
- else if ( ps->acStatus() == PowerStatus::Online )
- p.drawText( 10, 150, tr("Power on-line") );
- else if ( ps->acStatus() == PowerStatus::Offline )
- p.drawText( 10, 150, tr("External power disconnected") );
-
- if ( ps->batteryTimeRemaining() >= 0 ) {
- text.sprintf( tr("Battery time remaining") + ": %im %02is",
- ps->batteryTimeRemaining() / 60, ps->batteryTimeRemaining() % 60 );
- p.drawText( 10, 180, text );
- }
+ }
+ p.drawText( 10, 90, text );
+
+ if ( ps->acStatus() == PowerStatus::Backup )
+ p.drawText( 10, 110, tr("On backup power") );
+ else if ( ps->acStatus() == PowerStatus::Online )
+ p.drawText( 10, 110, tr("Power on-line") );
+ else if ( ps->acStatus() == PowerStatus::Offline )
+ p.drawText( 10, 110, tr("External power disconnected") );
+
+ if ( ps->batteryTimeRemaining() >= 0 ) {
+ text.sprintf( tr("Battery time remaining") + ": %im %02is",
+ ps->batteryTimeRemaining() / 60, ps->batteryTimeRemaining() % 60 );
+ p.drawText( 10, 130, text );
+ }
+
+ QColor c;
+ QColor darkc;
+ QColor lightc;
+ if ( ps->acStatus() == PowerStatus::Offline ) {
+ c = blue.light(120);
+ darkc = c.dark(280);
+ lightc = c.light(145);
+ } else if ( ps->acStatus() == PowerStatus::Online ) {
+ c = green.dark(130);
+ darkc = c.dark(200);
+ lightc = c.light(220);
+ } else {
+ c = red;
+ darkc = c.dark(280);
+ lightc = c.light(140);
+ }
+ if ( percent < 0 )
+ return;
+
+ int percent2 = percent * 2;
+ p.setPen( black );
+ qDrawShadePanel( &p, 9, 30, 204, 39, colorGroup(), TRUE, 1, NULL);
+ qDrawShadePanel( &p, 212, 37, 12, 24, colorGroup(), TRUE, 1, NULL);
+ drawSegment( &p, QRect( 10, 30, percent2, 40 ), lightc, darkc, lightc.light(115), 6 );
+ drawSegment( &p, QRect( 11 + percent2, 30, 200 - percent2, 40 ), white.light(80), black, white.light(90), 6 );
+ drawSegment( &p, QRect( 212, 37, 10, 25 ), white.light(80), black, white.light(90), 2 );
+ p.setPen( black);
+
+
+ if ( ODevice::inst ( )-> series ( ) == Model_iPAQ ) {
+
+ p.drawText(15, 50, tr ("Ipaq " + ipaqChem));
+
+ QString jacketMsg;
+ if (bat2) {
+ p.setPen(black);
+ p.drawText(10,220, tr("Percentage battery remaining: ") + perc2 + " " + jackStatus);
+ p.drawText(10,240, tr("Battery time remaining: ") + sec2);
+ jacketMsg = tr("Jacket " + jackChem);
+ } else {
+ jackPercent = 0;
+ jacketMsg = tr("No jacket with battery inserted");
+ }
+
+ qDrawShadePanel( &p, 9, 160, 204, 39, colorGroup(), TRUE, 1, NULL);
+ qDrawShadePanel( &p, 212, 167, 12, 24, colorGroup(), TRUE, 1, NULL);
+ drawSegment( &p, QRect( 10, 160, jackPercent*2, 40 ), lightc, darkc, lightc.light(115), 6 );
+ drawSegment( &p, QRect( 11 + jackPercent*2, 160, 200 - jackPercent*2, 40 ), white.light(80), black, white.light(90), 6 );
+ drawSegment( &p, QRect( 212, 167, 10, 25 ), white.light(80), black, white.light(90), 2 );
+ p.setPen( black );
+ p.drawText(15, 180, jacketMsg);
+ }
- QColor c;
- QColor darkc;
- QColor lightc;
- if ( ps->acStatus() == PowerStatus::Offline ) {
- c = blue.light(120);
- darkc = c.dark(280);
- lightc = c.light(145);
- } else if ( ps->acStatus() == PowerStatus::Online ) {
- c = green.dark(130);
- darkc = c.dark(200);
- lightc = c.light(220);
- } else {
- c = red;
- darkc = c.dark(280);
- lightc = c.light(140);
- }
- if ( percent < 0 )
- return;
-
- int percent2 = percent * 2;
- p.setPen( black );
- qDrawShadePanel( &p, 9, 30, 204, 39, colorGroup(), TRUE, 1, NULL);
- qDrawShadePanel( &p, 212, 37, 12, 24, colorGroup(), TRUE, 1, NULL);
- drawSegment( &p, QRect( 10, 30, percent2, 40 ), lightc, darkc, lightc.light(115), 6 );
- drawSegment( &p, QRect( 11 + percent2, 30, 200 - percent2, 40 ), white.light(80), black, white.light(90), 6 );
- drawSegment( &p, QRect( 212, 37, 10, 25 ), white.light(80), black, white.light(90), 2 );
}
diff --git a/core/applets/batteryapplet/batterystatus.h b/core/applets/batteryapplet/batterystatus.h
index 0dc25af..18c2943 100644
--- a/core/applets/batteryapplet/batterystatus.h
+++ b/core/applets/batteryapplet/batterystatus.h
@@ -36,10 +36,22 @@ public:
protected:
void drawSegment( QPainter *p, const QRect &r, const QColor &topgrad, const QColor &botgrad, const QColor &highlight, int hightlight_height );
void paintEvent( QPaintEvent *pe );
-
+ bool BatteryStatus::getProcApmStatusIpaq();
private:
const PowerStatus *ps;
int percent;
+ int ipaqPercent;
+ int jackPercent;
+ int jackMinutes;
+ QString perc1;
+ QString sec1;
+ QString perc2;
+ QString sec2;
+ QString ipaqStatus;
+ QString jackStatus;
+ QString ipaqChem;
+ QString jackChem;
+ bool bat2;
};
#endif