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-06-06 16:05:30 +00:00
|
|
|
#include <QDebug>
|
|
|
|
|
|
|
|
ResultModel::ResultModel(QObject *parent)
|
|
|
|
: QAbstractTableModel(parent)
|
|
|
|
{
|
2018-06-08 18:25:21 +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 {};
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant ResultModel::headerData(
|
|
|
|
int section, Qt::Orientation orientation, int role) const
|
|
|
|
{
|
|
|
|
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-06-08 18:32:19 +00:00
|
|
|
return ">= 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-06-06 16:05:30 +00:00
|
|
|
return "<= PR 16";
|
|
|
|
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-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)
|
|
|
|
{
|
|
|
|
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));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ResultModel::setGenitivResult(unsigned int points)
|
|
|
|
{
|
|
|
|
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-12-02 17:26:22 +00:00
|
|
|
|
|
|
|
void ResultModel::printTo(QTextCursor &cursor) const
|
|
|
|
{
|
|
|
|
cursor.insertBlock();
|
|
|
|
|
|
|
|
QTextCharFormat headerFormat;
|
|
|
|
headerFormat.setFontPointSize(12);
|
|
|
|
cursor.insertText(
|
|
|
|
"Prozentränge (PR)",
|
|
|
|
headerFormat);
|
|
|
|
|
|
|
|
QTextTableFormat tableFormat;
|
|
|
|
tableFormat.setCellPadding(2);
|
|
|
|
tableFormat.setCellSpacing(0);
|
|
|
|
|
|
|
|
QTextTable *table = cursor.insertTable(1, 1, tableFormat);
|
|
|
|
|
|
|
|
cursor.movePosition(QTextCursor::NextBlock);
|
|
|
|
}
|
|
|
|
|