summaryrefslogtreecommitdiff
path: root/core/pim/today/plugins/addressbook/addresspluginwidget.cpp
Side-by-side diff
Diffstat (limited to 'core/pim/today/plugins/addressbook/addresspluginwidget.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/plugins/addressbook/addresspluginwidget.cpp92
1 files changed, 46 insertions, 46 deletions
diff --git a/core/pim/today/plugins/addressbook/addresspluginwidget.cpp b/core/pim/today/plugins/addressbook/addresspluginwidget.cpp
index b0d456d..ea387d6 100644
--- a/core/pim/today/plugins/addressbook/addresspluginwidget.cpp
+++ b/core/pim/today/plugins/addressbook/addresspluginwidget.cpp
@@ -21,5 +21,5 @@
-#include <qpe/config.h>
+#include <opie2/opimcontact.h>
-#include <opie/ocontact.h>
+#include <qpe/config.h>
@@ -37,6 +37,6 @@ AddressBookPluginWidget::AddressBookPluginWidget( QWidget *parent, const char*
- m_contactdb = new OContactAccess("addressplugin");
-
- connect( m_contactdb, SIGNAL( signalChanged(const OContactAccess*) ),
- this, SLOT( refresh(const OContactAccess*) ) );
+ m_contactdb = new Opie::OPimContactAccess("addressplugin");
+
+ connect( m_contactdb, SIGNAL( signalChanged(const Opie::OPimContactAccess*) ),
+ this, SLOT( refresh(const Opie::OPimContactAccess*) ) );
@@ -51,3 +51,3 @@ AddressBookPluginWidget::~AddressBookPluginWidget() {
-void AddressBookPluginWidget::refresh( const OContactAccess* )
+void AddressBookPluginWidget::refresh( const Opie::OPimContactAccess* )
{
@@ -88,3 +88,3 @@ void AddressBookPluginWidget::getAddress() {
if ( ! addressLabel ) {
- addressLabel = new OClickableLabel( this );
+ addressLabel = new Opie::Ui::OClickableLabel( this );
connect( addressLabel, SIGNAL( clicked() ), this, SLOT( startAddressBook() ) );
@@ -92,3 +92,3 @@ void AddressBookPluginWidget::getAddress() {
}
-
+
QString output;
@@ -96,3 +96,3 @@ void AddressBookPluginWidget::getAddress() {
// Check whether the database provide the search option..
- if ( !m_contactdb->hasQuerySettings( OContactAccess::DateDiff ) ){
+ if ( !m_contactdb->hasQuerySettings( Opie::OPimContactAccess::DateDiff ) ){
// Libopie seems to be old..
@@ -112,10 +112,10 @@ void AddressBookPluginWidget::getAddress() {
- if ( m_contactdb->hasQuerySettings( OContactAccess::DateDiff ) ){
+ if ( m_contactdb->hasQuerySettings( Opie::OPimContactAccess::DateDiff ) ){
- OContact querybirthdays;
+ Opie::OPimContact querybirthdays;
querybirthdays.setBirthday( lookAheadDate );
-
- m_list = m_contactdb->queryByExample( querybirthdays,
- OContactAccess::DateDiff );
+
+ m_list = m_contactdb->queryByExample( querybirthdays,
+ Opie::OPimContactAccess::DateDiff );
if ( m_list.count() > 0 ){
@@ -127,27 +127,27 @@ void AddressBookPluginWidget::getAddress() {
if ( ammount++ < m_maxLinesTask ){
- // Now we want to calculate how many days
- //until birthday. We have to set
+ // 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.setYMD( QDate::currentDate().year(),
destdate.month(), destdate.day() );
if ( QDate::currentDate().daysTo(destdate) < 0 )
- destdate.setYMD( QDate::currentDate().year()+1,
+ destdate.setYMD( QDate::currentDate().year()+1,
destdate.month(), destdate.day() );
-
+
if ( QDate::currentDate().daysTo(destdate) < m_urgentDays )
- output += "<font color=" + m_urgentColor + "><b>-"
- + (*m_it).fullName()
- + " ("
+ output += "<font color=" + m_urgentColor + "><b>-"
+ + (*m_it).fullName()
+ + " ("
+ QString::number(QDate::currentDate()
- .daysTo(destdate))
+ .daysTo(destdate))
+ " Days) </b></font><br>";
-
+
else
- output += "<font color=" + m_entryColor + "><b>-"
- + (*m_it).fullName()
- + " ("
+ output += "<font color=" + m_entryColor + "><b>-"
+ + (*m_it).fullName()
+ + " ("
+ QString::number(QDate::currentDate()
- .daysTo(destdate))
+ .daysTo(destdate))
+ " Days) </b></font><br>";
@@ -162,10 +162,10 @@ void AddressBookPluginWidget::getAddress() {
}
-
+
if ( m_showAnniversaries ){
// Define the query for anniversaries and start search..
- OContact queryanniversaries;
+ Opie::OPimContact queryanniversaries;
queryanniversaries.setAnniversary( lookAheadDate );
-
- m_list = m_contactdb->queryByExample( queryanniversaries, OContactAccess::DateDiff );
-
+
+ m_list = m_contactdb->queryByExample( queryanniversaries, Opie::OPimContactAccess::DateDiff );
+
ammount = 0;
@@ -178,9 +178,9 @@ void AddressBookPluginWidget::getAddress() {
if ( ammount++ < m_maxLinesTask ){
- // Now we want to calculate how many days until anniversary.
+ // 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.setYMD( QDate::currentDate().year(), destdate.month(),
destdate.day() );
if ( QDate::currentDate().daysTo(destdate) < 0 )
- destdate.setYMD( QDate::currentDate().year()+1,
+ destdate.setYMD( QDate::currentDate().year()+1,
destdate.month(), destdate.day() );
@@ -188,14 +188,14 @@ void AddressBookPluginWidget::getAddress() {
if ( QDate::currentDate().daysTo(destdate) < m_urgentDays )
- output += "<font color=" + m_urgentColor + "><b>-"
- + (*m_it).fullName()
- + " ("
+ output += "<font color=" + m_urgentColor + "><b>-"
+ + (*m_it).fullName()
+ + " ("
+ QString::number(QDate::currentDate()
- .daysTo( destdate ) )
+ .daysTo( destdate ) )
+ " Days) </b></font><br>";
else
- output += "<font color=" + m_entryColor + "><b>-"
- + (*m_it).fullName()
- + " ("
+ output += "<font color=" + m_entryColor + "><b>-"
+ + (*m_it).fullName()
+ + " ("
+ QString::number(QDate::currentDate()
- .daysTo( destdate ) )
+ .daysTo( destdate ) )
+ " Days) </b></font><br>";
@@ -204,3 +204,3 @@ void AddressBookPluginWidget::getAddress() {
} else {
- output += "<font color=" + m_headlineColor + ">"
+ output += "<font color=" + m_headlineColor + ">"
+ QObject::tr( "No anniversaries in <b> %1 </b> days!" )