author | drw <drw> | 2005-02-28 19:43:45 (UTC) |
---|---|---|
committer | drw <drw> | 2005-02-28 19:43:45 (UTC) |
commit | 2daad674b92c1fd94b0260a15f0baa732e5db20e (patch) (side-by-side diff) | |
tree | 37cb5ec9910b1a0ebd00928070e7b9b166e3aebc | |
parent | 772bc43173a3155ef08c769f1d01ef0ec7b31bcd (diff) | |
download | opie-2daad674b92c1fd94b0260a15f0baa732e5db20e.zip opie-2daad674b92c1fd94b0260a15f0baa732e5db20e.tar.gz opie-2daad674b92c1fd94b0260a15f0baa732e5db20e.tar.bz2 |
Scale weather icons based on AppLnk::smallIconSize
-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,24 +1,24 @@ /* - 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, @@ -28,2 +28,8 @@ +#include <opie2/oprocess.h> + +#include <qpe/applnk.h> +#include <qpe/config.h> +#include <qpe/resource.h> + #include <qfile.h> @@ -35,7 +41,2 @@ -#include <opie2/oprocess.h> - -#include <qpe/config.h> -#include <qpe/resource.h> - #include "weatherpluginwidget.h" @@ -46,11 +47,8 @@ WeatherPluginWidget::WeatherPluginWidget( QWidget *parent, const char* 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 ); @@ -60,2 +58,4 @@ WeatherPluginWidget::WeatherPluginWidget( QWidget *parent, const char* name ) + weatherIcon->setFixedSize( weatherLabel->height(), weatherLabel->height() ); + startTimer(1000); @@ -86,3 +86,3 @@ void WeatherPluginWidget::retreiveData() location = config.readEntry( "Location", "" ); - useMetric = config.readBoolEntry( "Metric", TRUE ); + useMetric = config.readBoolEntry( "Metric", true ); frequency = config.readNumEntry( "Frequency", 5 ); @@ -147,6 +147,5 @@ void WeatherPluginWidget::displayWeather() 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 ); } |