-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModelCarriage.h
47 lines (34 loc) · 1.25 KB
/
ModelCarriage.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
47
#ifndef MODELCARRIAGE_H
#define MODELCARRIAGE_H
#include <QAbstractTableModel>
#include <vector>
#include "commondefine.h"
class ModelCarriage : public QAbstractTableModel
{
Q_OBJECT
public:
explicit ModelCarriage(QObject *parent = 0);
// Header:
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;
// Basic functionality:
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
int columnCount(const QModelIndex &parent = QModelIndex()) const override;
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
void sort(int column, Qt::SortOrder order = Qt::AscendingOrder);
std::pair<double,double> GetTotalCost();
CarriagePointer GetCarriage(const QModelIndex &index);
void SetCarriages(std::vector<CarriagePointer>& carriages);
void RefreshItem(const QModelIndex &index,CarriagePointer& item);
void DeleteItem(const QModelIndex &index);
private:
enum columnHeader{
ColumnHeaderDate,
ColumnHeaderPurchaseCost,
ColumnHeaderCarriageCost,
ColumnHeaderRemark,
ColumnHeaderCount,
};
private:
std::vector<CarriagePointer> carriages_;
};
#endif // MODELCARRIAGE_H