-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathteamslistmodel.cpp
175 lines (135 loc) · 4.68 KB
/
teamslistmodel.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
/*****************************************************************************
* 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 <algorithm>
#include "lbchronorace.hpp"
#include "teamslistmodel.hpp"
QDataStream &operator<<(QDataStream &out, TeamsListModel const &data)
{
quint32 v2TeamNameWidthMax = 0;
out << data.teamsList
<< quint32(v2TeamNameWidthMax);
return out;
}
QDataStream &operator>>(QDataStream &in, TeamsListModel &data)
{
quint32 v2TeamNameWidthMax;
in >> data.teamsList
>> v2TeamNameWidthMax;
return in;
}
void TeamsListModel::refreshCounters(int r)
{
Q_UNUSED(r)
}
int TeamsListModel::rowCount(QModelIndex const &parent) const
{
Q_UNUSED(parent)
return static_cast<int>(teamsList.size());
}
int TeamsListModel::columnCount(QModelIndex const &parent) const
{
Q_UNUSED(parent)
return 1;
}
QVariant TeamsListModel::data(QModelIndex const &index, int role) const
{
if (!index.isValid())
return QVariant();
if (index.row() >= teamsList.size())
return QVariant();
if (role == Qt::DisplayRole)
return QVariant(teamsList.at(index.row()));
else if (role == Qt::ToolTipRole)
return QVariant(tr("Club name"));
else
return QVariant();
}
QVariant TeamsListModel::headerData(int section, Qt::Orientation orientation, int role) const
{
if (role != Qt::DisplayRole)
return QVariant();
if (orientation == Qt::Horizontal)
return QString("%1").arg(tr("Club Name"));
else
return QString("%1").arg(section + 1);
}
bool TeamsListModel::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;
teamsList[index.row()] = value.toString().simplified();
retval = true;
emit dataChanged(index, index);
return retval;
}
Qt::ItemFlags TeamsListModel::flags(QModelIndex const &index) const
{
if (!index.isValid())
return Qt::ItemIsEnabled;
return QAbstractItemModel::flags(index) | Qt::ItemIsEditable;
}
bool TeamsListModel::insertRows(int position, int rows, QModelIndex const &parent)
{
Q_UNUSED(parent)
beginInsertRows(QModelIndex(), position, position + rows - 1);
for (int row = 0; row < rows; ++row) {
teamsList.insert(position, QString());
}
endInsertRows();
return true;
}
bool TeamsListModel::removeRows(int position, int rows, QModelIndex const &parent)
{
Q_UNUSED(parent)
beginRemoveRows(QModelIndex(), position, position + rows - 1);
for (int row = 0; row < rows; ++row) {
teamsList.removeAt(position);
}
endRemoveRows();
return true;
}
void TeamsListModel::sort(int column, Qt::SortOrder order)
{
if (column == 0) {
std::stable_sort(teamsList.begin(), teamsList.end());
if (order == Qt::DescendingOrder)
std::reverse(teamsList.begin(), teamsList.end());
emit dataChanged(QModelIndex(), QModelIndex());
}
}
void TeamsListModel::reset() {
beginResetModel();
teamsList.clear();
endResetModel();
}
void TeamsListModel::addTeam(QString const &team)
{
if (!team.isEmpty() && !teamsList.contains(team)) {
int rowCount = this->rowCount();
this->insertRow(rowCount, QModelIndex());
this->setData(this->index(rowCount, 0, QModelIndex()), QVariant(team), Qt::EditRole);
}
}
QList<QString> const &TeamsListModel::getTeamsList() const
{
return teamsList;
}