summaryrefslogtreecommitdiff
path: root/core/pim/today
authordrw <drw>2005-03-04 20:06:47 (UTC)
committer drw <drw>2005-03-04 20:06:47 (UTC)
commit4cd082939b03ec1891911c76cbd5aa12f84eb1f1 (patch) (unidiff)
tree3e9cca0534499acae17ebe14b254d6b9955fc1f6 /core/pim/today
parent9d5079d82dc2821e719e70c0111e5f2ddc30eb37 (diff)
downloadopie-4cd082939b03ec1891911c76cbd5aa12f84eb1f1.zip
opie-4cd082939b03ec1891911c76cbd5aa12f84eb1f1.tar.gz
opie-4cd082939b03ec1891911c76cbd5aa12f84eb1f1.tar.bz2
Scale icons appropriately
Diffstat (limited to 'core/pim/today') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/todaybase.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/pim/today/todaybase.cpp b/core/pim/today/todaybase.cpp
index cb809d3..a89f454 100644
--- a/core/pim/today/todaybase.cpp
+++ b/core/pim/today/todaybase.cpp
@@ -13,12 +13,13 @@
13 * (at your option) any later version. * 13 * (at your option) any later version. *
14 * * 14 * *
15 ***************************************************************************/ 15 ***************************************************************************/
16 16
17#include "todaybase.h" 17#include "todaybase.h"
18 18
19#include <qpe/applnk.h>
19#include <qpe/resource.h> 20#include <qpe/resource.h>
20 21
21#include <qvbox.h> 22#include <qvbox.h>
22#include <qwhatsthis.h> 23#include <qwhatsthis.h>
23 24
24using namespace Opie::Ui; 25using namespace Opie::Ui;
@@ -27,13 +28,14 @@ TodayBase::TodayBase( QWidget* parent, const char* name, WFlags )
27 28
28 QPixmap logo = Resource::loadPixmap( "today/today_logo"); // logo 29 QPixmap logo = Resource::loadPixmap( "today/today_logo"); // logo
29 QImage opiezillaimage = QImage( Resource::loadImage("logo/opielogo" ) ); 30 QImage opiezillaimage = QImage( Resource::loadImage("logo/opielogo" ) );
30 opiezillaimage = opiezillaimage.smoothScale( 45, 45 ); 31 opiezillaimage = opiezillaimage.smoothScale( 45, 45 );
31 QPixmap opiezilla; //the opiezilla 32 QPixmap opiezilla; //the opiezilla
32 opiezilla.convertFromImage( opiezillaimage ); 33 opiezilla.convertFromImage( opiezillaimage );
33 QPixmap config = Resource::loadPixmap( "SettingsIcon" ); // config icon 34 QPixmap config;
35 config.convertFromImage( Resource::loadImage( "SettingsIcon" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) );
34 36
35 layout = 0L; 37 layout = 0L;
36 38
37 QPalette pal = this->palette(); 39 QPalette pal = this->palette();
38 QColor col = pal.color( QPalette::Active, QColorGroup::Background ); 40 QColor col = pal.color( QPalette::Active, QColorGroup::Background );
39 pal.setColor( QPalette::Active, QColorGroup::Button, col ); 41 pal.setColor( QPalette::Active, QColorGroup::Button, col );