mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 18:32:51 +00:00
117 lines
3.2 KiB
C++
117 lines
3.2 KiB
C++
/*
|
|
This file is part of the KDE libraries
|
|
Copyright (C) 2003 Carsten Pfeiffer <pfeiffer@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, version 2.
|
|
|
|
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 "addresseehelper.h"
|
|
|
|
#include <kconfig.h>
|
|
#include <klocalizedstring.h>
|
|
#include <kconfiggroup.h>
|
|
|
|
#include <QApplication>
|
|
#include <QtDBus/QtDBus>
|
|
|
|
using namespace KABC;
|
|
|
|
AddresseeHelper *AddresseeHelper::s_self;
|
|
|
|
// static
|
|
AddresseeHelper *AddresseeHelper::self()
|
|
{
|
|
if ( !s_self ) {
|
|
s_self = new AddresseeHelper();
|
|
}
|
|
|
|
return s_self;
|
|
}
|
|
|
|
AddresseeHelper::AddresseeHelper()
|
|
: QObject( qApp )
|
|
{
|
|
initSettings();
|
|
|
|
QDBusConnection::sessionBus().connect( QString(), QLatin1String( "/KABC" ),
|
|
QLatin1String( "org.kde.kabc.AddressBookConfig" ),
|
|
QLatin1String( "changed" ),
|
|
this, SLOT(initSettings()));
|
|
}
|
|
|
|
// static
|
|
void AddresseeHelper::addToSet( const QStringList &list, QSet<QString> &container )
|
|
{
|
|
QStringList::ConstIterator it;
|
|
QStringList::ConstIterator end( list.end() );
|
|
for ( it = list.begin(); it != end; ++it ) {
|
|
if ( !( *it ).isEmpty() ) {
|
|
container.insert( *it );
|
|
}
|
|
}
|
|
}
|
|
|
|
void AddresseeHelper::initSettings()
|
|
{
|
|
mTitles.clear();
|
|
mSuffixes.clear();
|
|
mPrefixes.clear();
|
|
|
|
mTitles.insert( i18n( "Dr." ) );
|
|
mTitles.insert( i18n( "Miss" ) );
|
|
mTitles.insert( i18n( "Mr." ) );
|
|
mTitles.insert( i18n( "Mrs." ) );
|
|
mTitles.insert( i18n( "Ms." ) );
|
|
mTitles.insert( i18n( "Prof." ) );
|
|
|
|
mSuffixes.insert( i18n( "I" ) );
|
|
mSuffixes.insert( i18n( "II" ) );
|
|
mSuffixes.insert( i18n( "III" ) );
|
|
mSuffixes.insert( i18n( "Jr." ) );
|
|
mSuffixes.insert( i18n( "Sr." ) );
|
|
|
|
mPrefixes.insert( QLatin1String( "van" ) );
|
|
mPrefixes.insert( QLatin1String( "von" ) );
|
|
mPrefixes.insert( QLatin1String( "de" ) );
|
|
|
|
KConfig _config( QLatin1String( "kabcrc" ), KConfig::NoGlobals );
|
|
KConfigGroup config(&_config, "General" );
|
|
|
|
addToSet( config.readEntry( "Prefixes", QStringList() ), mTitles );
|
|
addToSet( config.readEntry( "Inclusions", QStringList() ), mPrefixes );
|
|
addToSet( config.readEntry( "Suffixes", QStringList() ), mSuffixes );
|
|
mTradeAsFamilyName = config.readEntry( "TradeAsFamilyName", true );
|
|
}
|
|
|
|
bool AddresseeHelper::containsTitle( const QString &title ) const
|
|
{
|
|
return mTitles.contains( title );
|
|
}
|
|
|
|
bool AddresseeHelper::containsPrefix( const QString &prefix ) const
|
|
{
|
|
return mPrefixes.contains( prefix );
|
|
}
|
|
|
|
bool AddresseeHelper::containsSuffix( const QString &suffix ) const
|
|
{
|
|
return mSuffixes.contains( suffix );
|
|
}
|
|
|
|
bool AddresseeHelper::tradeAsFamilyName() const
|
|
{
|
|
return mTradeAsFamilyName;
|
|
}
|
|
|