summaryrefslogtreecommitdiff
path: root/core/pim/today/plugins/addressbook
Side-by-side diff
Diffstat (limited to 'core/pim/today/plugins/addressbook') (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
@@ -109,4 +109,15 @@ void AddressBookPluginWidget::getAddress() {
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>";
+ }
}
@@ -126,4 +137,15 @@ void AddressBookPluginWidget::getAddress() {
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>";
+ }
}