mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 10:22:50 +00:00
88 lines
2.8 KiB
C++
88 lines
2.8 KiB
C++
/*
|
|
This file is part of libkabc.
|
|
Copyright (c) 2003 Helge Deller <deller@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 version 2 only as published by the Free Software Foundation.
|
|
|
|
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.
|
|
*/
|
|
|
|
#ifndef KABC_LDIFCONVERTER_H
|
|
#define KABC_LDIFCONVERTER_H
|
|
|
|
#include "addressee.h"
|
|
#include "addresseelist.h"
|
|
|
|
#include <QtCore/QDateTime>
|
|
#include <QtCore/QString>
|
|
|
|
namespace KABC {
|
|
|
|
/**
|
|
A set of functions to convert a string with LDIF information to addressees
|
|
and vice versa. It is useful for addressbook import- and exportfilters
|
|
and might be used to read and write Mozilla and Netscape addresssbooks.
|
|
*/
|
|
|
|
namespace LDIFConverter {
|
|
|
|
/**
|
|
Converts a LDIF string to a list of addressees.
|
|
|
|
@param str The vcard string.
|
|
@param addrList The addresseelist.
|
|
@param dt The date & time value of the last modification (e.g. file modification time).
|
|
*/
|
|
KABC_EXPORT bool LDIFToAddressee( const QString &str, AddresseeList &addrList,
|
|
const QDateTime &dt = QDateTime::currentDateTime() );
|
|
|
|
/**
|
|
Converts a list of addressees to a LDIF string.
|
|
|
|
@param addrList The addresseelist.
|
|
@param str The LDIF string.
|
|
*/
|
|
KABC_EXPORT bool addresseeToLDIF( const AddresseeList &addrList, QString &str );
|
|
|
|
/**
|
|
Converts an addressee to a LDIF string.
|
|
|
|
@param addr The addressee.
|
|
@param str The LDIF string.
|
|
*/
|
|
KABC_EXPORT bool addresseeToLDIF( const Addressee &addr, QString &str );
|
|
|
|
/* internal functions - do not use !! */
|
|
|
|
/**
|
|
@internal
|
|
|
|
Evaluates @p fieldname and sets the @p value at the addressee or the address
|
|
objects when appropriate.
|
|
|
|
@param a The addressee to store information into
|
|
@param homeAddr The home address to store respective information into
|
|
@param workAddr The work address to store respective information into
|
|
@param fieldname LDIF field name to evaluate
|
|
@param value The value of the field addressed by @p fieldname
|
|
*/
|
|
KABC_EXPORT bool evaluatePair( Addressee &a, Address &homeAddr,
|
|
Address &workAddr,
|
|
QString &fieldname, QString &value,
|
|
int &birthday, int &birthmonth, int &birthyear );
|
|
|
|
}
|
|
|
|
}
|
|
#endif
|
|
|