From 19ee7f3b3e06fcf434dcd6a104e912b12220af3b Mon Sep 17 00:00:00 2001 From: eilers Date: Fri, 03 Jan 2003 13:15:30 +0000 Subject: NEW: This plugin shows the next birthdays and anniversaries for the next n days ! --- (limited to 'core/pim/today/plugins/addressbook/addresspluginwidget.cpp') diff --git a/core/pim/today/plugins/addressbook/addresspluginwidget.cpp b/core/pim/today/plugins/addressbook/addresspluginwidget.cpp new file mode 100644 index 0000000..015ac6a --- a/dev/null +++ b/core/pim/today/plugins/addressbook/addresspluginwidget.cpp @@ -0,0 +1,149 @@ +/* + * addresspluginwidget.cpp + * + * copyright : (c) 2003 by Stefan Eilers + * email : eilers.stefan@epost.de + * + * This implementation was derived from the todolist plugin implementation + * + */ +/*************************************************************************** + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + ***************************************************************************/ + +#include "addresspluginwidget.h" + +#include +#include +#include +#include +#include +#include + +#include +#include +#include + +#include + +AddressBookPluginWidget::AddressBookPluginWidget( QWidget *parent, const char* name ) + : QWidget( parent, name ) { + + addressLabel = 0l; + m_contactdb = 0l; + layoutTodo = 0l; + + // Hä ? Nonsense ! (se) + if ( m_contactdb ) { + delete m_contactdb; + } + + m_contactdb = new OContactAccess("addressplugin"); + + connect( m_contactdb, SIGNAL( signalChanged( const OContactAccess * ) ), + this, SLOT( refresh( const OContactAccess * ) ) ); + + + readConfig(); + getAddress(); +} + +AddressBookPluginWidget::~AddressBookPluginWidget() { + delete m_contactdb; +} + +void AddressBookPluginWidget::refresh( const OContactAccess* ) +{ + qWarning(" AddressBookPluginWidget::Database was changed externally ! "); + m_contactdb->reload(); + getAddress(); +} + + +void AddressBookPluginWidget::readConfig() { + Config cfg( "todayaddressplugin" ); + cfg.setGroup( "config" ); + m_maxLinesTask = cfg.readNumEntry( "maxlinestask", 5 ); + m_maxCharClip = cfg.readNumEntry( "maxcharclip", 38 ); + m_daysLookAhead = cfg.readNumEntry( "dayslookahead", 14 ); +} + + +/** + * Get the addresss + */ +void AddressBookPluginWidget::getAddress() { + + if ( ! layoutTodo ){ + layoutTodo = new QVBoxLayout( this ); + } + + if ( ! addressLabel ) { + addressLabel = new OClickableLabel( this ); + connect( addressLabel, SIGNAL( clicked() ), this, SLOT( startAddressBook() ) ); + layoutTodo->addWidget( addressLabel ); + } + + QString output; + + // Check whether the database provide the search option.. + if ( ! m_contactdb->hasQuerySettings( OContactAccess::DateDiff ) ){ + + // Define the query for birthdays and start search.. + QDate lookAheadDate = QDate::currentDate().addDays( m_daysLookAhead ); + qWarning("Searching from now (%s) until %s ! ", QDate::currentDate().toString().latin1(), + lookAheadDate.toString().latin1() ); + OContact querybirthdays; + querybirthdays.setBirthday( lookAheadDate ); + + int ammount = 0; + + m_list = m_contactdb->queryByExample( querybirthdays, OContactAccess::DateDiff ); + if ( m_list.count() > 0 ){ + output = QObject::tr( "Next birthdays in %1 days:
" ).arg( m_daysLookAhead ); + for ( m_it = m_list.begin(); m_it != m_list.end(); ++m_it ) { + if ( ammount++ < m_maxLinesTask ) + output += "-" + (*m_it).fullName() + "
"; + } + } else { + output = QObject::tr( "No birthdays in %1 days!
" ).arg( m_daysLookAhead ); + } + + // Define the query for anniversaries and start search.. + OContact queryanniversaries; + queryanniversaries.setAnniversary( lookAheadDate ); + + m_list = m_contactdb->queryByExample( queryanniversaries, OContactAccess::DateDiff ); + + ammount = 0; + if ( m_list.count() > 0 ){ + output += QObject::tr( "Next anniversaries in %1 days:
" ).arg( m_daysLookAhead ); + for ( m_it = m_list.begin(); m_it != m_list.end(); ++m_it ) { + if ( ammount++ < m_maxLinesTask ) + output += "-" + (*m_it).fullName() + "
"; + } + } else { + output += QObject::tr( "No anniversaries in %1 days!
" ).arg( m_daysLookAhead ); + } + + + }else{ + // Libopie seems to be old.. + output = QObject::tr( "Database does not provide this search query ! Please upgrade libOpie !
" ); + } + + addressLabel->setText( output ); +} + +/** + * start the todolist + */ +void AddressBookPluginWidget::startAddressBook() { + QCopEnvelope e( "QPE/System", "execute(QString)" ); + e << QString( "addressbook" ); +} -- cgit v0.9.0.2