summaryrefslogtreecommitdiff
path: root/core
Unidiff
Diffstat (limited to 'core') (more/less context) (show 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
@@ -1,57 +1,59 @@
1/* 1/*
2 * todaybase.cpp 2 * todaybase.cpp
3 * 3 *
4 * copyright : (c) 2002, 2003, 2004 by Maximilian Reiß 4 * copyright : (c) 2002, 2003, 2004 by Maximilian Reiß
5 * email : harlekin@handhelds.org 5 * email : harlekin@handhelds.org
6 * 6 *
7 */ 7 */
8/*************************************************************************** 8/***************************************************************************
9 * * 9 * *
10 * This program is free software; you can redistribute it and/or modify * 10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by * 11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or * 12 * the Free Software Foundation; either version 2 of the License, or *
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;
25TodayBase::TodayBase( QWidget* parent, const char* name, WFlags ) 26TodayBase::TodayBase( QWidget* parent, const char* name, WFlags )
26 : QWidget( parent, name, WStyle_ContextHelp ) { 27 : QWidget( parent, name, WStyle_ContextHelp ) {
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 );
40 pal.setColor( QPalette::Inactive, QColorGroup::Button, col ); 42 pal.setColor( QPalette::Inactive, QColorGroup::Button, col );
41 pal.setColor( QPalette::Normal, QColorGroup::Button, col ); 43 pal.setColor( QPalette::Normal, QColorGroup::Button, col );
42 pal.setColor( QPalette::Disabled, QColorGroup::Button, col ); 44 pal.setColor( QPalette::Disabled, QColorGroup::Button, col );
43 this->setPalette( pal ); 45 this->setPalette( pal );
44 46
45 // --- logo Section --- 47 // --- logo Section ---
46 QPalette pal2; 48 QPalette pal2;
47 QColorGroup cg; 49 QColorGroup cg;
48 cg.setColor( QColorGroup::Text, white ); 50 cg.setColor( QColorGroup::Text, white );
49 cg.setBrush( QColorGroup::Background, QBrush( QColor( 238, 238, 230 ), logo ) ); 51 cg.setBrush( QColorGroup::Background, QBrush( QColor( 238, 238, 230 ), logo ) );
50 pal2.setActive( cg ); 52 pal2.setActive( cg );
51 53
52// today logo 54// today logo
53 Frame = new QLabel( this, "Frame" ); 55 Frame = new QLabel( this, "Frame" );
54 Frame->setPalette( pal2 ); 56 Frame->setPalette( pal2 );
55 Frame->setFrameShape( QFrame::StyledPanel ); 57 Frame->setFrameShape( QFrame::StyledPanel );
56 Frame->setFrameShadow( QFrame::Raised ); 58 Frame->setFrameShadow( QFrame::Raised );
57 Frame->setLineWidth( 0 ); 59 Frame->setLineWidth( 0 );