1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
/*
* Copyright (c) 2013 Tobias Markmann
* Licensed under the simplified BSD license.
* See Documentation/Licenses/BSD-simplified.txt for more information.
*/
/*
* Copyright (c) 2014-2018 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#include <Swift/QtUI/UserSearch/ContactListModel.h>
#include <QMimeData>
#include <Swiften/Base/Path.h>
#include <Swiften/Elements/StatusShow.h>
#include <Swift/QtUI/QtResourceHelper.h>
#include <Swift/QtUI/QtSwiftUtil.h>
namespace Swift {
ContactListModel::ContactListModel(bool editable) : QAbstractItemModel(), editable_(editable) {
}
void ContactListModel::setList(const std::vector<Contact::ref>& list) {
emit layoutAboutToBeChanged();
contacts_ = list;
emit layoutChanged();
}
const std::vector<Contact::ref>& ContactListModel::getList() const {
return contacts_;
}
Contact::ref ContactListModel::getContact(const size_t i) const {
return contacts_[i];
}
Qt::ItemFlags ContactListModel::flags(const QModelIndex& index) const {
Qt::ItemFlags flags = QAbstractItemModel::flags(index);
if (index.isValid()) {
flags = flags & ~Qt::ItemIsDropEnabled;
} else {
flags = Qt::ItemIsDropEnabled | flags;
}
return flags;
}
int ContactListModel::columnCount(const QModelIndex&) const {
return editable_ ? 2 : 1;
}
QVariant ContactListModel::data(const QModelIndex& index, int role) const {
if ((boost::numeric_cast<size_t>(index.row()) < contacts_.size()) && (index.column() == 0)) {
const Contact::ref& contact = contacts_[index.row()];
if (role == Qt::EditRole) {
return P2QSTRING(contact->jid.toString());
}
return dataForContact(contact, role);
} else {
return QVariant();
}
}
QModelIndex ContactListModel::index(int row, int column, const QModelIndex& parent) const {
if (!hasIndex(row, column, parent)) {
return QModelIndex();
}
return boost::numeric_cast<size_t>(row) < contacts_.size() ? createIndex(row, column, contacts_[row].get()) : QModelIndex();
}
QModelIndex ContactListModel::parent(const QModelIndex& index) const {
if (!index.isValid()) {
return QModelIndex();
}
return QModelIndex();
}
int ContactListModel::rowCount(const QModelIndex& /*parent*/) const {
return contacts_.size();
}
bool ContactListModel::removeRows(int row, int /*count*/, const QModelIndex& /*parent*/) {
if (boost::numeric_cast<size_t>(row) < contacts_.size()) {
emit layoutAboutToBeChanged();
contacts_.erase(contacts_.begin() + row);
emit layoutChanged();
onListChanged(getList());
return true;
}
return false;
}
QVariant ContactListModel::dataForContact(const Contact::ref& contact, int role) const {
switch (role) {
case Qt::DisplayRole: return P2QSTRING(contact->name);
case DetailTextRole: return P2QSTRING(contact->jid.toString());
case AvatarRole: return QVariant(P2QSTRING(pathToString(contact->avatarPath)));
case PresenceIconRole: return getPresenceIconForContact(contact);
default: return QVariant();
}
}
QIcon ContactListModel::getPresenceIconForContact(const Contact::ref& contact) const {
return QIcon(statusShowTypeToIconPath(contact->statusType));
}
}
|