summaryrefslogtreecommitdiff
path: root/core/pim/today/plugins/addressbook/addresspluginconfig.cpp
authoreilers <eilers>2003-01-13 13:17:17 (UTC)
committer eilers <eilers>2003-01-13 13:17:17 (UTC)
commit55266a0b221b065a94dc1a83860f9603c1d3c2c5 (patch) (side-by-side diff)
treed5f25e9c77d35dc90d4881d04854cc1a5ae4eabc /core/pim/today/plugins/addressbook/addresspluginconfig.cpp
parentaa4f80fdc2d78bfe1c1d4cb8ec1d852115d00fc7 (diff)
downloadopie-55266a0b221b065a94dc1a83860f9603c1d3c2c5.zip
opie-55266a0b221b065a94dc1a83860f9603c1d3c2c5.tar.gz
opie-55266a0b221b065a94dc1a83860f9603c1d3c2c5.tar.bz2
Bugfixed and improved color settings ! Now it is possible to change
the color if the anniversary/birthday is close.. :)
Diffstat (limited to 'core/pim/today/plugins/addressbook/addresspluginconfig.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/plugins/addressbook/addresspluginconfig.cpp60
1 files changed, 52 insertions, 8 deletions
diff --git a/core/pim/today/plugins/addressbook/addresspluginconfig.cpp b/core/pim/today/plugins/addressbook/addresspluginconfig.cpp
index f00cffe..45d9a3e 100644
--- a/core/pim/today/plugins/addressbook/addresspluginconfig.cpp
+++ b/core/pim/today/plugins/addressbook/addresspluginconfig.cpp
@@ -39,3 +39,3 @@ AddressBookPluginConfig::AddressBookPluginConfig( QWidget *parent, const char*
QLabel* TextLabel6 = new QLabel( box1, "TextLabel6" );
- TextLabel6->setText( tr( "Max Lines " ) );
+ TextLabel6->setText( tr( "Max Lines: " ) );
@@ -48,3 +48,3 @@ AddressBookPluginConfig::AddressBookPluginConfig( QWidget *parent, const char*
QLabel* clipLabel = new QLabel( box2, "" );
- clipLabel->setText( tr( "Clip line after X chars" ) );
+ clipLabel->setText( tr( "Clip line after X chars: " ) );
@@ -57,4 +57,3 @@ AddressBookPluginConfig::AddressBookPluginConfig( QWidget *parent, const char*
QLabel* daysLabel = new QLabel( box3, "" );
- daysLabel->setText( tr( "Days look ahead" ) );
-
+ daysLabel->setText( tr( "Days look ahead: " ) );
SpinDaysClip = new QSpinBox( box3, "SpinDays" );
@@ -66,6 +65,30 @@ AddressBookPluginConfig::AddressBookPluginConfig( QWidget *parent, const char*
QLabel* colorLabel = new QLabel( box4, "" );
- colorLabel->setText( tr( "Set Entry Color \n(restart Today \nafter change!)" ) );
+ colorLabel->setText( tr( "To activate color settings:\nRestart application !" ) );
+
+ QHBox *box5 = new QHBox( this );
+
+ QLabel* colorLabel2 = new QLabel( box5, "" );
+ colorLabel2->setText( tr( "Set Headline Color: " ) );
+ headlineColor = new OColorButton( box5, black , "headlineColor" );
+ QWhatsThis::add( headlineColor , tr( "Colors for the headlines !" ) );
+
+ QHBox *box6 = new QHBox( this );
+
+ QLabel* colorLabel3= new QLabel( box6, "" );
+ colorLabel3->setText( tr( "Set Entry Color: " ) );
+ entryColor = new OColorButton( box6, black , "entryColor" );
+ QWhatsThis::add( entryColor , tr( "This color will be used for shown birthdays/anniversaries !" ) );
+
+ 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 OColorButton( box7, red , "urgentColor" );
+ QWhatsThis::add( urgentColor , tr( "This color will be used if we are close to the event !" ) );
+ QWhatsThis::add( SpinUrgentClip , tr( "How many days we should search forward" ) );
- entryColor = new OColorButton( box4, red, "entryColor" );
- QWhatsThis::add( entryColor , tr( "What color should be used for shown birthdays/anniversaries?" ) );
@@ -75,4 +98,8 @@ AddressBookPluginConfig::AddressBookPluginConfig( QWidget *parent, const char*
layout->addWidget( box4 );
+ layout->addWidget( box5 );
+ layout->addWidget( box6 );
+ layout->addWidget( box7 );
readConfig();
+
}
@@ -88,3 +115,11 @@ void AddressBookPluginConfig::readConfig() {
SpinDaysClip->setValue( m_daysLookAhead );
- m_entryColor = cfg.readEntry( "entrycolor", Qt::red.name() );
+ 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 ) );
}
@@ -101,4 +136,13 @@ void AddressBookPluginConfig::writeConfig() {
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.write();