summaryrefslogtreecommitdiff
path: root/core/applets/batteryapplet/batterystatus.cpp
Side-by-side diff
Diffstat (limited to 'core/applets/batteryapplet/batterystatus.cpp') (more/less context) (show whitespace changes)
-rw-r--r--core/applets/batteryapplet/batterystatus.cpp23
1 files changed, 10 insertions, 13 deletions
diff --git a/core/applets/batteryapplet/batterystatus.cpp b/core/applets/batteryapplet/batterystatus.cpp
index 64e0499..86b20e8 100644
--- a/core/applets/batteryapplet/batterystatus.cpp
+++ b/core/applets/batteryapplet/batterystatus.cpp
@@ -20,4 +20,6 @@ BatteryStatus::BatteryStatus( const PowerStatus *p, QWidget *parent )
: QWidget( parent, 0, WDestructiveClose), ps(p), bat2(false) {
setCaption( tr("Battery status") );
+ setMinimumSize( 150, 200 );
+
QPushButton *pb = new QPushButton( tr("Close"), this );
QVBoxLayout *layout = new QVBoxLayout ( this );
@@ -25,10 +27,9 @@ BatteryStatus::BatteryStatus( const PowerStatus *p, QWidget *parent )
jackPercent = 0;
- pb->setMaximumHeight(40);
- pb->setMaximumWidth( 120 );
+ pb->setMaximumSize( 120, 40 );
pb->show();
- layout->addStretch( 0 );
+ layout->addStretch();
layout->addWidget( pb );
@@ -80,7 +81,7 @@ bool BatteryStatus::getProcApmStatusIpaq() {
}else if( (*line).startsWith(" Status") ){
if (bat2 == true) {
- jackStatus = (*line).mid((*line).find('(')+1., (*line).find(')')-(*line).find('(')-1);
+ jackStatus = (*line).mid((*line).find('(')+1, (*line).find(')')-(*line).find('(')-1);
} else {
- ipaqStatus = (*line).mid((*line).find('(')+1., (*line).find(')')-(*line).find('(')-1);
+ ipaqStatus = (*line).mid((*line).find('(')+1, (*line).find(')')-(*line).find('(')-1);
}
}else if( (*line).startsWith(" Chemistry") ) {
@@ -147,8 +148,4 @@ 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;
@@ -214,7 +211,7 @@ void BatteryStatus::paintEvent( QPaintEvent * ) {
return;
- int rightEnd1 = screenWidth - 47;
- int rightEnd2 = screenWidth - 35;
- int percent2 = ( percent / 100.0 ) * rightEnd1 ;
+ int rightEnd1 = width() - 47;
+ int rightEnd2 = width() - 35;
+ int percent2 = ( percent / 100 ) * rightEnd1 ;
p.setPen( black );
qDrawShadePanel( &p, 9, 30, rightEnd1 , 39, colorGroup(), TRUE, 1, NULL);
@@ -241,5 +238,5 @@ void BatteryStatus::paintEvent( QPaintEvent * ) {
}
- int jackPerc = ( jackPercent / 100.0 ) * ( screenWidth - 47 ) ;
+ int jackPerc = ( jackPercent / 100 ) * ( width() - 47 ) ;
qDrawShadePanel( &p, 9, 160, rightEnd1, 39, colorGroup(), TRUE, 1, NULL);