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 /kmail/messageproperty.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 'kmail/messageproperty.cpp')
-rw-r--r-- | kmail/messageproperty.cpp | 173 |
1 files changed, 173 insertions, 0 deletions
diff --git a/kmail/messageproperty.cpp b/kmail/messageproperty.cpp new file mode 100644 index 000000000..66444ff87 --- /dev/null +++ b/kmail/messageproperty.cpp @@ -0,0 +1,173 @@ +/* Message Property + + This file is part of KMail, the KDE mail client. + Copyright (c) Don Sanders <sanders@kde.org> + + KMail is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License, version 2, as + published by the Free Software Foundation. + + KMail 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 + + In addition, as a special exception, the copyright holders give + permission to link the code of this program with any edition of + the Qt library by Trolltech AS, Norway (or with modified versions + of Qt that use the same license as Qt), and distribute linked + combinations including the two. You must obey the GNU General + Public License in all respects for all of the code used other than + Qt. If you modify this file, you may extend this exception to + your version of the file, but you are not obligated to do so. If + you do not wish to do so, delete this exception statement from + your version. +*/ + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#include "messageproperty.h" +using namespace KMail; + +QMap<Q_UINT32, QGuardedPtr<KMFolder> > MessageProperty::sFolders; +QMap<Q_UINT32, QGuardedPtr<ActionScheduler> > MessageProperty::sHandlers; +QMap<Q_UINT32, int > MessageProperty::sTransfers; +QMap<const KMMsgBase*, long > MessageProperty::sSerialCache; + +bool MessageProperty::filtering( Q_UINT32 serNum ) +{ + return sFolders.contains( serNum ); +} + +void MessageProperty::setFiltering( Q_UINT32 serNum, bool filter ) +{ + assert(!filtering(serNum) || !filter); + if (filter && !filtering(serNum)) + sFolders.replace(serNum, QGuardedPtr<KMFolder>(0) ); + else if (!filter) + sFolders.remove(serNum); +} + +bool MessageProperty::filtering( const KMMsgBase *msgBase ) +{ + return filtering( msgBase->getMsgSerNum() ); +} + +void MessageProperty::setFiltering( const KMMsgBase *msgBase, bool filter ) +{ + setFiltering( msgBase->getMsgSerNum(), filter ); +} + +KMFolder* MessageProperty::filterFolder( Q_UINT32 serNum ) +{ + if (sFolders.contains(serNum)) + return sFolders[serNum].operator->(); + return 0; +} + +void MessageProperty::setFilterFolder( Q_UINT32 serNum, KMFolder* folder ) +{ + sFolders.replace(serNum, QGuardedPtr<KMFolder>(folder) ); +} + +KMFolder* MessageProperty::filterFolder( const KMMsgBase *msgBase ) +{ + return filterFolder( msgBase->getMsgSerNum() ); +} + +void MessageProperty::setFilterFolder( const KMMsgBase *msgBase, KMFolder* folder ) +{ + setFilterFolder( msgBase->getMsgSerNum(), folder ); +} + +ActionScheduler* MessageProperty::filterHandler( Q_UINT32 serNum ) +{ + if ( sHandlers.contains( serNum )) + return sHandlers[serNum].operator->(); + return 0; +} + +void MessageProperty::setFilterHandler( Q_UINT32 serNum, ActionScheduler* handler ) +{ + if (handler) + sHandlers.replace( serNum, QGuardedPtr<ActionScheduler>(handler) ); + else + sHandlers.remove( serNum ); +} + +ActionScheduler* MessageProperty::filterHandler( const KMMsgBase *msgBase ) +{ + return filterHandler( msgBase->getMsgSerNum() ); +} + +void MessageProperty::setFilterHandler( const KMMsgBase *msgBase, ActionScheduler* handler ) +{ + setFilterHandler( msgBase->getMsgSerNum(), handler ); +} + +bool MessageProperty::transferInProgress( Q_UINT32 serNum ) +{ + if (sTransfers.contains(serNum)) + return sTransfers[serNum]; + return false; +} + +void MessageProperty::setTransferInProgress( Q_UINT32 serNum, bool transfer, bool force ) +{ + int transferInProgress = 0; + if (sTransfers.contains(serNum)) + transferInProgress = sTransfers[serNum]; + if ( force && !transfer ) + transferInProgress = 0; + else + transfer ? ++transferInProgress : --transferInProgress; + if ( transferInProgress < 0 ) + transferInProgress = 0; + if (transferInProgress) + sTransfers.replace( serNum, transferInProgress ); + else + sTransfers.remove( serNum ); +} + +bool MessageProperty::transferInProgress( const KMMsgBase *msgBase ) +{ + return transferInProgress( msgBase->getMsgSerNum() ); +} + +void MessageProperty::setTransferInProgress( const KMMsgBase *msgBase, bool transfer, bool force ) +{ + setTransferInProgress( msgBase->getMsgSerNum(), transfer, force ); +} + +Q_UINT32 MessageProperty::serialCache( const KMMsgBase *msgBase ) +{ + if (sSerialCache.contains( msgBase )) + return sSerialCache[msgBase]; + return 0; +} + +void MessageProperty::setSerialCache( const KMMsgBase *msgBase, Q_UINT32 serNum ) +{ + if (serNum) + sSerialCache.replace( msgBase, serNum ); + else + sSerialCache.remove( msgBase ); +} + +void MessageProperty::forget( const KMMsgBase *msgBase ) +{ + Q_UINT32 serNum = serialCache( msgBase ); + if (serNum) { + Q_ASSERT( !transferInProgress( serNum ) ); + sTransfers.remove( serNum ); + sSerialCache.remove( msgBase ); + } +} + +#include "messageproperty.moc" |