summaryrefslogtreecommitdiff
path: root/core/pim/today/todaybase.cpp
Unidiff
Diffstat (limited to 'core/pim/today/todaybase.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/todaybase.cpp27
1 files changed, 18 insertions, 9 deletions
diff --git a/core/pim/today/todaybase.cpp b/core/pim/today/todaybase.cpp
index ae8763b..c6ea11f 100644
--- a/core/pim/today/todaybase.cpp
+++ b/core/pim/today/todaybase.cpp
@@ -41,21 +41,13 @@ TodayBase::TodayBase( QWidget* parent, const char* name, WFlags fl )
41{ 41{
42 QPixmap logo = Resource::loadPixmap( "today/today_logo"); // logo 42 QPixmap logo = Resource::loadPixmap( "today/today_logo"); // logo
43 QPixmap datebook = Resource::loadPixmap("DateBook"); // datebook 43 QPixmap datebook = Resource::loadPixmap("DateBook"); // datebook
44 QPixmap todo = Resource::loadPixmap( "TodoList" ); // todo 44 QPixmap todo = Resource::loadPixmap( "TodoList" ); // todo
45 QPixmap config = Resource::loadPixmap( "today/config" ); // config icon 45 QPixmap config = Resource::loadPixmap( "today/config" ); // config icon
46 QPixmap mail = Resource::loadPixmap( "today/mail" ); // mail icon 46 QPixmap mail = Resource::loadPixmap( "today/mail" ); // mail icon
47 47 QPixmap opiezilla = Resource::loadPixmap("today/opiezilla" ); //the opiezilla
48 //QPalette pal = this->palette();
49 // QColor col = pal.color(QPalette::Active, QColorGroup::Background);
50 //pal.setColor(QPalette::Active, QColorGroup::Button, col);
51 //pal.setColor(QPalette::Inactive, QColorGroup::Button, col);
52 //pal.setColor(QPalette::Normal, QColorGroup::Button, col);
53 //pal.setColor(QPalette::Disabled, QColorGroup::Button, col);
54 //this->setPalette(pal);
55
56 48
57 QWidget *d = QApplication::desktop(); 49 QWidget *d = QApplication::desktop();
58 int w=d->width(); 50 int w=d->width();
59 int h=d->height(); 51 int h=d->height();
60 resize( w , h ); 52 resize( w , h );
61 53
@@ -76,12 +68,29 @@ TodayBase::TodayBase( QWidget* parent, const char* name, WFlags fl )
76 Frame->setPalette( pal2 ); 68 Frame->setPalette( pal2 );
77 Frame->setFrameShape( QFrame::StyledPanel ); 69 Frame->setFrameShape( QFrame::StyledPanel );
78 Frame->setFrameShadow( QFrame::Raised ); 70 Frame->setFrameShadow( QFrame::Raised );
79 Frame->setLineWidth( 0 ); 71 Frame->setLineWidth( 0 );
80 Frame->setMaximumHeight(50); 72 Frame->setMaximumHeight(50);
81 Frame->setMinimumHeight(50); 73 Frame->setMinimumHeight(50);
74
75 // Today text
76 QLabel* TodayLabel = new QLabel( Frame, "TodayText" );
77 TodayLabel->setGeometry( QRect( 10, 0, 168, 40 ) );
78 QFont TodayLabel_font( TodayLabel->font() );
79 TodayLabel_font.setBold( TRUE );
80 TodayLabel_font.setPointSize(40);
81 TodayLabel->setFont( TodayLabel_font );
82 TodayLabel->setBackgroundOrigin( QLabel::ParentOrigin );
83 TodayLabel->setText("<font color=#FFFFFF>" + tr("Today") +"</font>");
84
85 // Opiezilla
86 QLabel* Opiezilla = new QLabel( Frame, "OpieZilla");
87 Opiezilla->setPixmap( opiezilla );
88 Opiezilla->setGeometry( this->width()-50 ,1, 45, 47);
89 Opiezilla->setBackgroundOrigin( QLabel::ParentOrigin );
90
82 // date 91 // date
83 TextLabel1 = new QLabel( Frame, "TextLabel1" ); 92 TextLabel1 = new QLabel( Frame, "TextLabel1" );
84 TextLabel1->setGeometry( QRect( 10, 35, 168, 12 ) ); 93 TextLabel1->setGeometry( QRect( 10, 35, 168, 12 ) );
85 QFont TextLabel1_font( TextLabel1->font() ); 94 QFont TextLabel1_font( TextLabel1->font() );
86 TextLabel1_font.setBold( TRUE ); 95 TextLabel1_font.setBold( TRUE );
87 TextLabel1->setFont( TextLabel1_font ); 96 TextLabel1->setFont( TextLabel1_font );