blob: e42207b68c1a9c5538e04d2bc5e29671a8e68fdd (
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
|
#include <cstddef>
#include "qrtclient/ticket.hxx"
namespace RTClient {
int TicketList::rowCount(QModelIndex const& parent) const
{
Q_UNUSED(parent)
return tickets.count();
}
QVariant TicketList::data(QModelIndex const& index, int role) const
{
auto row = index.row();
if (row < 0 || row >= tickets.count()) return QVariant();
auto ticket = tickets[row];
switch (role) {
case IdRole:
return ticket.id();
case SubjectRole:
return ticket.subject();
default:
return QVariant();
}
}
QHash<int, QByteArray> TicketList::roleNames() const
{
return QHash<int, QByteArray>{{IdRole, "id"},
{SubjectRole, "subject"}
};
}
void TicketList::addTicket(Ticket const& ticket)
{
beginInsertRows(QModelIndex(), rowCount(), rowCount());
tickets << ticket;
endInsertRows();
emit rowCountChanged();
}
void TicketList::update(rtclient_search_ticket_list* list)
{
if (list) {
for (size_t i = 0; i < list->length; i++)
addTicket(Ticket{list->tickets[i]});
rtclient_search_ticket_free(list);
emit updated();
}
}
}
|