forked from foldynl/QLog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAwardsTableModel.cpp
76 lines (67 loc) · 2.19 KB
/
AwardsTableModel.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
#include "AwardsTableModel.h"
#include <QColor>
#include <QFont>
AwardsTableModel::AwardsTableModel(QObject* parent) :
QSqlQueryModel(parent)
{
}
QVariant AwardsTableModel::data(const QModelIndex &index, int role) const
{
/* using hiden column 0 to identify type of information */
/* 0 - Total Worked/Confirmed row
* 1 - Confirmed row
* 2 - Worked row
* 3 - Per DXCC Entity row
*/
int originRowType = QSqlQueryModel::data(this->index(index.row(), 0), Qt::DisplayRole).toInt();
QVariant originCellValue = QSqlQueryModel::data(index, Qt::DisplayRole);
int cellIntValue = originCellValue.toInt();
if ( role == Qt::DisplayRole
&& (originRowType == 1 || originRowType == 2)
&& index.column() == 2 )
{
unsigned int count = 0;
for ( int i = 3; i <= columnCount(); i++ )
count += QSqlQueryModel::data(this->index(index.row(), i),
Qt::DisplayRole).toInt();
return tr("Slots: ") + QString::number(count) + " ";
}
if ( index.column() >= 3 )
{
switch (role)
{
case Qt::BackgroundRole:
if ( originRowType >= 3 )
{
if ( cellIntValue > 1 )
return QColor(Qt::green);
else if ( cellIntValue == 1 )
return QColor(255, 165, 0);
}
break;
case Qt::ToolTipRole:
if ( originRowType >= 3 )
{
return ( cellIntValue > 1 ) ? tr("Confirmed")
: (cellIntValue == 1) ? tr("Worked")
: tr("Still Waiting");
}
break;
case Qt::DisplayRole:
if ( originRowType >= 3 )
return QString();
break;
case Qt::ForegroundRole:
if ( originRowType >= 3 )
return QColor(Qt::transparent);
break;
}
}
else if ( role == Qt::FontRole && originRowType <= 2 )
{
QFont font;
font.setBold(true);
return font;
}
return QSqlQueryModel::data(index, role);
}