KPeople

abstractcontact.cpp
1/*
2 SPDX-FileCopyrightText: 2014 Aleix Pol i Gonzalez <aleixpol@blue-systems.com>
3
4 SPDX-License-Identifier: LGPL-2.1-or-later
5*/
6
7#include "abstractcontact.h"
8
9using namespace KPeople;
10
11const QString AbstractContact::NameProperty = QStringLiteral("name");
12const QString AbstractContact::EmailProperty = QStringLiteral("email");
13const QString AbstractContact::PhoneNumberProperty = QStringLiteral("phoneNumber");
14const QString AbstractContact::AllPhoneNumbersProperty = QStringLiteral("all-phoneNumber");
15const QString AbstractContact::PresenceProperty = QStringLiteral("presence");
16const QString AbstractContact::AllEmailsProperty = QStringLiteral("all-email");
17const QString AbstractContact::PictureProperty = QStringLiteral("picture");
18const QString AbstractContact::VCardProperty = QStringLiteral("vcard");
19const QString AbstractContact::GroupsProperty = QStringLiteral("all-groups");
20
21AbstractContact::AbstractContact()
22{
23}
24
25AbstractContact::~AbstractContact()
26{
27}
static const QString PhoneNumberProperty
String property representing the preferred phone number of the contact.
static const QString AllPhoneNumbersProperty
QVariantList property that lists all phone numbers the contact has.
static const QString NameProperty
String property representing the display name of the contact.
static const QString EmailProperty
String property representing the preferred name of the contact.
static const QString AllEmailsProperty
QVariantList property that lists the emails the contact has.
static const QString PresenceProperty
String property representing the IM presence of the contact.
static const QString GroupsProperty
QVariantList property that lists the groups the contacts belongs to.
static const QString VCardProperty
QByteArray with the raw vcard information.
static const QString PictureProperty
QUrl or QPixmap property representing the contacts' avatar.
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:17:45 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.