-rw-r--r-- | noncore/todayplugins/weather/weatherpluginwidget.cpp | 75 |
1 files changed, 37 insertions, 38 deletions
diff --git a/noncore/todayplugins/weather/weatherpluginwidget.cpp b/noncore/todayplugins/weather/weatherpluginwidget.cpp index 8e00c36..8c41189 100644 --- a/noncore/todayplugins/weather/weatherpluginwidget.cpp +++ b/noncore/todayplugins/weather/weatherpluginwidget.cpp @@ -1,25 +1,25 @@ /* - This file is part of the OPIE Project + This file is part of the OPIE Project =. - .=l. Copyright (c) 2002 Dan Williams <williamsdr@acm.org> - .>+-= - _;:, .> :=|. This file is free software; you can -.> <`_, > . <= redistribute it and/or modify it under -:`=1 )Y*s>-.-- : the terms of the GNU General Public -.="- .-=="i, .._ License as published by the Free Software - - . .-<_> .<> Foundation; either version 2 of the License, - ._= =} : or (at your option) any later version. - .%`+i> _;_. - .i_,=:_. -<s. This file is distributed in the hope that - + . -:. = it will be useful, but WITHOUT ANY WARRANTY; - : .. .:, . . . without even the implied warranty of - =_ + =;=|` MERCHANTABILITY or FITNESS FOR A - _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU General -..}^=.= = ; Public License for more details. -++= -. .` .: - : = ...= . :.=- You should have received a copy of the GNU - -. .:....=;==+<; General Public License along with this file; - -_. . . )=. = see the file COPYING. If not, write to the - -- :-=` Free Software Foundation, Inc., + .=l. Copyright (c) 2002 Dan Williams <williamsdr@acm.org> + .>+-= +_;:, .> :=|. This file is free software; you can +.> <`_, > . <= redistribute it and/or modify it under +:`=1 )Y*s>-.-- : the terms of the GNU General Public +.="- .-=="i, .._ License as published by the Free Software +- . .-<_> .<> Foundation; either version 2 of the License, + ._= =} : or (at your option) any later version. + .%`+i> _;_. + .i_,=:_. -<s. This file is distributed in the hope that + + . -:. = it will be useful, but WITHOUT ANY WARRANTY; + : .. .:, . . . without even the implied warranty of + =_ + =;=|` MERCHANTABILITY or FITNESS FOR A + _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU General +..}^=.= = ; Public License for more details. +++= -. .` .: +: = ...= . :.=- You should have received a copy of the GNU +-. .:....=;==+<; General Public License along with this file; + -_. . . )=. = see the file COPYING. If not, write to the + -- :-=` Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. @@ -27,4 +27,10 @@ */ +#include <opie2/oprocess.h> + +#include <qpe/applnk.h> +#include <qpe/config.h> +#include <qpe/resource.h> + #include <qfile.h> #include <qimage.h> @@ -34,9 +40,4 @@ #include <qtextstream.h> -#include <opie2/oprocess.h> - -#include <qpe/config.h> -#include <qpe/resource.h> - #include "weatherpluginwidget.h" @@ -45,13 +46,10 @@ WeatherPluginWidget::WeatherPluginWidget( QWidget *parent, const char* name ) : QWidget( parent, name ) { - QHBoxLayout *layout = new QHBoxLayout( this ); - layout->setAutoAdd( TRUE ); - layout->setSpacing( 2 ); + QHBoxLayout *layout = new QHBoxLayout( this, 1, 2 ); + layout->setAutoAdd( true ); weatherIcon = new QLabel( this ); - weatherIcon->setMaximumWidth( 32 ); - QImage logo1 = Resource::loadImage( "Clock" ); - QPixmap pic; - pic.convertFromImage( logo1 ); + QPixmap pic; + pic.convertFromImage( Resource::loadImage( "Clock" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) ); weatherIcon->setPixmap( pic ); @@ -59,4 +57,6 @@ WeatherPluginWidget::WeatherPluginWidget( QWidget *parent, const char* name ) weatherLabel->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Preferred ) ); + weatherIcon->setFixedSize( weatherLabel->height(), weatherLabel->height() ); + startTimer(1000); } @@ -85,5 +85,5 @@ void WeatherPluginWidget::retreiveData() location = config.readEntry( "Location", "" ); - useMetric = config.readBoolEntry( "Metric", TRUE ); + useMetric = config.readBoolEntry( "Metric", true ); frequency = config.readNumEntry( "Frequency", 5 ); @@ -146,8 +146,7 @@ void WeatherPluginWidget::displayWeather() getIcon( weatherData ); tmpstr.append( dataStr ); - QImage logo1 = Resource::loadImage( tmpstr ); - QPixmap pic; - pic.convertFromImage( logo1 ); - weatherIcon->setPixmap( pic ); + QPixmap pic; + pic.convertFromImage( Resource::loadImage( tmpstr ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) ); + weatherIcon->setPixmap( pic ); } else |