You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
265 lines
7.0 KiB
265 lines
7.0 KiB
/*
|
|
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 <tdeglobal.h>
|
|
#include <kiconloader.h>
|
|
#include <tdelocale.h>
|
|
|
|
#include "recentaddresses.h"
|
|
|
|
#include "addresseeemailselection.h"
|
|
|
|
using namespace KPIM;
|
|
using TDERecentAddress::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;
|
|
}
|
|
|
|
TDEABC::Addressee::List AddresseeEmailSelection::toAddresses() const
|
|
{
|
|
return mToAddresseeList;
|
|
}
|
|
|
|
TDEABC::Addressee::List AddresseeEmailSelection::ccAddresses() const
|
|
{
|
|
return mCcAddresseeList;
|
|
}
|
|
|
|
TDEABC::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 TDEABC::Addressee &addressee ) const
|
|
{
|
|
return addressee.emails().count();
|
|
}
|
|
|
|
TQString AddresseeEmailSelection::itemText( const TDEABC::Addressee &addressee, uint index ) const
|
|
{
|
|
return addressee.formattedName() + " " + email( addressee, index );
|
|
}
|
|
|
|
TQPixmap AddresseeEmailSelection::itemIcon( const TDEABC::Addressee &addressee, uint ) const
|
|
{
|
|
if ( !addressee.photo().data().isNull() )
|
|
return addressee.photo().data().smoothScale( 16, 16 );
|
|
else
|
|
return TDEGlobal::iconLoader()->loadIcon( "preferences-desktop-personal", TDEIcon::Small );
|
|
}
|
|
|
|
bool AddresseeEmailSelection::itemEnabled( const TDEABC::Addressee &addressee, uint ) const
|
|
{
|
|
return addressee.emails().count() != 0;
|
|
}
|
|
|
|
bool AddresseeEmailSelection::itemMatches( const TDEABC::Addressee &addressee, uint index, const TQString &pattern ) const
|
|
{
|
|
return addressee.formattedName().startsWith( pattern, false ) ||
|
|
email( addressee, index ).startsWith( pattern, false );
|
|
}
|
|
|
|
bool AddresseeEmailSelection::itemEquals( const TDEABC::Addressee &addressee, uint index, const TQString &pattern ) const
|
|
{
|
|
return (pattern == addressee.formattedName() + " " + email( addressee, index )) ||
|
|
(addressee.emails().contains( pattern ));
|
|
}
|
|
|
|
TQString AddresseeEmailSelection::distributionListText( const TDEABC::DistributionList *distributionList ) const
|
|
{
|
|
return distributionList->name();
|
|
}
|
|
|
|
TQPixmap AddresseeEmailSelection::distributionListIcon( const TDEABC::DistributionList* ) const
|
|
{
|
|
return TDEGlobal::iconLoader()->loadIcon( "tdmconfig", TDEIcon::Small );
|
|
}
|
|
|
|
bool AddresseeEmailSelection::distributionListEnabled( const TDEABC::DistributionList* ) const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool AddresseeEmailSelection::distributionListMatches( const TDEABC::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().startsWith( pattern, false );
|
|
|
|
TDEABC::DistributionList::Entry::List entries = distributionList->entries();
|
|
TDEABC::DistributionList::Entry::List::ConstIterator it;
|
|
for ( it = entries.begin(); it != entries.end(); ++it ) {
|
|
ok = ok || (*it).addressee.formattedName().startsWith( pattern, false ) ||
|
|
(*it).email.startsWith( 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();
|
|
}
|
|
|
|
TDEABC::Addressee::List AddresseeEmailSelection::addressBookContent( uint index ) const
|
|
{
|
|
if ( index == 0 ) {
|
|
TDEConfig config( "kmailrc" );
|
|
return RecentAddresses::self( &config )->tdeabcAddresses();
|
|
} else {
|
|
return TDEABC::Addressee::List();
|
|
}
|
|
}
|
|
|
|
TQString AddresseeEmailSelection::email( const TDEABC::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 ) {
|
|
TDEABC::Addressee addr;
|
|
addr.insertEmail( *it, true );
|
|
|
|
selector()->setItemSelected( fieldIndex, addr, 0, *it );
|
|
}
|
|
}
|
|
|
|
void AddresseeEmailSelection::addSelectedAddressees( uint fieldIndex, const TDEABC::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 TDEABC::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;
|
|
}
|
|
}
|