summaryrefslogtreecommitdiffstats
blob: f6fd4c0cf66ffa8f11d408fb527b90fe188707d5 (plain)
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
/*
 * Copyright (c) 2010 Kevin Smith
 * Licensed under the GNU General Public License v3.
 * See Documentation/Licenses/GPLv3.txt for more information.
 */

#include "Swift/QtUI/UserSearch/UserSearchModel.h"

#include "Swift/QtUI/QtSwiftUtil.h"

namespace Swift {

UserSearchModel::UserSearchModel() {
}

void UserSearchModel::clear() {
	emit layoutAboutToBeChanged();
	results_.clear();
	emit layoutChanged();
}

void UserSearchModel::setResults(const std::vector<UserSearchResult>& results) {
	clear();
	emit layoutAboutToBeChanged();
	results_ = results;
	emit layoutChanged();
}

int UserSearchModel::columnCount(const QModelIndex& /*parent*/) const {
	return 1;
}

QVariant UserSearchModel::data(const QModelIndex& index, int role) const {
	if (!index.isValid()) return QVariant();
	UserSearchResult* result = static_cast<UserSearchResult*>(index.internalPointer());
	switch (role) {
		case Qt::DisplayRole: return QVariant(P2QSTRING(result->getJID().toString()));
		default: return QVariant();
	}
}

QModelIndex UserSearchModel::index(int row, int column, const QModelIndex & parent) const {
	if (!hasIndex(row, column, parent)) {
		return QModelIndex();
	}
	return row < static_cast<int>(results_.size()) ? createIndex(row, column, reinterpret_cast<void*>(const_cast<UserSearchResult*>(&(results_[row])))) : QModelIndex();
}

QModelIndex UserSearchModel::parent(const QModelIndex& /*index*/) const {
	return QModelIndex();
}

int UserSearchModel::rowCount(const QModelIndex& parentIndex) const {
	if (!parentIndex.isValid()) {
		return results_.size();
	}
	return 0;
}

}