blob: feac3431625af6382fb987a71044fe9587b67b5b (
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
|
#ifndef TASKLIST_HXX
#define TASKLIST_HXX
#include <QAbstractListModel>
#include "rtticket.h"
class Task
{
public:
Task(QString subject) : m_subject{subject}
{}
QString const& subject() const { return m_subject; }
private:
QString m_subject;
};
class TaskList : public QAbstractListModel
{
Q_OBJECT
Q_PROPERTY(int rowCount READ rowCount NOTIFY rowCountChanged)
public:
enum TaskRoles {
SubjectRole = Qt::UserRole + 1,
};
explicit TaskList(QObject* parent = nullptr)
: QAbstractListModel{parent} {}
~TaskList() {}
int rowCount(QModelIndex const& parent = QModelIndex()) const Q_DECL_OVERRIDE;
QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const Q_DECL_OVERRIDE;
protected:
QHash<int, QByteArray> roleNames() const Q_DECL_OVERRIDE;
signals:
void rowCountChanged();
private:
QList<Task> tasks;
void addTask(Task const& task);
private slots:
void addTasks(rt_ticketlist* taskList);
};
#endif // TASKLIST_HXX
|