diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 (patch) | |
tree | 67208f7c145782a7e90b123b982ca78d88cc2c87 /korn/accountmanager.cpp | |
download | tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.tar.gz tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'korn/accountmanager.cpp')
-rw-r--r-- | korn/accountmanager.cpp | 268 |
1 files changed, 268 insertions, 0 deletions
diff --git a/korn/accountmanager.cpp b/korn/accountmanager.cpp new file mode 100644 index 000000000..d8c482e42 --- /dev/null +++ b/korn/accountmanager.cpp @@ -0,0 +1,268 @@ +/* + * Copyright (C) 2004, Mart Kelder (mart.kde@hccnet.nl) + * + * 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. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#include "accountmanager.h" + +#include "dcopdrop.h" +#include "kio.h" +#include "maildrop.h" +#include "password.h" +#include "protocol.h" +#include "protocols.h" +#include "subjectsdlg.h" + +#include <kaudioplayer.h> +#include <kconfig.h> +#include <kdebug.h> + +#include <qptrlist.h> + +KornSubjectsDlg* AccountManager::_subjectsDlg = 0; + +AccountManager::AccountManager( QObject * parent, const char * name ) + : QObject( parent, name ), + _kioList( new QPtrList< KMailDrop > ), + _dcopList( new QPtrList< DCOPDrop > ), + _dropInfo( new QMap< KMailDrop*, Dropinfo* > ) +{ + _kioList->setAutoDelete( true ); + _dcopList->setAutoDelete( true ); +} + +AccountManager::~AccountManager() +{ + delete _kioList; + delete _dcopList; + delete _dropInfo; +} + +void AccountManager::readConfig( KConfig* config, const int index ) +{ + KConfigGroup *masterGroup = new KConfigGroup( config, QString( "korn-%1" ).arg( index ) ); + QStringList dcop = masterGroup->readListEntry( "dcop", ',' ); + KConfigGroup *accountGroup; + int counter = 0; + + while( config->hasGroup( QString( "korn-%1-%2" ).arg( index ).arg( counter ) ) ) + { + accountGroup = new KConfigGroup( config, QString( "korn-%1-%2" ).arg( index ).arg( counter ) ); + + const Protocol *proto = Protocols::getProto( accountGroup->readEntry( "protocol" ) ); + if( !proto ) + { + kdWarning() << "Protocol werd niet gevonden" << endl; + ++counter; + continue; + } + QMap< QString, QString > *configmap = proto->createConfig( accountGroup, + KOrnPassword::readKOrnPassword( index, counter, *accountGroup ) ); + KMailDrop *kiodrop = proto->createMaildrop( accountGroup ); + const Protocol *nproto = proto->getProtocol( accountGroup ); + Dropinfo *info = new Dropinfo; + + if( !kiodrop || !configmap || !nproto ) + { + //Error occured when reading for config + ++counter; + delete info; + continue; + } + + //TODO: connect some stuff + connect( kiodrop, SIGNAL( changed( int, KMailDrop* ) ), this, SLOT( slotChanged( int, KMailDrop* ) ) ); + connect( kiodrop, SIGNAL( showPassivePopup( QPtrList< KornMailSubject >*, int, bool, const QString& ) ), + this, SLOT( slotShowPassivePopup( QPtrList< KornMailSubject >*, int, bool, const QString& ) ) ); + connect( kiodrop, SIGNAL( showPassivePopup( const QString&, const QString& ) ), + this, SLOT( slotShowPassivePopup( const QString&, const QString& ) ) ); + connect( kiodrop, SIGNAL( validChanged( bool ) ), this, SLOT( slotValidChanged( bool ) ) ); + + kiodrop->readGeneralConfigGroup( *masterGroup ); + if( !kiodrop->readConfigGroup( *accountGroup ) || !kiodrop->readConfigGroup( *configmap, nproto ) ) + { + ++counter; + delete info; + continue; + } + + kiodrop->startMonitor(); + + _kioList->append( kiodrop ); + + info->index = counter; + info->reset = accountGroup->readNumEntry( "reset", 0 ); + info->msgnr = info->reset; + info->newMessages = false; + + _dropInfo->insert( kiodrop, info ); + + ++counter; + } + + QStringList::Iterator it; + for( it = dcop.begin(); it != dcop.end(); ++it ) + { + DCOPDrop *dcopdrop = new DCOPDrop; + Dropinfo *info = new Dropinfo; + + connect( dcopdrop, SIGNAL( changed( int, KMailDrop* ) ), this, SLOT( slotChanged( int, KMailDrop* ) ) ); + connect( dcopdrop, SIGNAL( showPassivePopup( QPtrList< KornMailSubject >*, int, bool, const QString& ) ), + this, SLOT( slotShowPassivePopup( QPtrList< KornMailSubject >*, int, bool, const QString& ) ) ); + + dcopdrop->readConfigGroup( *masterGroup ); + dcopdrop->setDCOPName( *it ); + + _dcopList->append( dcopdrop ); + + info->index = 0; + info->reset = 0; + info->msgnr = 0; + info->newMessages = false; + + _dropInfo->insert( dcopdrop, info ); + } + + setCount( totalMessages(), hasNewMessages() ); +} + +void AccountManager::writeConfig( KConfig* config, const int index ) +{ + QMap< KMailDrop*, Dropinfo* >::Iterator it; + for( it = _dropInfo->begin(); it != _dropInfo->end(); ++it ) + { + config->setGroup( QString( "korn-%1-%2" ).arg( index ).arg( it.data()->index ) ); + config->writeEntry( "reset", it.data()->reset ); + } +} + +QString AccountManager::getTooltip() const +{ + QStringList result; + QMap< KMailDrop*, Dropinfo* >::Iterator it; + for( it = _dropInfo->begin(); it != _dropInfo->end(); ++it ) + if( it.key()->valid() ) + result.append( QString( "%1: %2" ).arg( it.key()->realName() ).arg( it.data()->msgnr - it.data()->reset )); + else + result.append( QString( "%1: invalid" ).arg( it.key()->realName() ) ); + result.sort(); + return result.join( QChar( '\n' ) ); +} + +void AccountManager::doRecheck() +{ + KMailDrop *item; + for( item = _kioList->first(); item; item = _kioList->next() ) + item->forceRecheck(); +} + +void AccountManager::doReset() +{ + QMap< KMailDrop*, Dropinfo* >::Iterator it; + for( it = _dropInfo->begin(); it != _dropInfo->end(); ++it ) + { + it.data()->reset = it.data()->msgnr; + it.data()->newMessages = false; + } + + setCount( 0, false ); +} + +void AccountManager::doView() +{ + QMap< KMailDrop*, Dropinfo* >::Iterator it; + + if( !_subjectsDlg ) + _subjectsDlg = new KornSubjectsDlg(); + + _subjectsDlg->clear(); + + for( it = _dropInfo->begin(); it != _dropInfo->end(); ++it ) + _subjectsDlg->addMailBox( it.key() ); + + _subjectsDlg->loadMessages(); +} + +void AccountManager::doStartTimer() +{ + KMailDrop *item; + + for( item = _kioList->first(); item; item = _kioList->next() ) + item->startMonitor(); +} + +void AccountManager::doStopTimer() +{ + KMailDrop *item; + + for( item = _kioList->first(); item; item = _kioList->next() ) + item->stopMonitor(); +} + +int AccountManager::totalMessages() +{ + int result = 0; + + QMap< KMailDrop*, Dropinfo* >::Iterator it; + for( it = _dropInfo->begin(); it != _dropInfo->end(); ++it ) + //if( it.date()->msgnr - it.date()->reset > 0 ) + result += it.data()->msgnr - it.data()->reset; + + return result; +} + +bool AccountManager::hasNewMessages() +{ + QMap< KMailDrop*, Dropinfo* >::Iterator it; + for( it = _dropInfo->begin(); it != _dropInfo->end(); ++it ) + if( it.data()->newMessages ) + return true; + + return false; +} + +void AccountManager::playSound( const QString& file ) +{ + KAudioPlayer::play( file ); +} + +void AccountManager::slotChanged( int count, KMailDrop* mailDrop ) +{ + Dropinfo *info = _dropInfo->find( mailDrop ).data(); + info->newMessages = count > info->msgnr || ( count == info->msgnr && info->newMessages ); + + if( count > info->msgnr ) + { + if( !mailDrop->soundFile().isEmpty() ) + playSound( mailDrop->soundFile() ); + if( !mailDrop->newMailCmd().isEmpty() ) + runCommand( mailDrop->newMailCmd() ); + } + + info->msgnr = count; + if( info->msgnr - info->reset < 0 ) + info->reset = 0; + + setCount( totalMessages(), hasNewMessages() && totalMessages() > 0 ); + setTooltip( getTooltip() ); +} + +void AccountManager::slotValidChanged( bool ) +{ + setTooltip( getTooltip() ); +} + +#include "accountmanager.moc" |