-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproductlistmodel.cpp
128 lines (107 loc) · 2.71 KB
/
productlistmodel.cpp
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
#include "productlistmodel.h"
#include <QDebug>
ProductListModel::ProductListModel(QObject *parent)
: QAbstractListModel(parent),
header{"Product Name", "Price", "Count", "Description", "Rate", "Comments", "Status"}
{
}
QVariant ProductListModel::headerData(int section, Qt::Orientation orientation, int role) const
{
if(role == Qt::DisplayRole)
{
if(orientation == Qt::Orientation::Horizontal)
{
if(section < header.size())
{
return header[section];
}
else
return QVariant();
}
else
{
return QString::number(section+1);
}
}
return QVariant();
}
int ProductListModel::rowCount(const QModelIndex &parent) const
{
return productList.size();
}
int ProductListModel::columnCount(const QModelIndex &parent) const
{
return header.size();
}
QVariant ProductListModel::data(const QModelIndex &index, int role) const
{
if (!index.isValid() || index.row() >= productList.size())
return QVariant();
if(role == Qt::DisplayRole)
{
if(index.column() == 0)//Name
{
return productList[index.row()].getName();
}
else if(index.column() == 1)//Price
{
return productList[index.row()].getPrice();
}
else if(index.column() == 2)//Count
{
return productList[index.row()].getCount();
}
else if(index.column() == 3)//Description
{
return productList[index.row()].getDescription();
}
else if(index.column() == 4)//rate
{
return productList[index.row()].getRate();
}
else if(index.column() == 5)//status
{
return "Accepted";
}
}
return QVariant();
}
void ProductListModel::addProduct(const Product& product)
{
bool isExist = false;
for(const auto &p : qAsConst(productList))
{
if(p.getName() == product.getName())
{
isExist = true;
break;
}
}
if(!isExist)
{
beginInsertRows(QModelIndex(), productList.size(), productList.size());
productList.append(product);
endInsertRows();
}
}
void ProductListModel::deleteProduct(const Product& product)
{
for(int i = 0 ; i < productList.size() ; i++)
{
if(productList[i].getName() == product.getName())
{
beginRemoveRows(QModelIndex(), i, i);
productList.removeAt(i);
endRemoveRows();
return;
}
}
}
int ProductListModel::getProductListSize()
{
return productList.size();
}
int ProductListModel::getHeaderSize()
{
return header.size();
}