2018-06-06 16:05:30 +00:00
|
|
|
#include "ResultModel.h"
|
|
|
|
|
2018-06-15 15:53:43 +00:00
|
|
|
#include "PluralPR.h"
|
|
|
|
#include "GenusPR.h"
|
2018-06-15 16:36:58 +00:00
|
|
|
#include "VerbEndPR.h"
|
2018-06-17 17:40:10 +00:00
|
|
|
#include "AkkusativPR.h"
|
|
|
|
#include "DativPR.h"
|
2018-06-25 21:04:32 +00:00
|
|
|
#include "V2PR.h"
|
|
|
|
#include "SvkPR.h"
|
2018-06-26 14:59:51 +00:00
|
|
|
#include "PassivPR.h"
|
|
|
|
#include "GenitivPR.h"
|
2018-06-15 15:53:43 +00:00
|
|
|
|
2018-12-09 11:49:12 +00:00
|
|
|
#include <QTextTable>
|
2018-06-06 16:05:30 +00:00
|
|
|
#include <QDebug>
|
|
|
|
|
|
|
|
ResultModel::ResultModel(QObject *parent)
|
2018-12-09 11:49:12 +00:00
|
|
|
: QAbstractTableModel(parent)
|
2018-06-06 16:05:30 +00:00
|
|
|
{
|
2018-12-09 11:49:12 +00:00
|
|
|
m_results = {"V2", "SVK", "VE", "Passiv", "Genus", "Akkusativ", "Dativ", "Genitiv", "Plural"};
|
2018-06-06 16:05:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int ResultModel::rowCount(const QModelIndex &parent) const
|
|
|
|
{
|
2018-06-17 16:44:54 +00:00
|
|
|
return 4;
|
2018-06-06 16:05:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int ResultModel::columnCount(const QModelIndex &parent) const
|
|
|
|
{
|
|
|
|
return 9;
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant ResultModel::data(const QModelIndex &index, int role) const
|
|
|
|
{
|
2018-06-14 17:19:53 +00:00
|
|
|
if (role == Qt::DisplayRole && index.column() < m_results.size())
|
2018-06-06 16:05:30 +00:00
|
|
|
{
|
2018-06-08 18:32:19 +00:00
|
|
|
switch (index.row())
|
2018-06-08 18:25:21 +00:00
|
|
|
{
|
2018-06-08 18:32:19 +00:00
|
|
|
case 0:
|
2018-06-14 17:19:53 +00:00
|
|
|
{
|
|
|
|
auto points = m_results[index.column()].points();
|
|
|
|
if (points != 0)
|
2018-06-08 18:32:19 +00:00
|
|
|
{
|
2018-06-14 17:19:53 +00:00
|
|
|
return static_cast<uint>(points);
|
2018-06-08 18:32:19 +00:00
|
|
|
}
|
2018-06-13 19:14:36 +00:00
|
|
|
break;
|
2018-06-14 17:19:53 +00:00
|
|
|
}
|
2018-06-13 19:14:36 +00:00
|
|
|
case 1:
|
2018-06-14 17:19:53 +00:00
|
|
|
{
|
|
|
|
auto pr = m_results[index.column()].pr();
|
|
|
|
if (pr >= 84)
|
2018-06-13 19:14:36 +00:00
|
|
|
{
|
2018-06-14 17:19:53 +00:00
|
|
|
return static_cast<uint>(pr);
|
2018-06-13 19:14:36 +00:00
|
|
|
}
|
|
|
|
break;
|
2018-06-14 17:19:53 +00:00
|
|
|
}
|
2018-06-13 19:14:36 +00:00
|
|
|
case 2:
|
2018-06-14 17:19:53 +00:00
|
|
|
{
|
|
|
|
auto pr = m_results[index.column()].pr();
|
|
|
|
if (pr < 84 && pr > 16)
|
2018-06-13 19:14:36 +00:00
|
|
|
{
|
2018-06-14 17:19:53 +00:00
|
|
|
return static_cast<uint>(pr);
|
2018-06-13 19:14:36 +00:00
|
|
|
}
|
|
|
|
break;
|
2018-06-14 17:19:53 +00:00
|
|
|
}
|
2018-06-13 19:14:36 +00:00
|
|
|
case 3:
|
2018-06-14 17:19:53 +00:00
|
|
|
{
|
|
|
|
auto pr = m_results[index.column()].pr();
|
|
|
|
if (pr <= 16)
|
2018-06-13 19:14:36 +00:00
|
|
|
{
|
2018-06-14 17:19:53 +00:00
|
|
|
return static_cast<uint>(pr);
|
2018-06-13 19:14:36 +00:00
|
|
|
}
|
|
|
|
break;
|
2018-06-14 17:19:53 +00:00
|
|
|
}
|
2018-06-08 18:32:19 +00:00
|
|
|
default:
|
|
|
|
break;
|
2018-06-14 17:19:53 +00:00
|
|
|
};
|
2018-06-08 18:25:21 +00:00
|
|
|
|
|
|
|
return "-";
|
2018-06-06 16:05:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2018-12-09 11:49:12 +00:00
|
|
|
QVariant ResultModel::headerData(int section, Qt::Orientation orientation, int role) const
|
2018-06-06 16:05:30 +00:00
|
|
|
{
|
|
|
|
if (role != Qt::DisplayRole)
|
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (orientation)
|
|
|
|
{
|
|
|
|
case Qt::Horizontal:
|
|
|
|
if (m_results.size() > section)
|
|
|
|
{
|
|
|
|
return m_results[section].name();
|
|
|
|
}
|
|
|
|
case Qt::Vertical:
|
|
|
|
switch (section)
|
|
|
|
{
|
|
|
|
case 0:
|
2018-06-08 18:32:19 +00:00
|
|
|
return "RP";
|
2018-06-06 16:05:30 +00:00
|
|
|
case 1:
|
2018-12-09 11:49:12 +00:00
|
|
|
return "\u2265 PR 84";
|
2018-06-06 16:05:30 +00:00
|
|
|
case 2:
|
2018-06-08 18:32:19 +00:00
|
|
|
return "< PR 84";
|
|
|
|
case 3:
|
2018-12-09 11:49:12 +00:00
|
|
|
return "\u2264 PR 16";
|
2018-06-06 16:05:30 +00:00
|
|
|
default:
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
}
|
2018-06-08 18:25:21 +00:00
|
|
|
|
2018-06-09 11:13:00 +00:00
|
|
|
void ResultModel::setAge(const Age &age)
|
2018-06-08 18:25:21 +00:00
|
|
|
{
|
|
|
|
m_age = age;
|
2018-06-13 19:14:36 +00:00
|
|
|
emit dataChanged(index(1, 0), index(4, 8));
|
2018-06-08 18:25:21 +00:00
|
|
|
}
|
|
|
|
|
2018-06-15 15:53:43 +00:00
|
|
|
void ResultModel::setPluralResult(unsigned int points)
|
2018-06-08 18:25:21 +00:00
|
|
|
{
|
|
|
|
if (m_results[8].points() != points)
|
|
|
|
{
|
2018-06-14 17:19:53 +00:00
|
|
|
m_results[8].setPoints(points);
|
|
|
|
m_results[8].setPR(PluralPR().lookup(m_age, points));
|
2018-06-08 18:32:19 +00:00
|
|
|
emit dataChanged(index(0, 8), index(4, 8));
|
2018-06-08 18:25:21 +00:00
|
|
|
}
|
|
|
|
}
|
2018-06-13 19:14:36 +00:00
|
|
|
|
2018-06-15 15:53:43 +00:00
|
|
|
void ResultModel::setGenusResult(unsigned int points)
|
|
|
|
{
|
|
|
|
if (m_results[4].points() != points)
|
|
|
|
{
|
|
|
|
m_results[4].setPoints(points);
|
|
|
|
m_results[4].setPR(GenusPR().lookup(m_age, points));
|
|
|
|
emit dataChanged(index(0, 4), index(4, 4));
|
|
|
|
}
|
|
|
|
}
|
2018-06-17 16:44:54 +00:00
|
|
|
|
2018-06-15 16:36:58 +00:00
|
|
|
void ResultModel::setVerbEndResult(unsigned int points)
|
|
|
|
{
|
|
|
|
if (m_results[2].points() != points)
|
|
|
|
{
|
|
|
|
m_results[2].setPoints(points);
|
|
|
|
m_results[2].setPR(VerbEndPR().lookup(m_age, points));
|
|
|
|
emit dataChanged(index(0, 2), index(4, 2));
|
|
|
|
}
|
|
|
|
}
|
2018-06-17 16:44:54 +00:00
|
|
|
|
|
|
|
void ResultModel::setAkkusativResult(unsigned int points)
|
|
|
|
{
|
|
|
|
if (m_results[5].points() != points)
|
|
|
|
{
|
|
|
|
m_results[5].setPoints(points);
|
2018-06-17 17:40:10 +00:00
|
|
|
m_results[5].setPR(AkkusativPR().lookup(m_age, points));
|
2018-06-17 16:44:54 +00:00
|
|
|
emit dataChanged(index(0, 5), index(4, 5));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ResultModel::setDativResult(unsigned int points)
|
|
|
|
{
|
|
|
|
if (m_results[6].points() != points)
|
|
|
|
{
|
|
|
|
m_results[6].setPoints(points);
|
2018-06-17 17:40:10 +00:00
|
|
|
m_results[6].setPR(DativPR().lookup(m_age, points));
|
2018-06-17 16:44:54 +00:00
|
|
|
emit dataChanged(index(0, 6), index(4, 6));
|
|
|
|
}
|
|
|
|
}
|
2018-12-09 11:49:12 +00:00
|
|
|
|
2018-06-25 21:04:32 +00:00
|
|
|
void ResultModel::setV2Result(unsigned int points)
|
|
|
|
{
|
|
|
|
if (m_results[0].points() != points)
|
|
|
|
{
|
|
|
|
m_results[0].setPoints(points);
|
|
|
|
m_results[0].setPR(V2PR().lookup(m_age, points));
|
|
|
|
emit dataChanged(index(0, 0), index(4, 0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ResultModel::setSvkResult(unsigned int points)
|
|
|
|
{
|
|
|
|
if (m_results[1].points() != points)
|
|
|
|
{
|
|
|
|
m_results[1].setPoints(points);
|
|
|
|
m_results[1].setPR(SvkPR().lookup(m_age, points));
|
|
|
|
emit dataChanged(index(0, 1), index(4, 1));
|
|
|
|
}
|
|
|
|
}
|
2018-06-26 14:59:51 +00:00
|
|
|
|
|
|
|
void ResultModel::setPassivResult(unsigned int points)
|
|
|
|
{
|
2018-12-09 11:49:12 +00:00
|
|
|
if (m_results[3].points() != points)
|
|
|
|
{
|
|
|
|
m_results[3].setPoints(points);
|
|
|
|
m_results[3].setPR(PassivPR().lookup(m_age, points));
|
|
|
|
emit dataChanged(index(0, 3), index(4, 3));
|
|
|
|
}
|
2018-06-26 14:59:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ResultModel::setGenitivResult(unsigned int points)
|
|
|
|
{
|
2018-12-09 11:49:12 +00:00
|
|
|
if (m_results[7].points() != points)
|
|
|
|
{
|
|
|
|
m_results[7].setPoints(points);
|
|
|
|
m_results[7].setPR(GenitivPR().lookup(m_age, points));
|
|
|
|
emit dataChanged(index(0, 7), index(4, 7));
|
|
|
|
}
|
2018-06-26 14:59:51 +00:00
|
|
|
}
|
2018-12-02 17:26:22 +00:00
|
|
|
|
|
|
|
void ResultModel::printTo(QTextCursor &cursor) const
|
|
|
|
{
|
|
|
|
QTextCharFormat headerFormat;
|
2018-12-09 11:49:12 +00:00
|
|
|
headerFormat.setFontPointSize(10);
|
|
|
|
cursor.insertBlock();
|
|
|
|
cursor.insertText("\nProzentränge (PR)");
|
2018-12-02 17:26:22 +00:00
|
|
|
|
|
|
|
QTextTableFormat tableFormat;
|
|
|
|
tableFormat.setCellPadding(2);
|
|
|
|
tableFormat.setCellSpacing(0);
|
|
|
|
|
2018-12-09 11:49:12 +00:00
|
|
|
const unsigned int columnCount = 10;
|
|
|
|
|
|
|
|
tableFormat.setColumnWidthConstraints({QTextLength(QTextLength::PercentageLength, 10),
|
|
|
|
QTextLength(QTextLength::PercentageLength, 10),
|
|
|
|
QTextLength(QTextLength::PercentageLength, 10),
|
|
|
|
QTextLength(QTextLength::PercentageLength, 10),
|
|
|
|
QTextLength(QTextLength::PercentageLength, 10),
|
|
|
|
QTextLength(QTextLength::PercentageLength, 10),
|
|
|
|
QTextLength(QTextLength::PercentageLength, 10),
|
|
|
|
QTextLength(QTextLength::PercentageLength, 10),
|
|
|
|
QTextLength(QTextLength::PercentageLength, 10),
|
|
|
|
QTextLength(QTextLength::PercentageLength, 10)});
|
|
|
|
|
|
|
|
QTextTable *table = cursor.insertTable(4, columnCount, tableFormat);
|
|
|
|
|
|
|
|
auto insertText = [&table](int row, int column, const QString &text) {
|
|
|
|
auto cell = table->cellAt(row, column);
|
|
|
|
auto textCursor = cell.firstCursorPosition();
|
|
|
|
|
|
|
|
auto blockFormat = textCursor.blockFormat();
|
|
|
|
blockFormat.setAlignment(Qt::AlignCenter);
|
|
|
|
textCursor.setBlockFormat(blockFormat);
|
2018-12-02 17:26:22 +00:00
|
|
|
|
2018-12-09 11:49:12 +00:00
|
|
|
auto cellFormat = cell.format();
|
|
|
|
cellFormat.setVerticalAlignment(QTextCharFormat::AlignMiddle);
|
|
|
|
|
|
|
|
if (row == 3)
|
|
|
|
{
|
|
|
|
QBrush backgroundBrush(QColor(192, 192, 192));
|
|
|
|
cellFormat.setBackground(backgroundBrush);
|
|
|
|
}
|
|
|
|
|
|
|
|
cell.setFormat(cellFormat);
|
|
|
|
|
|
|
|
auto charFormat = textCursor.charFormat();
|
|
|
|
charFormat.setVerticalAlignment(QTextCharFormat::AlignMiddle);
|
|
|
|
charFormat.setFontPointSize(8);
|
|
|
|
|
|
|
|
if (row == 0 || column == 0)
|
|
|
|
{
|
|
|
|
charFormat.setFontWeight(QFont::Bold);
|
|
|
|
}
|
|
|
|
|
|
|
|
textCursor.setCharFormat(charFormat);
|
|
|
|
|
|
|
|
textCursor.insertText(text);
|
|
|
|
};
|
|
|
|
|
|
|
|
insertText(1, 0, "\u2265 PR 84");
|
|
|
|
insertText(2, 0, "< PR 84");
|
|
|
|
insertText(3, 0, "\u2264 PR 16");
|
|
|
|
|
|
|
|
for (size_t index = 0; index < m_results.size(); ++index)
|
|
|
|
{
|
|
|
|
insertText(0, index + 1, m_results[index].name());
|
|
|
|
int pr = m_results[index].pr();
|
|
|
|
insertText(1, index + 1, pr >= 84 ? QString::number(pr) : "-");
|
|
|
|
insertText(2, index + 1, pr < 84 && pr > 16 ? QString::number(pr) : "-");
|
|
|
|
insertText(3, index + 1, pr <= 16 ? QString::number(pr) : "-");
|
|
|
|
}
|
2018-12-02 17:26:22 +00:00
|
|
|
}
|
|
|
|
|