-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rankingsmodel.cpp
230 lines (188 loc) · 7.34 KB
/
rankingsmodel.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
/*****************************************************************************
* Copyright (C) 2021 by Lorenzo Buzzi ([email protected]) *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
*****************************************************************************/
#include "lbchronorace.hpp"
#include "rankingsmodel.hpp"
QDataStream &operator<<(QDataStream &out, RankingsModel const &data)
{
out << data.rankings;
return out;
}
QDataStream &operator>>(QDataStream &in, RankingsModel &data)
{
in >> data.rankings;
return in;
}
void RankingsModel::refreshCounters(int r)
{
Q_UNUSED(r)
}
int RankingsModel::rowCount(QModelIndex const &parent) const
{
Q_UNUSED(parent)
return static_cast<int>(rankings.count());
}
int RankingsModel::columnCount(QModelIndex const &parent) const
{
Q_UNUSED(parent)
return static_cast<int>(Ranking::Field::RTF_COUNT);
}
QVariant RankingsModel::data(QModelIndex const &index, int role) const
{
if (!index.isValid())
return QVariant();
if (index.row() >= rankings.size())
return QVariant();
if (role == Qt::DisplayRole)
switch (index.column()) {
case static_cast<int>(Ranking::Field::RTF_FULL_DESCR):
return QVariant(rankings.at(index.row()).getFullDescription());
case static_cast<int>(Ranking::Field::RTF_SHORT_DESCR):
return QVariant(rankings.at(index.row()).getShortDescription());
case static_cast<int>(Ranking::Field::RTF_TEAM):
return QVariant(rankings.at(index.row()).isTeam() ? tr("T") : tr("I"));
case static_cast<int>(Ranking::Field::RTF_CATEGORIES):
return QVariant(rankings.at(index.row()).getCategories().join('+'));
default:
return QVariant();
}
else if (role == Qt::EditRole)
switch (index.column()) {
case static_cast<int>(Ranking::Field::RTF_FULL_DESCR):
return QVariant(rankings.at(index.row()).getFullDescription());
case static_cast<int>(Ranking::Field::RTF_SHORT_DESCR):
return QVariant(rankings.at(index.row()).getShortDescription());
case static_cast<int>(Ranking::Field::RTF_TEAM):
return QVariant(rankings.at(index.row()).isTeam() ? tr("T") : tr("I"));
case static_cast<int>(Ranking::Field::RTF_CATEGORIES):
return QVariant(rankings.at(index.row()).getCategories());
default:
return QVariant();
}
else if (role == Qt::ToolTipRole)
switch (index.column()) {
case static_cast<int>(Ranking::Field::RTF_FULL_DESCR):
return QVariant(tr("Full ranking name"));
case static_cast<int>(Ranking::Field::RTF_SHORT_DESCR):
return QVariant(tr("Short ranking name"));
case static_cast<int>(Ranking::Field::RTF_TEAM):
return QVariant(tr("Individual/Relay (I) or Club (T)"));
case static_cast<int>(Ranking::Field::RTF_CATEGORIES):
return QVariant(tr("The ranking will include all the categories listed here"));
default:
return QVariant();
}
return QVariant();
}
bool RankingsModel::setData(QModelIndex const &index, QVariant const &value, int role)
{
bool retval = false;
if (!index.isValid())
return retval;
if (role != Qt::EditRole)
return retval;
if (value.toString().contains(LBChronoRace::csvFilter))
return retval;
switch (index.column()) {
case static_cast<int>(Ranking::Field::RTF_FULL_DESCR):
rankings[index.row()].setFullDescription(value.toString().simplified());
retval = true;
break;
case static_cast<int>(Ranking::Field::RTF_SHORT_DESCR):
rankings[index.row()].setShortDescription(value.toString().simplified());
retval = true;
break;
case static_cast<int>(Ranking::Field::RTF_TEAM):
rankings[index.row()].setTeam(QString::compare(value.toString().trimmed(), "T", Qt::CaseInsensitive) == 0);
break;
case static_cast<int>(Ranking::Field::RTF_CATEGORIES):
rankings[index.row()].setCategories(value.toStringList());
break;
default:
break;
}
if (retval) emit dataChanged(index, index);
return retval;
}
QVariant RankingsModel::headerData(int section, Qt::Orientation orientation, int role) const
{
if (role != Qt::DisplayRole)
return QVariant();
if (orientation == Qt::Horizontal)
switch (section) {
case static_cast<int>(Ranking::Field::RTF_FULL_DESCR):
return QString("%1").arg(tr("Ranking Full Name"));
case static_cast<int>(Ranking::Field::RTF_SHORT_DESCR):
return QString("%1").arg(tr("Ranking Short Name"));
case static_cast<int>(Ranking::Field::RTF_TEAM):
return QString("%1").arg(tr("Individual/Club"));
case static_cast<int>(Ranking::Field::RTF_CATEGORIES):
return QString("%1").arg(tr("Categories"));
default:
return QString("%1").arg(section + 1);
}
else
return QString("%1").arg(section + 1);
}
Qt::ItemFlags RankingsModel::flags(QModelIndex const &index) const
{
if (!index.isValid())
return Qt::ItemIsEnabled;
return QAbstractItemModel::flags(index) | Qt::ItemIsEditable;
}
bool RankingsModel::insertRows(int position, int rows, QModelIndex const &parent)
{
Q_UNUSED(parent)
beginInsertRows(QModelIndex(), position, position + rows - 1);
for (int row = 0; row < rows; ++row) {
rankings.insert(position, Ranking());
}
endInsertRows();
return true;
}
bool RankingsModel::removeRows(int position, int rows, QModelIndex const &parent)
{
Q_UNUSED(parent)
beginRemoveRows(QModelIndex(), position, position + rows - 1);
for (int row = 0; row < rows; ++row) {
rankings.removeAt(position);
}
endRemoveRows();
return true;
}
void RankingsModel::sort(int column, Qt::SortOrder order)
{
RankingSorter::setSortingField((Ranking::Field) column);
RankingSorter::setSortingOrder(order);
std::stable_sort(rankings.begin(), rankings.end(), RankingSorter());
emit dataChanged(QModelIndex(), QModelIndex());
}
void RankingsModel::reset()
{
beginResetModel();
rankings.clear();
endResetModel();
}
void RankingsModel::parseCategories()
{
for (auto &ranking : rankings) {
ranking.parseCategories();
}
}
QList<Ranking> const &RankingsModel::getRankings() const
{
return rankings;
}