summaryrefslogtreecommitdiff
path: root/core/pim/today/todaybase.cpp
blob: a89f4547f489a324b92defc62dd724b48476f4a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/*
 * todaybase.cpp
 *
 * copyright   : (c) 2002, 2003, 2004 by Maximilian Reiß
 * email       : harlekin@handhelds.org
 *
 */
/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#include "todaybase.h"

#include <qpe/applnk.h>
#include <qpe/resource.h>

#include <qvbox.h>
#include <qwhatsthis.h>

using namespace Opie::Ui;
TodayBase::TodayBase( QWidget* parent,  const char* name, WFlags )
    : QWidget( parent, name, WStyle_ContextHelp ) {

  QPixmap logo = Resource::loadPixmap( "today/today_logo"); // logo
  QImage  opiezillaimage = QImage( Resource::loadImage("logo/opielogo" ) );
  opiezillaimage = opiezillaimage.smoothScale( 45, 45 );
  QPixmap opiezilla; //the opiezilla
  opiezilla.convertFromImage( opiezillaimage );
  QPixmap config;
  config.convertFromImage( Resource::loadImage( "SettingsIcon" ).smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) );

  layout = 0L;

  QPalette pal = this->palette();
  QColor col = pal.color( QPalette::Active, QColorGroup::Background );
  pal.setColor( QPalette::Active, QColorGroup::Button, col );
  pal.setColor( QPalette::Inactive, QColorGroup::Button, col );
  pal.setColor( QPalette::Normal, QColorGroup::Button, col );
  pal.setColor( QPalette::Disabled, QColorGroup::Button, col );
  this->setPalette( pal );

  // --- logo Section ---
  QPalette pal2;
  QColorGroup cg;
  cg.setColor( QColorGroup::Text, white );
  cg.setBrush( QColorGroup::Background, QBrush( QColor( 238, 238, 230 ), logo ) );
  pal2.setActive( cg );

// today logo
  Frame = new QLabel( this, "Frame" );
  Frame->setPalette( pal2 );
  Frame->setFrameShape( QFrame::StyledPanel );
  Frame->setFrameShadow( QFrame::Raised );
  Frame->setLineWidth( 0 );

  QHBoxLayout *frameLayout = new QHBoxLayout( Frame );
  QVBox *box1 = new QVBox( Frame );

  // Today text
  TodayLabel = new QLabel( box1, "TodayText" );
  QFont TodayLabel_font(  TodayLabel->font() );
  TodayLabel_font.setBold( TRUE );
  TodayLabel_font.setPointSize( 40 );
  TodayLabel->setFont( TodayLabel_font );
  TodayLabel->setBackgroundOrigin( QLabel::ParentOrigin );
  TodayLabel->setText( "<font color=#FFFFFF>" + tr("Today") +"</font>" );

  // date
  DateLabel = new QLabel( box1, "TextLabel1" );
  QFont DateLabel_font( DateLabel->font() );
  DateLabel_font.setBold( TRUE );
  DateLabel->setFont( DateLabel_font );
  DateLabel->setBackgroundOrigin( QLabel::ParentOrigin );
  DateLabel->setTextFormat( RichText );

  // Opiezilla
  Opiezilla = new QLabel( Frame, "OpieZilla" );
  Opiezilla->setPixmap( opiezilla );
  QWhatsThis::add( Opiezilla , tr( "Today by Maximilian Reiß" ) );
  Opiezilla->setBackgroundOrigin( QLabel::ParentOrigin );


  // Ownerfield
  OwnerField = new OClickableLabel( this , "Owner" );
  OwnerField->setAlignment( int (QLabel::AlignTop | QLabel::AlignLeft ) );

  // config
  ConfigButton = new OClickableLabel ( Frame, "PushButton1" );
  ConfigButton->setPixmap( config );
  QWhatsThis::add( ConfigButton, tr( "Click here to get to the config dialog" ) );
  ConfigButton->setBackgroundOrigin( QLabel::ParentOrigin );

  frameLayout->addWidget( box1, 1 );
  frameLayout->addStretch( 1 );
  frameLayout->addWidget( ConfigButton,  0, AlignBottom );
  frameLayout->addWidget( Opiezilla );
}


/**
 *  D' tor
 */
TodayBase::~TodayBase() {
}