/* This file is part of the KContacts framework. SPDX-FileCopyrightText: 2003 Helge Deller SPDX-License-Identifier: LGPL-2.0-or-later */ #ifndef KCONTACTS_LDIFCONVERTER_H #define KCONTACTS_LDIFCONVERTER_H #include "addressee.h" #include "contactgroup.h" #include #include namespace KContacts { /** 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 contactGroupList the contactGroupList @param dt The date & time value of the last modification (e.g. file modification time). */ Q_REQUIRED_RESULT KCONTACTS_EXPORT bool LDIFToAddressee(const QString &str, AddresseeList &addrList, QList &contactGroupList, const QDateTime &dt = QDateTime::currentDateTime()); /** Converts a list of addressees to a LDIF string. @param addrList The addresseelist. @param str The LDIF string. */ Q_REQUIRED_RESULT KCONTACTS_EXPORT bool addresseeToLDIF(const AddresseeList &addrList, QString &str); /** Converts a list of addressees and contactgrouplist to a LDIF string. @param addrList The addresseelist. @param contactGroupList The contact group list @param str The LDIF string. */ Q_REQUIRED_RESULT KCONTACTS_EXPORT bool addresseeAndContactGroupToLDIF(const AddresseeList &addrList, const QList &contactGroupList, QString &str); /** Converts an addressee to a LDIF string. @param addr The addressee. @param str The LDIF string. */ Q_REQUIRED_RESULT KCONTACTS_EXPORT bool addresseeToLDIF(const Addressee &addr, QString &str); /** Converts a list of contact group to a LDIF string. @param contactGroupList The contact group list @param str The LDIF string. */ Q_REQUIRED_RESULT KCONTACTS_EXPORT bool contactGroupToLDIF(const ContactGroup::List &contactGroupList, QString &str); /** Converts a contact group to a LDIF string. @param contactGroup The contact group @param str The LDIF string. */ Q_REQUIRED_RESULT KCONTACTS_EXPORT bool contactGroupToLDIF(const ContactGroup &contactGroup, QString &str); } } #endif