-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocess_model.h
46 lines (33 loc) · 1.3 KB
/
process_model.h
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
#ifndef PROCESS_MODEL_H
#define PROCESS_MODEL_H
#include <QtQml/qqml.h>
#include <QtCore/QAbstractTableModel>
#include "segment.h"
class ProcessModel : public QAbstractTableModel
{
Q_OBJECT
public:
explicit ProcessModel(QObject *parent = 0);
enum Role {
NameRole = Qt::UserRole + 1,
StartAddressRole,
SizeRole
};
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
int columnCount(const QModelIndex &parent = QModelIndex()) const override;
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
Qt::ItemFlags flags(const QModelIndex &index) const override;
bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override;
bool insertRows(int position, int rows, const QModelIndex &index = QModelIndex()) override;
bool removeRows(int position, int rows, const QModelIndex &index = QModelIndex()) override;
void clearSegments();
void updateSegments(QList<Segment> segments);
signals:
void processDeleted(int id);
protected:
QHash<int, QByteArray> roleNames() const override;
private:
QList<Segment> m_data;
};
#endif // PROCESS_MODEL_H