From 0cce344730fbdcc131254bf04a2d40f665e1bd86 Mon Sep 17 00:00:00 2001 From: harlekin Date: Fri, 11 Apr 2003 08:06:37 +0000 Subject: adapt better to variable screen sizes --- (limited to 'core/applets') 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 @@ -9,7 +9,9 @@ #include #include #include +#include #include +#include #include using namespace Opie; @@ -18,9 +20,18 @@ BatteryStatus::BatteryStatus( const PowerStatus *p, QWidget *parent ) : QWidget( parent, 0, WDestructiveClose), ps(p), bat2(false) { setCaption( tr("Battery status") ); QPushButton *pb = new QPushButton( tr("Close"), this ); - pb->move( 70, 250 ); - pb->setMaximumHeight(20); + QVBoxLayout *layout = new QVBoxLayout ( this ); + + jackPercent = 0; + + pb->setMaximumHeight(40); + pb->setMaximumWidth( 120 ); + pb->show(); + + layout->addStretch( 0 ); + layout->addWidget( pb ); + if ( ODevice::inst ( )-> series ( ) == Model_iPAQ ) { getProcApmStatusIpaq(); } @@ -135,6 +146,10 @@ void BatteryStatus::drawSegment( QPainter *p, const QRect &r, const QColor &topg void BatteryStatus::paintEvent( QPaintEvent * ) { + + int screenWidth = qApp->desktop()->width(); + int screenHeight = qApp->desktop()->height(); + QPainter p(this); QString text; if ( ps->batteryStatus() == PowerStatus::Charging ) { @@ -198,13 +213,15 @@ void BatteryStatus::paintEvent( QPaintEvent * ) { if ( percent < 0 ) return; - int percent2 = percent * 2; + int rightEnd1 = screenWidth - 47; + int rightEnd2 = screenWidth - 35; + int percent2 = ( percent / 100 ) * rightEnd1 ; p.setPen( black ); - qDrawShadePanel( &p, 9, 30, 204, 39, colorGroup(), TRUE, 1, NULL); - qDrawShadePanel( &p, 212, 37, 12, 24, colorGroup(), TRUE, 1, NULL); + qDrawShadePanel( &p, 9, 30, rightEnd1 , 39, colorGroup(), TRUE, 1, NULL); + qDrawShadePanel( &p, rightEnd2, 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 ); + drawSegment( &p, QRect( 11 + percent2, 30, rightEnd1 - percent2, 40 ), white.light(80), black, white.light(90), 6 ); + drawSegment( &p, QRect( rightEnd2, 37, 10, 25 ), white.light(80), black, white.light(90), 2 ); p.setPen( black); @@ -223,11 +240,13 @@ void BatteryStatus::paintEvent( QPaintEvent * ) { 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 ); + int jackPerc = ( jackPercent / 100 ) * screenWidth - 47; + + qDrawShadePanel( &p, 9, 160, rightEnd1, 39, colorGroup(), TRUE, 1, NULL); + qDrawShadePanel( &p, rightEnd2, 167, 12, 24, colorGroup(), TRUE, 1, NULL); + drawSegment( &p, QRect( 10, 160, jackPerc, 40 ), lightc, darkc, lightc.light(115), 6 ); + drawSegment( &p, QRect( 11 + jackPerc, 160, rightEnd1 - jackPerc, 40 ), white.light(80), black, white.light(90), 6 ); + drawSegment( &p, QRect( rightEnd2, 167, 10, 25 ), white.light(80), black, white.light(90), 2 ); p.setPen( black ); p.drawText(15, 180, jacketMsg); } 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 @@ -52,6 +52,8 @@ private: QString ipaqChem; QString jackChem; bool bat2; + int screenWidth; + int screenHeight; }; #endif -- cgit v0.9.0.2