Akonadi Contacts

contactstreemodel.cpp
1/*
2 This file is part of Akonadi Contact.
3
4 SPDX-FileCopyrightText: 2009 Stephen Kelly <steveire@gmail.com>
5 SPDX-FileCopyrightText: 2009 Tobias Koenig <tokoe@kde.org>
6
7 SPDX-License-Identifier: LGPL-2.0-or-later
8*/
9
10#include "contactstreemodel.h"
11
12#include <KContacts/Addressee>
13#include <KContacts/ContactGroup>
14
15#include <KIconLoader>
16#include <KLocalizedString>
17
18#include <QIcon>
19#include <QLocale>
20
21using namespace Akonadi;
22
23class Akonadi::ContactsTreeModelPrivate
24{
25public:
26 ContactsTreeModelPrivate()
27 : mColumns(ContactsTreeModel::Columns() << ContactsTreeModel::FullName)
28 , mIconSize(KIconLoader::global()->currentSize(KIconLoader::Small))
29 {
30 }
31
33 const int mIconSize;
34};
35
37 : EntityTreeModel(monitor, parent)
38 , d(new ContactsTreeModelPrivate)
39{
40}
41
43
44QHash<int, QByteArray> ContactsTreeModel::roleNames() const
45{
46 auto roles = EntityTreeModel::roleNames();
47 roles[AddresseeRole] = "addressee";
48 return roles;
49}
50
52{
54 d->mColumns = columns;
56}
57
59{
60 return d->mColumns;
61}
62
63QVariant ContactsTreeModel::entityData(const Item &item, int column, int role) const
64{
66 if (!item.hasPayload<KContacts::Addressee>()) {
67 // Pass modeltest
68 if (role == Qt::DisplayRole) {
69 return item.remoteId();
70 }
71
72 return {};
73 }
74
75 const auto contact = item.payload<KContacts::Addressee>();
76
77 if (role == AddresseeRole) {
78 return QVariant::fromValue(contact);
79 } else if (role == Qt::DecorationRole) {
80 if (column == 0) {
81 const KContacts::Picture picture = contact.photo();
82 if (picture.isIntern()) {
83 return picture.data().scaled(QSize(d->mIconSize, d->mIconSize), Qt::KeepAspectRatio);
84 } else {
85 return QIcon::fromTheme(QStringLiteral("user-identity"));
86 }
87 }
88 return {};
89 } else if ((role == Qt::DisplayRole) || (role == Qt::EditRole)) {
90 switch (d->mColumns.at(column)) {
91 case FullName:
92 if (contact.realName().isEmpty()) {
93 if (contact.preferredEmail().isEmpty()) {
94 return contact.familyName();
95 }
96 return contact.preferredEmail();
97 }
98 return contact.realName();
99 case FamilyName:
100 return contact.familyName();
101 case GivenName:
102 return contact.givenName();
103 case Birthday:
104 if (contact.birthday().date().isValid()) {
105 return QLocale().toString(contact.birthday().date(), QLocale::ShortFormat);
106 }
107 break;
108 case HomeAddress: {
109 const KContacts::Address address = contact.address(KContacts::Address::Home);
110 if (!address.isEmpty()) {
111 return address.formatted(KContacts::AddressFormatStyle::Postal);
112 }
113 break;
114 }
115 case BusinessAddress: {
116 const KContacts::Address address = contact.address(KContacts::Address::Work);
117 if (!address.isEmpty()) {
118 return address.formatted(KContacts::AddressFormatStyle::Postal);
119 }
120 break;
121 }
122 case PhoneNumbers: {
123 QStringList values;
124
125 const KContacts::PhoneNumber::List numbers = contact.phoneNumbers();
126 values.reserve(numbers.count());
127 for (const KContacts::PhoneNumber &number : numbers) {
128 values += number.number();
129 }
130
131 return values.join(QLatin1Char('\n'));
132 break;
133 }
134 case PreferredEmail:
135 return contact.preferredEmail();
136 case AllEmails:
137 return contact.emails().join(QLatin1Char('\n'));
138 case Organization:
139 return contact.organization();
140 case Role:
141 return contact.role();
142 case Homepage:
143 return contact.url().url();
144 case Note:
145 return contact.note();
146 }
147 } else if (role == DateRole) {
148 if (d->mColumns.at(column) == Birthday) {
149 return contact.birthday();
150 } else {
151 return QDate();
152 }
153 }
154 } else if (item.mimeType() == KContacts::ContactGroup::mimeType()) {
155 if (role == AddresseeRole) {
156 // expose empty addressee so that required properties in QML are not broken
157 return QVariant::fromValue(KContacts::Addressee());
158 }
159
160 if (!item.hasPayload<KContacts::ContactGroup>()) {
161 // Pass modeltest
162 if (role == Qt::DisplayRole) {
163 return item.remoteId();
164 }
165
166 return {};
167 }
168
169 if (role == Qt::DecorationRole) {
170 if (column == 0) {
171 return QIcon::fromTheme(QStringLiteral("x-mail-distribution-list"));
172 } else {
173 return {};
174 }
175 } else if ((role == Qt::DisplayRole) || (role == Qt::EditRole)) {
176 switch (d->mColumns.at(column)) {
177 case FullName: {
178 const auto group = item.payload<KContacts::ContactGroup>();
179 return group.name();
180 }
181 default:
182 return {};
183 }
184 }
185 }
186
187 return EntityTreeModel::entityData(item, column, role);
188}
189
190QVariant ContactsTreeModel::entityData(const Collection &collection, int column, int role) const
191{
192 if (role == Qt::DisplayRole) {
193 switch (column) {
194 case 0:
195 return EntityTreeModel::entityData(collection, column, role);
196 default:
197 return QString(); // pass model test
198 }
199 }
200
201 return EntityTreeModel::entityData(collection, column, role);
202}
203
204int ContactsTreeModel::entityColumnCount(HeaderGroup headerGroup) const
205{
206 if (headerGroup == EntityTreeModel::CollectionTreeHeaders) {
207 return 1;
208 } else if (headerGroup == EntityTreeModel::ItemListHeaders) {
209 return d->mColumns.count();
210 } else {
211 return EntityTreeModel::entityColumnCount(headerGroup);
212 }
213}
214
215QVariant ContactsTreeModel::entityHeaderData(int section, Qt::Orientation orientation, int role, HeaderGroup headerGroup) const
216{
217 if (role == Qt::DisplayRole) {
218 if (orientation == Qt::Horizontal) {
219 if (headerGroup == EntityTreeModel::CollectionTreeHeaders) {
220 if (section >= 1) {
221 return {};
222 }
223
224 switch (section) {
225 case 0:
226 return i18nc("@title:column address books overview", "Address Books");
227 break;
228 }
229 } else if (headerGroup == EntityTreeModel::ItemListHeaders) {
230 if (section < 0 || section >= d->mColumns.count()) {
231 return {};
232 }
233
234 switch (d->mColumns.at(section)) {
235 case FullName:
236 return i18nc("@title:column name of a person", "Name");
237 case FamilyName:
238 return i18nc("@title:column family name of a person", "Family Name");
239 case GivenName:
240 return i18nc("@title:column given name of a person", "Given Name");
241 case Birthday:
243 case HomeAddress:
244 return i18nc("@title:column home address of a person", "Home");
245 case BusinessAddress:
246 return i18nc("@title:column work address of a person", "Work");
247 case PhoneNumbers:
248 return i18nc("@title:column phone numbers of a person", "Phone Numbers");
249 case PreferredEmail:
250 return i18nc("@title:column the preferred email addresses of a person", "Preferred EMail");
251 case AllEmails:
252 return i18nc("@title:column all email addresses of a person", "All EMails");
253 case Organization:
255 case Role:
257 case Homepage:
259 case Note:
261 }
262 }
263 }
264 }
265
266 return EntityTreeModel::entityHeaderData(section, orientation, role, headerGroup);
267}
268
269#include "moc_contactstreemodel.cpp"
void setColumns(const Columns &columns)
Sets the columns that the model should show.
~ContactsTreeModel() override
Destroys the contacts tree model.
ContactsTreeModel(Monitor *monitor, QObject *parent=nullptr)
Creates a new contacts tree model.
Columns columns() const
Returns the columns that the model currently shows.
QList< Column > Columns
Describes a list of columns of the contacts tree model.
@ PreferredEmail
Shows the preferred email address.
@ GivenName
Shows the given name.
@ Homepage
Shows homepage url.
@ HomeAddress
Shows the formatted home address.
@ Role
Shows the role of a contact.
@ BusinessAddress
Shows the formatted business address.
@ Birthday
Shows the birthday.
@ FamilyName
Shows the family name.
@ AllEmails
Shows all email address.
@ PhoneNumbers
Shows the phone numbers.
@ FullName
Shows the formatted name or, if empty, the assembled name.
@ Organization
Shows organization name.
@ DateRole
The QDate object for the current index.
EntityTreeModel(Monitor *monitor, QObject *parent=nullptr)
virtual QVariant entityData(const Collection &collection, int column, int role=Qt::DisplayRole) const
virtual QVariant entityHeaderData(int section, Qt::Orientation orientation, int role, HeaderGroup headerGroup) const
QString mimeType() const
bool hasPayload() const
T payload() const
QString remoteId() const
static QString noteLabel()
static QString organizationLabel()
static QString mimeType()
static QString urlLabel()
static QString roleLabel()
static QString birthdayLabel()
static QString mimeType()
QList< PhoneNumber > List
QImage data() const
bool isIntern() const
QString i18nc(const char *context, const char *text, const TYPE &arg...)
A widget for editing the display name of a contact.
KIOCORE_EXPORT QString number(KIO::filesize_t size)
PostalAddress address(const QVariant &location)
virtual QModelIndex parent(const QModelIndex &index) const const=0
virtual QHash< int, QByteArray > roleNames() const const
QIcon fromTheme(const QString &name)
QImage scaled(const QSize &size, Qt::AspectRatioMode aspectRatioMode, Qt::TransformationMode transformMode) const const
qsizetype count() const const
void reserve(qsizetype size)
QObject(QObject *parent)
QString number(double n, char format, int precision)
QString join(QChar separator) const const
KeepAspectRatio
DisplayRole
Orientation
QVariant fromValue(T &&value)
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Apr 4 2025 12:01:58 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.