WIP V2/Svk printing

feature/print-as-qtextdocument
mandlm 2018-12-12 22:19:42 +01:00
parent cc20d46a76
commit be3a3f453d
3 changed files with 62 additions and 1 deletions

View File

@ -70,7 +70,7 @@ void DataModel::printTo(QTextCursor &cursor) const
m_metaData.printTo(cursor);
//m_v2Svk.printTo(cursor);
m_v2Svk.printTo(cursor);
m_verbEnd.printTo(cursor);
m_genus.printTo(cursor);
m_akkusativ.printTo(cursor);

View File

@ -1,5 +1,7 @@
#include "V2SvkModel.h"
#include <QTextTable>
V2SvkModel::V2SvkModel(QObject *parent)
: CheckableTestModel(parent)
{
@ -204,3 +206,61 @@ std::string V2SvkModel::getName() const
{
return "Subtest 1: Verbzweitstellungsregel (V2) und Subjekt-Verb-Kontrollregel (SVK)";
}
void V2SvkModel::printTableTo(QTextCursor &cursor) const
{
QTextTableFormat tableFormat;
tableFormat.setCellPadding(2);
tableFormat.setCellSpacing(0);
tableFormat.setColumnWidthConstraints({QTextLength(QTextLength::PercentageLength, 20),
QTextLength(QTextLength::PercentageLength, 5),
QTextLength(QTextLength::PercentageLength, 5),
QTextLength(QTextLength::PercentageLength, 5),
QTextLength(QTextLength::PercentageLength, 5),
QTextLength(QTextLength::PercentageLength, 5),
QTextLength(QTextLength::PercentageLength, 5),
QTextLength(QTextLength::PercentageLength, 5),
QTextLength(QTextLength::PercentageLength, 5),
QTextLength(QTextLength::PercentageLength, 5),
QTextLength(QTextLength::PercentageLength, 5),
QTextLength(QTextLength::PercentageLength, 5),
QTextLength(QTextLength::PercentageLength, 5),
QTextLength(QTextLength::PercentageLength, 13),
QTextLength(QTextLength::PercentageLength, 3),
QTextLength(QTextLength::PercentageLength, 1),
QTextLength(QTextLength::PercentageLength, 3)});
QTextTable *table = cursor.insertTable(2, 17, tableFormat);
int currentRow = 0;
int currentTest = 0;
//for (const auto &test : m_tests)
{
table->mergeCells(currentRow, 0, 2, 1);
int currentColumn = 0;
setCellText(*table, currentRow, currentColumn, m_tests[0].name());
currentColumn++;
for (auto it = std::begin(m_tests[0].items()); it != std::end(m_tests[0].items()); std::advance(it, 4))
{
table->mergeCells(currentRow, currentColumn, 1, 4);
auto itemName = it->getText();
setCellText(*table, currentRow, currentColumn, itemName.c_str());
setCellChecked(*table, currentRow + 1, currentColumn, it->isChecked());
setCellChecked(*table, currentRow + 1, currentColumn + 1, (it + 1)->isChecked());
setCellChecked(*table, currentRow + 1, currentColumn + 2, (it + 2)->isChecked());
setCellChecked(*table, currentRow + 1, currentColumn + 3, (it + 3)->isChecked());
currentColumn += 4;
}
setCellNumber(*table, currentRow + 1, 14, m_tests[0].getPoints());
currentRow += 2;
}
}

View File

@ -22,4 +22,5 @@ protected:
bool isValidIndex(const QModelIndex &index) const override;
std::string getName() const override;
void printTableTo(QTextCursor &cursor) const override;
};