/* This file is part of the KContacts framework. SPDX-FileCopyrightText: 2016-2019 Laurent Montel SPDX-License-Identifier: LGPL-2.0-or-later */ #ifndef NICKNAME_H #define NICKNAME_H #include "kcontacts_export.h" #include #include #include class NickNameTest; namespace KContacts { class ParameterMap; /** @short Class that holds a NickName for a contact. * @since 5.3 */ class KCONTACTS_EXPORT NickName { friend KCONTACTS_EXPORT QDataStream &operator<<(QDataStream &, const NickName &); friend KCONTACTS_EXPORT QDataStream &operator>>(QDataStream &, NickName &); friend class VCardTool; friend class ::NickNameTest; public: NickName(); NickName(const NickName &other); NickName(const QString &nickname); ~NickName(); typedef QList List; void setNickName(const QString &nickname); Q_REQUIRED_RESULT QString nickname() const; Q_REQUIRED_RESULT bool isValid() const; Q_REQUIRED_RESULT bool operator==(const NickName &other) const; Q_REQUIRED_RESULT bool operator!=(const NickName &other) const; NickName &operator=(const NickName &other); Q_REQUIRED_RESULT QString toString() const; private: // exported for NickNameTest void setParams(const ParameterMap ¶ms); Q_REQUIRED_RESULT ParameterMap params() const; class Private; QSharedDataPointer d; }; KCONTACTS_EXPORT QDataStream &operator<<(QDataStream &stream, const NickName &object); KCONTACTS_EXPORT QDataStream &operator>>(QDataStream &stream, NickName &object); } Q_DECLARE_TYPEINFO(KContacts::NickName, Q_RELOCATABLE_TYPE); #endif // NICKNAME_H