diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-06 15:57:02 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-06 15:57:02 -0600 |
commit | 2c2fbd828ca474671bb9e03681b30b115d8d6035 (patch) | |
tree | 526a9da418f8d3d7ccf515c37048d3dfc80f2843 /libkdepim/addresseeemailselection.cpp | |
parent | f0610eece3676b6fe99f42cf4ef2b19a39a5c4e8 (diff) | |
download | tdepim-2c2fbd828ca474671bb9e03681b30b115d8d6035.tar.gz tdepim-2c2fbd828ca474671bb9e03681b30b115d8d6035.zip |
Actually move the kde files that were renamed in the last commit
Diffstat (limited to 'libkdepim/addresseeemailselection.cpp')
-rw-r--r-- | libkdepim/addresseeemailselection.cpp | 264 |
1 files changed, 0 insertions, 264 deletions
diff --git a/libkdepim/addresseeemailselection.cpp b/libkdepim/addresseeemailselection.cpp deleted file mode 100644 index dde8f7dd4..000000000 --- a/libkdepim/addresseeemailselection.cpp +++ /dev/null @@ -1,264 +0,0 @@ -/* - This file is part of libtdepim. - - Copyright (c) 2004 Tobias Koenig <tokoe@kde.org> - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public - License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. - - This library 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 - Library General Public License for more details. - - You should have received a copy of the GNU Library General Public License - along with this library; see the file COPYING.LIB. If not, write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA 02110-1301, USA. -*/ - -#include <kglobal.h> -#include <kiconloader.h> -#include <klocale.h> - -#include "recentaddresses.h" - -#include "addresseeemailselection.h" - -using namespace KPIM; -using KRecentAddress::RecentAddresses; - -AddresseeEmailSelection::AddresseeEmailSelection() - : Selection() -{ -} - -uint AddresseeEmailSelection::fieldCount() const -{ - return 3; -} - -TQString AddresseeEmailSelection::fieldTitle( uint index ) const -{ - switch ( index ) { - case 0: - return i18n( "To" ); - break; - case 1: - return i18n( "Cc" ); - break; - case 2: - return i18n( "Bcc" ); - break; - default: - return TQString(); - } -} - -TQStringList AddresseeEmailSelection::to() const -{ - return mToEmailList; -} - -TQStringList AddresseeEmailSelection::cc() const -{ - return mCcEmailList; -} - -TQStringList AddresseeEmailSelection::bcc() const -{ - return mBccEmailList; -} - -KABC::Addressee::List AddresseeEmailSelection::toAddresses() const -{ - return mToAddresseeList; -} - -KABC::Addressee::List AddresseeEmailSelection::ccAddresses() const -{ - return mCcAddresseeList; -} - -KABC::Addressee::List AddresseeEmailSelection::bccAddresses() const -{ - return mBccAddresseeList; -} - -TQStringList AddresseeEmailSelection::toDistributionLists() const -{ - return mToDistributionList; -} - -TQStringList AddresseeEmailSelection::ccDistributionLists() const -{ - return mCcDistributionList; -} - -TQStringList AddresseeEmailSelection::bccDistributionLists() const -{ - return mBccDistributionList; -} - -void AddresseeEmailSelection::setSelectedTo( const TQStringList &emails ) -{ - setSelectedItem( 0, emails ); -} - -void AddresseeEmailSelection::setSelectedCC( const TQStringList &emails ) -{ - setSelectedItem( 1, emails ); -} - -void AddresseeEmailSelection::setSelectedBCC( const TQStringList &emails ) -{ - setSelectedItem( 2, emails ); -} - - -uint AddresseeEmailSelection::itemCount( const KABC::Addressee &addressee ) const -{ - return addressee.emails().count(); -} - -TQString AddresseeEmailSelection::itemText( const KABC::Addressee &addressee, uint index ) const -{ - return addressee.formattedName() + " " + email( addressee, index ); -} - -TQPixmap AddresseeEmailSelection::itemIcon( const KABC::Addressee &addressee, uint ) const -{ - if ( !addressee.photo().data().isNull() ) - return addressee.photo().data().smoothScale( 16, 16 ); - else - return KGlobal::iconLoader()->loadIcon( "personal", KIcon::Small ); -} - -bool AddresseeEmailSelection::itemEnabled( const KABC::Addressee &addressee, uint ) const -{ - return addressee.emails().count() != 0; -} - -bool AddresseeEmailSelection::itemMatches( const KABC::Addressee &addressee, uint index, const TQString &pattern ) const -{ - return addressee.formattedName().tqstartsWith( pattern, false ) || - email( addressee, index ).tqstartsWith( pattern, false ); -} - -bool AddresseeEmailSelection::itemEquals( const KABC::Addressee &addressee, uint index, const TQString &pattern ) const -{ - return (pattern == addressee.formattedName() + " " + email( addressee, index )) || - (addressee.emails().contains( pattern )); -} - -TQString AddresseeEmailSelection::distributionListText( const KABC::DistributionList *distributionList ) const -{ - return distributionList->name(); -} - -TQPixmap AddresseeEmailSelection::distributionListIcon( const KABC::DistributionList* ) const -{ - return KGlobal::iconLoader()->loadIcon( "kdmconfig", KIcon::Small ); -} - -bool AddresseeEmailSelection::distributionListEnabled( const KABC::DistributionList* ) const -{ - return true; -} - -bool AddresseeEmailSelection::distributionListMatches( const KABC::DistributionList *distributionList, - const TQString &pattern ) const -{ - // check whether the name of the distribution list matches the pattern or one of its entries. - bool ok = distributionList->name().tqstartsWith( pattern, false ); - - KABC::DistributionList::Entry::List entries = distributionList->entries(); - KABC::DistributionList::Entry::List::ConstIterator it; - for ( it = entries.begin(); it != entries.end(); ++it ) { - ok = ok || (*it).addressee.formattedName().tqstartsWith( pattern, false ) || - (*it).email.tqstartsWith( pattern, false ); - } - - return ok; -} - -uint AddresseeEmailSelection::addressBookCount() const -{ - // we provide the recent email addresses via the custom addressbooks - return 1; -} - -TQString AddresseeEmailSelection::addressBookTitle( uint index ) const -{ - if ( index == 0 ) - return i18n( "Recent Addresses" ); - else - return TQString(); -} - -KABC::Addressee::List AddresseeEmailSelection::addressBookContent( uint index ) const -{ - if ( index == 0 ) { - KConfig config( "kmailrc" ); - return RecentAddresses::self( &config )->kabcAddresses(); - } else { - return KABC::Addressee::List(); - } -} - -TQString AddresseeEmailSelection::email( const KABC::Addressee &addressee, uint index ) const -{ - return addressee.emails()[ index ]; -} - -void AddresseeEmailSelection::setSelectedItem( uint fieldIndex, const TQStringList &emails ) -{ - TQStringList::ConstIterator it; - for ( it = emails.begin(); it != emails.end(); ++it ) { - KABC::Addressee addr; - addr.insertEmail( *it, true ); - - selector()->setItemSelected( fieldIndex, addr, 0, *it ); - } -} - -void AddresseeEmailSelection::addSelectedAddressees( uint fieldIndex, const KABC::Addressee &addressee, uint itemIndex ) -{ - switch ( fieldIndex ) { - case 0: - mToAddresseeList.append( addressee ); - mToEmailList.append( email( addressee, itemIndex ) ); - break; - case 1: - mCcAddresseeList.append( addressee ); - mCcEmailList.append( email( addressee, itemIndex ) ); - break; - case 2: - mBccAddresseeList.append( addressee ); - mBccEmailList.append( email( addressee, itemIndex ) ); - break; - default: - // oops - break; - } -} - -void AddresseeEmailSelection::addSelectedDistributionList( uint fieldIndex, const KABC::DistributionList *list ) -{ - switch ( fieldIndex ) { - case 0: - mToDistributionList.append( list->name() ); - break; - case 1: - mCcDistributionList.append( list->name() ); - break; - case 2: - mBccDistributionList.append( list->name() ); - break; - default: - // oops - break; - } -} |