summaryrefslogtreecommitdiff
path: root/core/pim/today
authoreilers <eilers>2003-01-05 14:50:40 (UTC)
committer eilers <eilers>2003-01-05 14:50:40 (UTC)
commitf887403341dd82d46d26695acc308cc8801cd6aa (patch) (side-by-side diff)
treebe64ebf1809706120972faac630577add4ad6d5e /core/pim/today
parent3eecce3109b543a5abd6a36a420fa3f53cc23023 (diff)
downloadopie-f887403341dd82d46d26695acc308cc8801cd6aa.zip
opie-f887403341dd82d46d26695acc308cc8801cd6aa.tar.gz
opie-f887403341dd82d46d26695acc308cc8801cd6aa.tar.bz2
Color for entries is now customizeable
Diffstat (limited to 'core/pim/today') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/plugins/addressbook/addresspluginconfig.cpp12
-rw-r--r--core/pim/today/plugins/addressbook/addresspluginconfig.h5
-rw-r--r--core/pim/today/plugins/addressbook/addresspluginwidget.cpp3
-rw-r--r--core/pim/today/plugins/addressbook/addresspluginwidget.h1
4 files changed, 19 insertions, 2 deletions
diff --git a/core/pim/today/plugins/addressbook/addresspluginconfig.cpp b/core/pim/today/plugins/addressbook/addresspluginconfig.cpp
index 686d72c..f00cffe 100644
--- a/core/pim/today/plugins/addressbook/addresspluginconfig.cpp
+++ b/core/pim/today/plugins/addressbook/addresspluginconfig.cpp
@@ -61,9 +61,18 @@ AddressBookPluginConfig::AddressBookPluginConfig( QWidget *parent, const char*
SpinDaysClip->setMaxValue( 200 );
QWhatsThis::add( SpinDaysClip , tr( "How many days we should search forward" ) );
+ QHBox *box4 = new QHBox( this );
+
+ QLabel* colorLabel = new QLabel( box4, "" );
+ colorLabel->setText( tr( "Set Entry Color \n(restart Today \nafter change!)" ) );
+
+ entryColor = new OColorButton( box4, red, "entryColor" );
+ QWhatsThis::add( entryColor , tr( "What color should be used for shown birthdays/anniversaries?" ) );
+
layout->addWidget( box1 );
layout->addWidget( box2 );
layout->addWidget( box3 );
+ layout->addWidget( box4 );
readConfig();
}
@@ -77,6 +86,7 @@ void AddressBookPluginConfig::readConfig() {
SpinBoxClip->setValue( m_maxCharClip );
m_daysLookAhead = cfg.readNumEntry( "dayslookahead", 14 );
SpinDaysClip->setValue( m_daysLookAhead );
+ m_entryColor = cfg.readEntry( "entrycolor", Qt::red.name() );
}
@@ -89,6 +99,8 @@ void AddressBookPluginConfig::writeConfig() {
cfg.writeEntry( "maxcharclip", m_maxCharClip );
m_daysLookAhead = SpinDaysClip->value();
cfg.writeEntry( "dayslookahead", m_daysLookAhead );
+ m_entryColor = entryColor->color().name();
+ cfg.writeEntry( "entrycolor", m_entryColor );
cfg.write();
}
diff --git a/core/pim/today/plugins/addressbook/addresspluginconfig.h b/core/pim/today/plugins/addressbook/addresspluginconfig.h
index 6f128d4..54c8b4f 100644
--- a/core/pim/today/plugins/addressbook/addresspluginconfig.h
+++ b/core/pim/today/plugins/addressbook/addresspluginconfig.h
@@ -23,6 +23,7 @@
#include <qspinbox.h>
#include <opie/todayconfigwidget.h>
+#include <opie/ocolorbutton.h>
class AddressBookPluginConfig : public TodayConfigWidget {
@@ -43,6 +44,7 @@ private:
QSpinBox* SpinBox2;
QSpinBox* SpinBoxClip;
QSpinBox* SpinDaysClip;
+ OColorButton* entryColor;
// how many lines should be showed in the AddressBook section
int m_max_lines_task;
@@ -50,7 +52,8 @@ private:
int m_maxCharClip;
// How many days look ahead
int m_daysLookAhead;
-
+ // Entry Color
+ QString m_entryColor;
};
diff --git a/core/pim/today/plugins/addressbook/addresspluginwidget.cpp b/core/pim/today/plugins/addressbook/addresspluginwidget.cpp
index 0d4cec8..c81beee 100644
--- a/core/pim/today/plugins/addressbook/addresspluginwidget.cpp
+++ b/core/pim/today/plugins/addressbook/addresspluginwidget.cpp
@@ -71,6 +71,7 @@ void AddressBookPluginWidget::readConfig() {
m_maxLinesTask = cfg.readNumEntry( "maxlinestask", 5 );
m_maxCharClip = cfg.readNumEntry( "maxcharclip", 38 );
m_daysLookAhead = cfg.readNumEntry( "dayslookahead", 14 );
+ m_entryColor = cfg.readEntry("entrycolor", Qt::red.name() );
}
@@ -115,7 +116,7 @@ void AddressBookPluginWidget::getAddress() {
if ( QDate::currentDate().daysTo(destdate) < 0 )
destdate.setYMD( QDate::currentDate().year()+1, destdate.month(), destdate.day() );
- output += "<font color=#e00000><b>-" + (*m_it).fullName()
+ output += "<font color=" + m_entryColor + "><b>-" + (*m_it).fullName()
+ " ("
+ QString::number(QDate::currentDate().daysTo(destdate))
+ " Days) </b></font><br>";
diff --git a/core/pim/today/plugins/addressbook/addresspluginwidget.h b/core/pim/today/plugins/addressbook/addresspluginwidget.h
index 75e223a..fa464de 100644
--- a/core/pim/today/plugins/addressbook/addresspluginwidget.h
+++ b/core/pim/today/plugins/addressbook/addresspluginwidget.h
@@ -52,6 +52,7 @@ private:
int m_maxLinesTask;
int m_maxCharClip;
int m_daysLookAhead;
+ QString m_entryColor;
};
#endif