forked from krojew/evernus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAggregatedStatisticsModel.cpp
124 lines (109 loc) · 4.12 KB
/
AggregatedStatisticsModel.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
/**
* 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 <http://www.gnu.org/licenses/>.
*/
#include <QLocale>
#include "EveDataProvider.h"
#include "TextUtils.h"
#include "AggregatedStatisticsModel.h"
namespace Evernus
{
AggregatedStatisticsModel::AggregatedStatisticsModel(const MarketOrderRepository &orderRepo,
const EveDataProvider &dataProvider,
QObject *parent)
: QAbstractTableModel{parent}
, mOrderRepo{orderRepo}
, mDataProvider{dataProvider}
{
}
int AggregatedStatisticsModel::columnCount(const QModelIndex &parent) const
{
return (parent.isValid()) ? (0) : (4);
}
QVariant AggregatedStatisticsModel::data(const QModelIndex &index, int role) const
{
if (Q_UNLIKELY(!index.isValid()))
return QVariant{};
const auto &record = mData[index.row()];
const auto column = index.column();
if (role == Qt::DisplayRole)
{
QLocale locale;
switch (column) {
case idColumn:
if (mColumn == MarketOrderRepository::AggregateColumn::TypeId)
return mDataProvider.getTypeName(record.first);
return mDataProvider.getLocationName(record.first);
case countColumn:
return locale.toString(record.second.mCount);
case priceColumn:
return TextUtils::currencyToString(record.second.mPriceSum, locale);
case volumeColumn:
return locale.toString(record.second.mVolume);
}
}
else if (role == Qt::UserRole)
{
switch (column) {
case idColumn:
return record.first;
case countColumn:
return record.second.mCount;
case priceColumn:
return record.second.mPriceSum;
case volumeColumn:
return record.second.mVolume;
}
}
return QVariant{};
}
QVariant AggregatedStatisticsModel::headerData(int section, Qt::Orientation orientation, int role) const
{
if (role == Qt::DisplayRole && orientation == Qt::Horizontal)
{
switch (section) {
case idColumn:
return tr("Id");
case countColumn:
return tr("Count");
case priceColumn:
return tr("Price sum");
case volumeColumn:
return tr("Volume");
}
}
return QVariant{};
}
int AggregatedStatisticsModel::rowCount(const QModelIndex &parent) const
{
return (parent.isValid()) ? (0) : (static_cast<int>(mData.size()));
}
void AggregatedStatisticsModel::clear()
{
beginResetModel();
mData.clear();
endResetModel();
}
void AggregatedStatisticsModel::reset(Character::IdType characterId,
MarketOrderRepository::AggregateColumn groupingColumn,
MarketOrderRepository::AggregateOrderColumn orderColumn,
int limit,
bool includeActive,
bool includeNotFulfilled)
{
beginResetModel();
mColumn = groupingColumn;
mData = mOrderRepo.getCustomAggregatedData(characterId, mColumn, orderColumn, limit, includeActive, includeNotFulfilled);
endResetModel();
}
}