summaryrefslogtreecommitdiff
path: root/core
authoreilers <eilers>2003-01-03 13:39:22 (UTC)
committer eilers <eilers>2003-01-03 13:39:22 (UTC)
commit5f5e9f321fe606b1175314c9a06da6286f0f92c0 (patch) (side-by-side diff)
tree2707025e5f8b6a7969ca5dfe5085be5cb13670b2 /core
parent49c60b1422902963d33ae79fdab3554b2991ddf5 (diff)
downloadopie-5f5e9f321fe606b1175314c9a06da6286f0f92c0.zip
opie-5f5e9f321fe606b1175314c9a06da6286f0f92c0.tar.gz
opie-5f5e9f321fe606b1175314c9a06da6286f0f92c0.tar.bz2
Now it shows how many days are left until birthday/anniversary !
Diffstat (limited to 'core') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/plugins/addressbook/addresspluginwidget.cpp30
1 files changed, 26 insertions, 4 deletions
diff --git a/core/pim/today/plugins/addressbook/addresspluginwidget.cpp b/core/pim/today/plugins/addressbook/addresspluginwidget.cpp
index 015ac6a..0d4cec8 100644
--- a/core/pim/today/plugins/addressbook/addresspluginwidget.cpp
+++ b/core/pim/today/plugins/addressbook/addresspluginwidget.cpp
@@ -107,8 +107,19 @@ void AddressBookPluginWidget::getAddress() {
if ( m_list.count() > 0 ){
output = QObject::tr( "Next birthdays in <b> %1 </b> days: <br>" ).arg( m_daysLookAhead );
for ( m_it = m_list.begin(); m_it != m_list.end(); ++m_it ) {
- if ( ammount++ < m_maxLinesTask )
- output += "<font color=#e00000><b>-" + (*m_it).fullName() + "</b></font><br>";
+ if ( ammount++ < m_maxLinesTask ){
+ // Now we want to calculate how many days until birthday. We have to set
+ // the correct year to calculate the day diff...
+ QDate destdate = (*m_it).birthday();
+ destdate.setYMD( QDate::currentDate().year(), destdate.month(), destdate.day() );
+ if ( QDate::currentDate().daysTo(destdate) < 0 )
+ destdate.setYMD( QDate::currentDate().year()+1, destdate.month(), destdate.day() );
+
+ output += "<font color=#e00000><b>-" + (*m_it).fullName()
+ + " ("
+ + QString::number(QDate::currentDate().daysTo(destdate))
+ + " Days) </b></font><br>";
+ }
}
} else {
output = QObject::tr( "No birthdays in <b> %1 </b> days! <br>" ).arg( m_daysLookAhead );
@@ -124,8 +135,19 @@ void AddressBookPluginWidget::getAddress() {
if ( m_list.count() > 0 ){
output += QObject::tr( "Next anniversaries in <b> %1 </b> days: <br>" ).arg( m_daysLookAhead );
for ( m_it = m_list.begin(); m_it != m_list.end(); ++m_it ) {
- if ( ammount++ < m_maxLinesTask )
- output += "<font color=#e00000><b>-" + (*m_it).fullName() + "</b></font><br>";
+ if ( ammount++ < m_maxLinesTask ){
+ // Now we want to calculate how many days until anniversary. We have to set
+ // the correct year to calculate the day diff...
+ QDate destdate = (*m_it).anniversary();
+ destdate.setYMD( QDate::currentDate().year(), destdate.month(), destdate.day() );
+ if ( QDate::currentDate().daysTo(destdate) < 0 )
+ destdate.setYMD( QDate::currentDate().year()+1, destdate.month(), destdate.day() );
+
+ output += "<font color=#e00000><b>-" + (*m_it).fullName()
+ + " ("
+ + QString::number(QDate::currentDate().daysTo( destdate ) )
+ + " Days) </b></font><br>";
+ }
}
} else {
output += QObject::tr( "No anniversaries in <b> %1 </b> days! <br>" ).arg( m_daysLookAhead );