summaryrefslogtreecommitdiff
path: root/core/pim/today/plugins/addressbook/addresspluginconfig.cpp
blob: 7b6117e27a1356e722f79e314a492714ef008fb2 (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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/*
 * addresspluginconfig.cpp
 *
 * copyright   : (c) 2003 by Stefan Eilers
 * email       : eilers.stefan@epost.de
 *
 * This implementation was derived from the todolist plugin implementation
 *
 */
/***************************************************************************
 *                                                                         *
 *   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 "addresspluginconfig.h"

#include <qpe/config.h>

#include <qlayout.h>
#include <qhbox.h>
#include <qlabel.h>
#include <qwhatsthis.h>
#include <qvgroupbox.h>


AddressBookPluginConfig::AddressBookPluginConfig( QWidget *parent,  const char* name)
    : TodayConfigWidget(parent,  name ) {

    QVBoxLayout * layout = new QVBoxLayout( this );
    layout->setMargin( 5 );

    // Buttongroup to enable/disable shown stuff
    QVGroupBox* b_group = new QVGroupBox( this, "name" );
    b_group -> setTitle( tr("Enable/Disable Views") );
    m_showBirthdayButton = new QRadioButton( b_group );
    m_showBirthdayButton -> setText( tr( "Show &Birthdays" ) );
    m_showAnniversaryButton = new QRadioButton( b_group );
    m_showAnniversaryButton -> setText( tr( "Show &Anniveraries" ) );

    QWhatsThis::add( m_showBirthdayButton , tr( "The next birthdays will just be shown, if enabled!" ) );
    QWhatsThis::add( m_showAnniversaryButton , tr( "The next anniversaries will just be shown, if enabled !" ) );

    // Max lines settings
    QHBox *box1 = new QHBox( this );
    QLabel* TextLabel6 = new QLabel( box1, "TextLabel6" );
    TextLabel6->setText( tr( "Max Lines: " ) );
    SpinBox2 = new QSpinBox( box1, "SpinBox2" );
    SpinBox2->setMaxValue( 40 );
    QWhatsThis::add( SpinBox2 , tr( "Set the maximum number of lines that should be shown for each anniversaries/birthdays" ) );

    // Look ahead settings
    QHBox *box3 = new QHBox( this );
    QLabel* daysLabel = new QLabel( box3, "" );
    daysLabel->setText( tr( "Days look ahead: " ) );
    SpinDaysClip = new QSpinBox( box3, "SpinDays" );
    SpinDaysClip->setMaxValue( 200 );
    QWhatsThis::add( SpinDaysClip , tr( "How many days we should search forward" ) );


    QHBox *box5 = new QHBox( this );
    QLabel* colorLabel2 = new QLabel( box5, "" );
    colorLabel2->setText( tr( "Set Headline Color: " ) );
    headlineColor = new Opie::OColorButton( box5, black , "headlineColor" );
    QWhatsThis::add( headlineColor , tr( "Colors for the headlines !" ) );
    QHBox *box6 = new QHBox( this );

    // Entry color settings
    QLabel* colorLabel3= new QLabel( box6, "" );
    colorLabel3->setText( tr( "Set Entry Color: " ) );
    entryColor = new Opie::OColorButton( box6, black , "entryColor" );
    QWhatsThis::add( entryColor , tr( "This color will be used for shown birthdays/anniversaries !" ) );

    // Urgent color settings
    QHBox *box7 = new QHBox( this );
    QLabel* colorLabel5 = new QLabel( box7, "" );
    colorLabel5->setText( tr( "Set Urgent\nColor if below " ) );
    SpinUrgentClip = new QSpinBox( box7, "SpinDays" );
    SpinUrgentClip->setMaxValue( 200 );
    QLabel* colorLabel6 = new QLabel( box7, "" );
    colorLabel6->setText( tr( " days: " ) );
    urgentColor = new Opie::OColorButton( box7, red , "urgentColor" );
    QWhatsThis::add( urgentColor , tr( "This urgent color will be used if we are close to the event !" ) );
    QWhatsThis::add( SpinUrgentClip , tr( "The urgent color will be used if the birthday/anniversary is closer than given days !" ) );


    layout->addWidget( b_group );
    layout->addWidget( box1 );
    layout->addWidget( box3 );
    layout->addWidget( box5 );
    layout->addWidget( box6 );
    layout->addWidget( box7 );
    
    /*
     * pack the widgets together
     */
    QSpacerItem *item = new QSpacerItem( 1, 2, QSizePolicy::Minimum,
    					  QSizePolicy::MinimumExpanding );
    layout->addItem( item );

    readConfig();

}

void AddressBookPluginConfig::readConfig() {
    Config cfg( "todayaddressplugin" );
    cfg.setGroup( "config" );
    m_max_lines_task = cfg.readNumEntry( "maxlinestask", 5 );
    SpinBox2->setValue( m_max_lines_task );
//     m_maxCharClip =  cfg.readNumEntry( "maxcharclip", 38 );
//     SpinBoxClip->setValue( m_maxCharClip );
    m_daysLookAhead = cfg.readNumEntry( "dayslookahead", 14 );
    SpinDaysClip->setValue( m_daysLookAhead );
    m_urgentDays = cfg.readNumEntry( "urgentdays", 7 );
    SpinUrgentClip->setValue( m_urgentDays );

    m_entryColor = cfg.readEntry( "entrycolor", Qt::black.name() );
    entryColor->setColor( QColor( m_entryColor ) );
    m_headlineColor = cfg.readEntry( "headlinecolor", Qt::black.name() );
    headlineColor->setColor( QColor( m_headlineColor ) );
    m_urgentColor = cfg.readEntry( "urgentcolor", Qt::red.name() );
    urgentColor->setColor( QColor( m_urgentColor ) );

    m_showBirthdayButton->setChecked( cfg.readBoolEntry( "showBirthdays", true ) );
    m_showAnniversaryButton->setChecked( cfg.readBoolEntry( "showAnniversaries", true ) );

}


void AddressBookPluginConfig::writeConfig() {
    Config cfg( "todayaddressplugin" );
    cfg.setGroup( "config" );
    m_max_lines_task = SpinBox2->value();
    cfg.writeEntry( "maxlinestask", m_max_lines_task );
//     m_maxCharClip = SpinBoxClip->value();
//     cfg.writeEntry( "maxcharclip",  m_maxCharClip );
    m_daysLookAhead = SpinDaysClip->value();
    cfg.writeEntry( "dayslookahead",  m_daysLookAhead );
    m_urgentDays = SpinUrgentClip->value();
    if ( m_urgentDays > m_daysLookAhead )
        m_urgentDays = m_daysLookAhead;
    cfg.writeEntry( "urgentdays", m_urgentDays );

    m_entryColor = entryColor->color().name();
    cfg.writeEntry( "entrycolor", m_entryColor );
    m_headlineColor = headlineColor->color().name();
    cfg.writeEntry( "headlinecolor", m_headlineColor );
    m_urgentColor = urgentColor->color().name();
    cfg.writeEntry( "urgentcolor", m_urgentColor );

    cfg.writeEntry( "showBirthdays", m_showBirthdayButton->isChecked() );
    cfg.writeEntry( "showAnniversaries", m_showAnniversaryButton->isChecked() );

    cfg.write();
}


AddressBookPluginConfig::~AddressBookPluginConfig() {
}