summaryrefslogtreecommitdiff
path: root/core/applets/batteryapplet
authorharlekin <harlekin>2003-04-11 08:06:37 (UTC)
committer harlekin <harlekin>2003-04-11 08:06:37 (UTC)
commit0cce344730fbdcc131254bf04a2d40f665e1bd86 (patch) (unidiff)
tree784328c71110744d0e75dd5c67d9240124460421 /core/applets/batteryapplet
parent59294dc9a8edd412745e406f35d5564a9a3b3ffa (diff)
downloadopie-0cce344730fbdcc131254bf04a2d40f665e1bd86.zip
opie-0cce344730fbdcc131254bf04a2d40f665e1bd86.tar.gz
opie-0cce344730fbdcc131254bf04a2d40f665e1bd86.tar.bz2
adapt better to variable screen sizes
Diffstat (limited to 'core/applets/batteryapplet') (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/batteryapplet/batterystatus.cpp43
-rw-r--r--core/applets/batteryapplet/batterystatus.h2
2 files changed, 33 insertions, 12 deletions
diff --git a/core/applets/batteryapplet/batterystatus.cpp b/core/applets/batteryapplet/batterystatus.cpp
index 7d3bdd9..fdd963c 100644
--- a/core/applets/batteryapplet/batterystatus.cpp
+++ b/core/applets/batteryapplet/batterystatus.cpp
@@ -11,3 +11,5 @@
11#include <qfile.h> 11#include <qfile.h>
12#include <qlayout.h>
12#include <qtextstream.h> 13#include <qtextstream.h>
14#include <qapplication.h>
13#include <qmessagebox.h> 15#include <qmessagebox.h>
@@ -20,5 +22,14 @@ BatteryStatus::BatteryStatus( const PowerStatus *p, QWidget *parent )
20 QPushButton *pb = new QPushButton( tr("Close"), this ); 22 QPushButton *pb = new QPushButton( tr("Close"), this );
21 pb->move( 70, 250 ); 23 QVBoxLayout *layout = new QVBoxLayout ( this );
22 pb->setMaximumHeight(20); 24
25 jackPercent = 0;
26
27 pb->setMaximumHeight(40);
28 pb->setMaximumWidth( 120 );
29
23 pb->show(); 30 pb->show();
31
32 layout->addStretch( 0 );
33 layout->addWidget( pb );
34
24 if ( ODevice::inst ( )-> series ( ) == Model_iPAQ ) { 35 if ( ODevice::inst ( )-> series ( ) == Model_iPAQ ) {
@@ -137,2 +148,6 @@ void BatteryStatus::paintEvent( QPaintEvent * ) {
137 148
149
150 int screenWidth = qApp->desktop()->width();
151 int screenHeight = qApp->desktop()->height();
152
138 QPainter p(this); 153 QPainter p(this);
@@ -200,9 +215,11 @@ void BatteryStatus::paintEvent( QPaintEvent * ) {
200 215
201 int percent2 = percent * 2; 216 int rightEnd1 = screenWidth - 47;
217 int rightEnd2 = screenWidth - 35;
218 int percent2 = ( percent / 100 ) * rightEnd1 ;
202 p.setPen( black ); 219 p.setPen( black );
203 qDrawShadePanel( &p, 9, 30, 204, 39, colorGroup(), TRUE, 1, NULL); 220 qDrawShadePanel( &p, 9, 30, rightEnd1 , 39, colorGroup(), TRUE, 1, NULL);
204 qDrawShadePanel( &p, 212, 37, 12, 24, colorGroup(), TRUE, 1, NULL); 221 qDrawShadePanel( &p, rightEnd2, 37, 12, 24, colorGroup(), TRUE, 1, NULL);
205 drawSegment( &p, QRect( 10, 30, percent2, 40 ), lightc, darkc, lightc.light(115), 6 ); 222 drawSegment( &p, QRect( 10, 30, percent2, 40 ), lightc, darkc, lightc.light(115), 6 );
206 drawSegment( &p, QRect( 11 + percent2, 30, 200 - percent2, 40 ), white.light(80), black, white.light(90), 6 ); 223 drawSegment( &p, QRect( 11 + percent2, 30, rightEnd1 - percent2, 40 ), white.light(80), black, white.light(90), 6 );
207 drawSegment( &p, QRect( 212, 37, 10, 25 ), white.light(80), black, white.light(90), 2 ); 224 drawSegment( &p, QRect( rightEnd2, 37, 10, 25 ), white.light(80), black, white.light(90), 2 );
208 p.setPen( black); 225 p.setPen( black);
@@ -225,7 +242,9 @@ void BatteryStatus::paintEvent( QPaintEvent * ) {
225 242
226 qDrawShadePanel( &p, 9, 160, 204, 39, colorGroup(), TRUE, 1, NULL); 243 int jackPerc = ( jackPercent / 100 ) * screenWidth - 47;
227 qDrawShadePanel( &p, 212, 167, 12, 24, colorGroup(), TRUE, 1, NULL); 244
228 drawSegment( &p, QRect( 10, 160, jackPercent*2, 40 ), lightc, darkc, lightc.light(115), 6 ); 245 qDrawShadePanel( &p, 9, 160, rightEnd1, 39, colorGroup(), TRUE, 1, NULL);
229 drawSegment( &p, QRect( 11 + jackPercent*2, 160, 200 - jackPercent*2, 40 ), white.light(80), black, white.light(90), 6 ); 246 qDrawShadePanel( &p, rightEnd2, 167, 12, 24, colorGroup(), TRUE, 1, NULL);
230 drawSegment( &p, QRect( 212, 167, 10, 25 ), white.light(80), black, white.light(90), 2 ); 247 drawSegment( &p, QRect( 10, 160, jackPerc, 40 ), lightc, darkc, lightc.light(115), 6 );
248 drawSegment( &p, QRect( 11 + jackPerc, 160, rightEnd1 - jackPerc, 40 ), white.light(80), black, white.light(90), 6 );
249 drawSegment( &p, QRect( rightEnd2, 167, 10, 25 ), white.light(80), black, white.light(90), 2 );
231 p.setPen( black ); 250 p.setPen( black );
diff --git a/core/applets/batteryapplet/batterystatus.h b/core/applets/batteryapplet/batterystatus.h
index 18c2943..a5ab804 100644
--- a/core/applets/batteryapplet/batterystatus.h
+++ b/core/applets/batteryapplet/batterystatus.h
@@ -54,2 +54,4 @@ private:
54 bool bat2; 54 bool bat2;
55 int screenWidth;
56 int screenHeight;
55}; 57};