Print most of the table structures
This commit is contained in:
parent
f895ec0c1c
commit
ab862aeaf1
@ -18,8 +18,9 @@ target_include_directories(${PROJECT_NAME}
|
|||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries(${PROJECT_NAME}
|
target_link_libraries(${PROJECT_NAME}
|
||||||
PRIVATE
|
PUBLIC
|
||||||
CheckableItem
|
CheckableItem
|
||||||
CheckableTest
|
CheckableTest
|
||||||
|
PRIVATE
|
||||||
Qt5::Core
|
Qt5::Core
|
||||||
)
|
)
|
||||||
|
@ -187,3 +187,8 @@ unsigned int CheckableTestModel::getPoints() const
|
|||||||
|
|
||||||
return points;
|
return points;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QString CheckableTestModel::getTitle() const
|
||||||
|
{
|
||||||
|
return m_title;
|
||||||
|
}
|
||||||
|
@ -8,6 +8,7 @@ class CheckableTestModel : public QAbstractTableModel
|
|||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
QString m_title;
|
||||||
CheckableTests m_tests;
|
CheckableTests m_tests;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
@ -16,17 +17,17 @@ public:
|
|||||||
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
|
||||||
int columnCount(const QModelIndex &parent = QModelIndex()) const override;
|
int columnCount(const QModelIndex &parent = QModelIndex()) const override;
|
||||||
|
|
||||||
QVariant data(
|
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
|
||||||
const QModelIndex &index, int role = Qt::DisplayRole) const override;
|
|
||||||
Qt::ItemFlags flags(const QModelIndex &index) const override;
|
Qt::ItemFlags flags(const QModelIndex &index) const override;
|
||||||
bool setData(const QModelIndex &index, const QVariant &value,
|
bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override;
|
||||||
int role = Qt::EditRole) override;
|
|
||||||
|
|
||||||
QVariant headerData(int section, Qt::Orientation orientation,
|
QVariant headerData(int section, Qt::Orientation orientation,
|
||||||
int role = Qt::DisplayRole) const override;
|
int role = Qt::DisplayRole) const override;
|
||||||
|
|
||||||
unsigned int getPoints() const;
|
unsigned int getPoints() const;
|
||||||
|
|
||||||
|
QString getTitle() const;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual bool isValidIndex(const QModelIndex &index) const;
|
virtual bool isValidIndex(const QModelIndex &index) const;
|
||||||
|
|
||||||
|
@ -100,14 +100,37 @@ void DataModel::read(const QString &filename)
|
|||||||
m_passiv.read(dataModel.lateskillspassiv());
|
m_passiv.read(dataModel.lateskillspassiv());
|
||||||
}
|
}
|
||||||
|
|
||||||
void DataModel::printTo(QPainter &painter) const
|
void DataModel::printTo(QPrinter &printer) const
|
||||||
{
|
{
|
||||||
painter.setFont(h1Font());
|
QPainter painter;
|
||||||
|
painter.begin(&printer);
|
||||||
|
|
||||||
|
|
||||||
|
painter.setFont(PrintableModel::h1Font());
|
||||||
painter.drawText(0, painter.fontMetrics().lineSpacing(), "ESGRAF 4-8 Auswertungsbogen");
|
painter.drawText(0, painter.fontMetrics().lineSpacing(), "ESGRAF 4-8 Auswertungsbogen");
|
||||||
painter.translate(0, 3 * painter.fontMetrics().lineSpacing());
|
painter.translate(0, 3 * painter.fontMetrics().lineSpacing());
|
||||||
|
|
||||||
m_metaData.printTo(painter);
|
m_metaData.printTo(painter);
|
||||||
|
|
||||||
m_wfModel.printTo(painter);
|
m_wfModel.printTo(painter);
|
||||||
|
m_otModel.printTo(painter);
|
||||||
|
m_tPrModel.printTo(painter);
|
||||||
|
m_tPeModel.printTo(painter);
|
||||||
|
V2SvkModel::printSummary(painter,
|
||||||
|
m_wfModel.getV2Points() + m_otModel.getV2Points()
|
||||||
|
+ m_tPrModel.getV2Points() + m_tPeModel.getV2Points(),
|
||||||
|
m_wfModel.getSvkPoints() + m_otModel.getSvkPoints()
|
||||||
|
+ m_tPrModel.getSvkPoints() + m_tPeModel.getSvkPoints());
|
||||||
|
|
||||||
|
m_verbEnd.printTo(painter);
|
||||||
|
m_genus.printTo(painter);
|
||||||
|
|
||||||
|
printer.newPage();
|
||||||
|
painter.resetTransform();
|
||||||
|
|
||||||
|
m_plural.printTo(painter);
|
||||||
|
|
||||||
|
painter.end();
|
||||||
}
|
}
|
||||||
|
|
||||||
void DataModel::pluralModelChanged()
|
void DataModel::pluralModelChanged()
|
||||||
|
@ -19,9 +19,9 @@
|
|||||||
|
|
||||||
#include "ResultModel.h"
|
#include "ResultModel.h"
|
||||||
|
|
||||||
#include <QPainter>
|
#include <QPrinter>
|
||||||
|
|
||||||
class DataModel : public QObject, public PrintableModel
|
class DataModel : public QObject
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
@ -49,7 +49,7 @@ public:
|
|||||||
void write(const QString &filename) const;
|
void write(const QString &filename) const;
|
||||||
void read(const QString &filename);
|
void read(const QString &filename);
|
||||||
|
|
||||||
void printTo(QPainter &painter) const override;
|
void printTo(QPrinter &printer) const;
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
void modelChanged();
|
void modelChanged();
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
|
||||||
MetaDataModel::MetaDataModel(QObject *parent)
|
MetaDataModel::MetaDataModel(QObject *parent)
|
||||||
: QAbstractTableModel(parent)
|
: PrintableModel(parent)
|
||||||
{
|
{
|
||||||
m_dateOfBirth = QDate::currentDate().addYears(-9);
|
m_dateOfBirth = QDate::currentDate().addYears(-9);
|
||||||
m_dateOfTest = QDate::currentDate();
|
m_dateOfTest = QDate::currentDate();
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
#include <QString>
|
#include <QString>
|
||||||
#include <QDate>
|
#include <QDate>
|
||||||
|
|
||||||
class MetaDataModel : public QAbstractTableModel, public PrintableModel
|
class MetaDataModel : public PrintableModel
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
@ -19,6 +19,8 @@ target_include_directories(${PROJECT_NAME}
|
|||||||
)
|
)
|
||||||
|
|
||||||
target_link_libraries(${PROJECT_NAME}
|
target_link_libraries(${PROJECT_NAME}
|
||||||
|
PUBLIC
|
||||||
|
CheckableTestModel
|
||||||
PRIVATE
|
PRIVATE
|
||||||
Qt5::Core
|
Qt5::Core
|
||||||
Qt5::Widgets
|
Qt5::Widgets
|
||||||
|
@ -1,5 +1,17 @@
|
|||||||
#include "PrintableModel.h"
|
#include "PrintableModel.h"
|
||||||
|
|
||||||
|
PrintableModel::PrintableModel(QObject *parent)
|
||||||
|
: CheckableTestModel(parent)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void PrintableModel::printTo(QPainter &painter) const
|
||||||
|
{
|
||||||
|
printHeader(painter);
|
||||||
|
printTests(painter);
|
||||||
|
printSummary(painter);
|
||||||
|
}
|
||||||
|
|
||||||
QFont PrintableModel::h1Font()
|
QFont PrintableModel::h1Font()
|
||||||
{
|
{
|
||||||
return QFont("Helvetica", 16);
|
return QFont("Helvetica", 16);
|
||||||
@ -7,7 +19,7 @@ QFont PrintableModel::h1Font()
|
|||||||
|
|
||||||
QFont PrintableModel::h2Font()
|
QFont PrintableModel::h2Font()
|
||||||
{
|
{
|
||||||
return QFont("Helvetica", 12);
|
return QFont("Helvetica", 10);
|
||||||
}
|
}
|
||||||
|
|
||||||
QFont PrintableModel::tableFont()
|
QFont PrintableModel::tableFont()
|
||||||
@ -44,17 +56,12 @@ void PrintableModel::PrintableModel::drawCheckSquare(QPainter &painter, const QR
|
|||||||
void PrintableModel::drawResultSquare(QPainter &painter, double y, bool rightCell,
|
void PrintableModel::drawResultSquare(QPainter &painter, double y, bool rightCell,
|
||||||
unsigned int value)
|
unsigned int value)
|
||||||
{
|
{
|
||||||
auto prevPen = painter.pen();
|
|
||||||
painter.setPen(tablePen());
|
|
||||||
|
|
||||||
double pageWidth = painter.device()->width();
|
double pageWidth = painter.device()->width();
|
||||||
double cellWidth = 0.03 * pageWidth;
|
double cellWidth = 0.03 * pageWidth;
|
||||||
double cellHeight = painter.fontMetrics().lineSpacing();
|
double cellHeight = 1.5 * painter.fontMetrics().lineSpacing();
|
||||||
double x = pageWidth - cellWidth - (rightCell ? 0 : 0.04 * pageWidth);
|
double x = pageWidth - cellWidth - (rightCell ? 0 : 0.04 * pageWidth);
|
||||||
|
|
||||||
drawTextSquare(painter, {x, y, cellWidth, cellHeight}, QString::number(value));
|
drawTextSquare(painter, {x, y, cellWidth, cellHeight}, QString::number(value));
|
||||||
|
|
||||||
painter.setPen(prevPen);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void PrintableModel::drawGreySquare(QPainter &painter, const QRectF &cell)
|
void PrintableModel::drawGreySquare(QPainter &painter, const QRectF &cell)
|
||||||
@ -76,3 +83,69 @@ void PrintableModel::drawGreySquare(QPainter &painter, const QRectF &cell)
|
|||||||
painter.setBrush(prevBrush);
|
painter.setBrush(prevBrush);
|
||||||
painter.setPen(prevPen);
|
painter.setPen(prevPen);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void PrintableModel::drawHeader2(QPainter &painter, const QString &text)
|
||||||
|
{
|
||||||
|
painter.setFont(h2Font());
|
||||||
|
painter.drawText(0, 0, text);
|
||||||
|
painter.translate(0, 0.5 * painter.fontMetrics().lineSpacing());
|
||||||
|
}
|
||||||
|
|
||||||
|
void PrintableModel::printHeader(QPainter &painter) const
|
||||||
|
{
|
||||||
|
auto title = getTitle();
|
||||||
|
if (!title.isEmpty())
|
||||||
|
{
|
||||||
|
drawHeader2(painter, getTitle());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void PrintableModel::printTests(QPainter &painter) const
|
||||||
|
{
|
||||||
|
painter.setFont(tableFont());
|
||||||
|
painter.setPen(tablePen());
|
||||||
|
|
||||||
|
auto width = painter.device()->width();
|
||||||
|
auto height = 1.5 * painter.fontMetrics().lineSpacing();
|
||||||
|
|
||||||
|
double headerWidth = 0.2 * width;
|
||||||
|
double cellWidth = 0.08 * width;
|
||||||
|
double rowHeight = height;
|
||||||
|
|
||||||
|
double x = 0;
|
||||||
|
double y = 0;
|
||||||
|
for (const auto &test : m_tests)
|
||||||
|
{
|
||||||
|
drawTextSquare(painter, {0, y, headerWidth, 2 * rowHeight}, test.name());
|
||||||
|
x = headerWidth;
|
||||||
|
|
||||||
|
for (const auto &item : test.items())
|
||||||
|
{
|
||||||
|
drawTextSquare(painter, {x, y, cellWidth, rowHeight}, item.getText().c_str());
|
||||||
|
drawCheckSquare(painter, {x, y + rowHeight, cellWidth, rowHeight}, item.isChecked());
|
||||||
|
|
||||||
|
x += cellWidth;
|
||||||
|
}
|
||||||
|
y += rowHeight;
|
||||||
|
|
||||||
|
drawResultSquare(painter, y, true, test.getPoints());
|
||||||
|
y += rowHeight;
|
||||||
|
}
|
||||||
|
|
||||||
|
painter.translate(0, y + rowHeight);
|
||||||
|
}
|
||||||
|
|
||||||
|
void PrintableModel::printSummary(QPainter &painter) const
|
||||||
|
{
|
||||||
|
painter.setFont(tableFont());
|
||||||
|
painter.setPen(tablePen());
|
||||||
|
|
||||||
|
auto width = painter.device()->width();
|
||||||
|
auto height = 1.5 * painter.fontMetrics().lineSpacing();
|
||||||
|
|
||||||
|
painter.drawText(0, 0, 0.85 * width, height, Qt::AlignRight | Qt::AlignVCenter,
|
||||||
|
"Rohwertpunkte Total:");
|
||||||
|
drawResultSquare(painter, 0, true, getPoints());
|
||||||
|
|
||||||
|
painter.translate(0, 3 * height);
|
||||||
|
}
|
||||||
|
@ -1,17 +1,22 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include "CheckableTestModel.h"
|
||||||
|
|
||||||
#include <QPainter>
|
#include <QPainter>
|
||||||
#include <QFont>
|
#include <QFont>
|
||||||
#include <QPen>
|
#include <QPen>
|
||||||
#include <QRect>
|
#include <QRect>
|
||||||
#include <QString>
|
#include <QString>
|
||||||
|
|
||||||
class PrintableModel
|
class PrintableModel : public CheckableTestModel
|
||||||
{
|
{
|
||||||
public:
|
Q_OBJECT
|
||||||
virtual void printTo(QPainter &painter) const = 0;
|
|
||||||
|
public:
|
||||||
|
PrintableModel(QObject *parent);
|
||||||
|
|
||||||
|
virtual void printTo(QPainter &painter) const;
|
||||||
|
|
||||||
protected:
|
|
||||||
static QFont h1Font();
|
static QFont h1Font();
|
||||||
static QFont h2Font();
|
static QFont h2Font();
|
||||||
static QFont tableFont();
|
static QFont tableFont();
|
||||||
@ -22,4 +27,11 @@ protected:
|
|||||||
static void drawCheckSquare(QPainter &painter, const QRectF &cell, bool checked);
|
static void drawCheckSquare(QPainter &painter, const QRectF &cell, bool checked);
|
||||||
static void drawResultSquare(QPainter &painter, double y, bool rightCell, unsigned int value);
|
static void drawResultSquare(QPainter &painter, double y, bool rightCell, unsigned int value);
|
||||||
static void drawGreySquare(QPainter &painter, const QRectF &cell);
|
static void drawGreySquare(QPainter &painter, const QRectF &cell);
|
||||||
|
|
||||||
|
protected:
|
||||||
|
static void drawHeader2(QPainter &painter, const QString &text);
|
||||||
|
|
||||||
|
virtual void printHeader(QPainter &painter) const;
|
||||||
|
virtual void printTests(QPainter &painter) const;
|
||||||
|
virtual void printSummary(QPainter &painter) const;
|
||||||
};
|
};
|
||||||
|
@ -39,9 +39,7 @@ target_include_directories(${PROJECT_NAME}
|
|||||||
|
|
||||||
target_link_libraries(${PROJECT_NAME}
|
target_link_libraries(${PROJECT_NAME}
|
||||||
PRIVATE
|
PRIVATE
|
||||||
CheckableItem
|
PrintableModel
|
||||||
CheckableTest
|
|
||||||
CheckableTestModel
|
|
||||||
Qt5::Widgets
|
Qt5::Widgets
|
||||||
${Protobuf_LIBRARIES}
|
${Protobuf_LIBRARIES}
|
||||||
)
|
)
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
#include "GenusModel.h"
|
#include "GenusModel.h"
|
||||||
|
|
||||||
GenusModel::GenusModel(QObject *parent)
|
GenusModel::GenusModel(QObject *parent)
|
||||||
: CheckableTestModel(parent)
|
: PrintableModel(parent)
|
||||||
{
|
{
|
||||||
|
m_title = "Subtest 3: Genus";
|
||||||
|
|
||||||
m_tests = {{"Tiere", {"Tiger", "Bär", "Katze", "Pferd", "Gans", "Elefant", "Affe", "Hund"}},
|
m_tests = {{"Tiere", {"Tiger", "Bär", "Katze", "Pferd", "Gans", "Elefant", "Affe", "Hund"}},
|
||||||
{"Futter",
|
{"Futter",
|
||||||
{"Salat", "Fleisch", "Knochen", "Banane", "Apfel", "Karotte", "Honig", "Zucker"}},
|
{"Salat", "Fleisch", "Knochen", "Banane", "Apfel", "Karotte", "Honig", "Zucker"}},
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CheckableTestModel.h"
|
#include "PrintableModel.h"
|
||||||
#include "GenusModel.pb.h"
|
#include "GenusModel.pb.h"
|
||||||
|
|
||||||
class GenusModel : public CheckableTestModel
|
class GenusModel : public PrintableModel
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
@ -39,9 +39,7 @@ target_include_directories(${PROJECT_NAME}
|
|||||||
|
|
||||||
target_link_libraries(${PROJECT_NAME}
|
target_link_libraries(${PROJECT_NAME}
|
||||||
PRIVATE
|
PRIVATE
|
||||||
CheckableItem
|
PrintableModel
|
||||||
CheckableTest
|
|
||||||
CheckableTestModel
|
|
||||||
Qt5::Widgets
|
Qt5::Widgets
|
||||||
${Protobuf_LIBRARIES}
|
${Protobuf_LIBRARIES}
|
||||||
)
|
)
|
||||||
|
@ -3,8 +3,10 @@
|
|||||||
#include <QSize>
|
#include <QSize>
|
||||||
|
|
||||||
PluralModel::PluralModel(QObject *parent)
|
PluralModel::PluralModel(QObject *parent)
|
||||||
: CheckableTestModel(parent)
|
: PrintableModel(parent)
|
||||||
{
|
{
|
||||||
|
m_title = "Subtest 5: Plural";
|
||||||
|
|
||||||
m_tests = {{"Plural",
|
m_tests = {{"Plural",
|
||||||
{"Fisch /-e/", "Banane /-n/", "Bonbon /-s/", "Ei /-er/", "Eimer /-ø/",
|
{"Fisch /-e/", "Banane /-n/", "Bonbon /-s/", "Ei /-er/", "Eimer /-ø/",
|
||||||
"Korn UML+/-er/", "Nuss UML+/-e/", "Bär /-en/", "Apfel UML"}}};
|
"Korn UML+/-er/", "Nuss UML+/-e/", "Bär /-en/", "Apfel UML"}}};
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CheckableTestModel.h"
|
#include "PrintableModel.h"
|
||||||
#include "PluralModel.pb.h"
|
#include "PluralModel.pb.h"
|
||||||
|
|
||||||
class PluralModel : public CheckableTestModel
|
class PluralModel : public PrintableModel
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
@ -19,6 +19,7 @@ protobuf_generate_cpp(V2Svk_PROTO_SRCS V2Svk_PROTO_HDRS ${V2Svk_PROTO_FILES})
|
|||||||
|
|
||||||
add_library(${PROJECT_NAME}
|
add_library(${PROJECT_NAME}
|
||||||
V2SvkWidget.cpp
|
V2SvkWidget.cpp
|
||||||
|
V2SvkModel.cpp
|
||||||
WFModel.cpp
|
WFModel.cpp
|
||||||
OTModel.cpp
|
OTModel.cpp
|
||||||
TPrModel.cpp
|
TPrModel.cpp
|
||||||
@ -42,9 +43,6 @@ target_include_directories(${PROJECT_NAME}
|
|||||||
|
|
||||||
target_link_libraries(${PROJECT_NAME}
|
target_link_libraries(${PROJECT_NAME}
|
||||||
PRIVATE
|
PRIVATE
|
||||||
CheckableItem
|
|
||||||
CheckableTest
|
|
||||||
CheckableTestModel
|
|
||||||
PrintableModel
|
PrintableModel
|
||||||
Qt5::Widgets
|
Qt5::Widgets
|
||||||
${Protobuf_LIBRARIES}
|
${Protobuf_LIBRARIES}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#include "OTModel.h"
|
#include "OTModel.h"
|
||||||
|
|
||||||
OTModel::OTModel(QObject *parent)
|
OTModel::OTModel(QObject *parent)
|
||||||
: CheckableTestModel(parent)
|
: V2SvkModel(parent)
|
||||||
{
|
{
|
||||||
m_tests = {
|
m_tests = {
|
||||||
{"Objekt-Topikalisierung",
|
{"Objekt-Topikalisierung",
|
||||||
@ -13,7 +13,7 @@ OTModel::OTModel(QObject *parent)
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned int OTModel::getV2Points()
|
unsigned int OTModel::getV2Points() const
|
||||||
{
|
{
|
||||||
unsigned int points = 0;
|
unsigned int points = 0;
|
||||||
|
|
||||||
@ -33,7 +33,7 @@ unsigned int OTModel::getV2Points()
|
|||||||
return points;
|
return points;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned int OTModel::getSvkPoints()
|
unsigned int OTModel::getSvkPoints() const
|
||||||
{
|
{
|
||||||
unsigned int points = 0;
|
unsigned int points = 0;
|
||||||
|
|
||||||
@ -103,3 +103,13 @@ void OTModel::read(const ESGRAF48::V2SvkModel &model)
|
|||||||
|
|
||||||
emit dataChanged(index(0, 0), index(rowCount() - 1, columnCount() - 1));
|
emit dataChanged(index(0, 0), index(rowCount() - 1, columnCount() - 1));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::set<int> OTModel::v2Tests() const
|
||||||
|
{
|
||||||
|
return {0};
|
||||||
|
};
|
||||||
|
|
||||||
|
std::set<int> OTModel::svkTests() const
|
||||||
|
{
|
||||||
|
return {1};
|
||||||
|
};
|
||||||
|
@ -1,18 +1,24 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CheckableTestModel.h"
|
#include "V2SvkModel.h"
|
||||||
#include "V2SvkModel.pb.h"
|
#include "V2SvkModel.pb.h"
|
||||||
|
|
||||||
class OTModel : public CheckableTestModel
|
class OTModel : public V2SvkModel
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
OTModel(QObject *parent);
|
OTModel(QObject *parent);
|
||||||
|
|
||||||
unsigned int getV2Points();
|
unsigned int getV2Points() const override;
|
||||||
unsigned int getSvkPoints();
|
unsigned int getSvkPoints() const override;
|
||||||
|
|
||||||
void write(ESGRAF48::V2SvkModel &model) const;
|
void write(ESGRAF48::V2SvkModel &model) const override;
|
||||||
void read(const ESGRAF48::V2SvkModel &model);
|
void read(const ESGRAF48::V2SvkModel &model) override;
|
||||||
|
|
||||||
|
protected:
|
||||||
|
void printHeader(QPainter &) const override {};
|
||||||
|
|
||||||
|
std::set<int> v2Tests() const override;
|
||||||
|
std::set<int> svkTests() const override;
|
||||||
};
|
};
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#include "TPeModel.h"
|
#include "TPeModel.h"
|
||||||
|
|
||||||
TPeModel::TPeModel(QObject *parent)
|
TPeModel::TPeModel(QObject *parent)
|
||||||
: CheckableTestModel(parent)
|
: V2SvkModel(parent)
|
||||||
{
|
{
|
||||||
m_tests = {
|
m_tests = {
|
||||||
{"Temporaladverb Perfekt", {"Affe", "Affe", "Schwein", "Schwein", "Gans", "Gans"}},
|
{"Temporaladverb Perfekt", {"Affe", "Affe", "Schwein", "Schwein", "Gans", "Gans"}},
|
||||||
@ -11,7 +11,7 @@ TPeModel::TPeModel(QObject *parent)
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned int TPeModel::getV2Points()
|
unsigned int TPeModel::getV2Points() const
|
||||||
{
|
{
|
||||||
unsigned int points = 0;
|
unsigned int points = 0;
|
||||||
|
|
||||||
@ -31,7 +31,7 @@ unsigned int TPeModel::getV2Points()
|
|||||||
return points;
|
return points;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned int TPeModel::getSvkPoints()
|
unsigned int TPeModel::getSvkPoints() const
|
||||||
{
|
{
|
||||||
unsigned int points = 0;
|
unsigned int points = 0;
|
||||||
|
|
||||||
@ -93,3 +93,13 @@ void TPeModel::read(const ESGRAF48::V2SvkModel &model)
|
|||||||
|
|
||||||
emit dataChanged(index(0, 0), index(rowCount() - 1, columnCount() - 1));
|
emit dataChanged(index(0, 0), index(rowCount() - 1, columnCount() - 1));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::set<int> TPeModel::v2Tests() const
|
||||||
|
{
|
||||||
|
return {0, 1};
|
||||||
|
};
|
||||||
|
|
||||||
|
std::set<int> TPeModel::svkTests() const
|
||||||
|
{
|
||||||
|
return {2, 3};
|
||||||
|
};
|
||||||
|
@ -1,18 +1,24 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CheckableTestModel.h"
|
#include "V2SvkModel.h"
|
||||||
#include "V2SvkModel.pb.h"
|
#include "V2SvkModel.pb.h"
|
||||||
|
|
||||||
class TPeModel : public CheckableTestModel
|
class TPeModel : public V2SvkModel
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
TPeModel(QObject *parent);
|
TPeModel(QObject *parent);
|
||||||
|
|
||||||
unsigned int getV2Points();
|
unsigned int getV2Points() const override;
|
||||||
unsigned int getSvkPoints();
|
unsigned int getSvkPoints() const override;
|
||||||
|
|
||||||
void write(ESGRAF48::V2SvkModel &model) const;
|
void write(ESGRAF48::V2SvkModel &model) const override;
|
||||||
void read(const ESGRAF48::V2SvkModel &model);
|
void read(const ESGRAF48::V2SvkModel &model) override;
|
||||||
|
|
||||||
|
protected:
|
||||||
|
void printHeader(QPainter &) const override {};
|
||||||
|
|
||||||
|
std::set<int> v2Tests() const override;
|
||||||
|
std::set<int> svkTests() const override;
|
||||||
};
|
};
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#include "TPrModel.h"
|
#include "TPrModel.h"
|
||||||
|
|
||||||
TPrModel::TPrModel(QObject *parent)
|
TPrModel::TPrModel(QObject *parent)
|
||||||
: CheckableTestModel(parent)
|
: V2SvkModel(parent)
|
||||||
{
|
{
|
||||||
m_tests = {
|
m_tests = {
|
||||||
{"Temporaladverb Präsens", {"Affe", "Affe", "Schwein", "Schwein", "Gans", "Gans"}},
|
{"Temporaladverb Präsens", {"Affe", "Affe", "Schwein", "Schwein", "Gans", "Gans"}},
|
||||||
@ -9,7 +9,7 @@ TPrModel::TPrModel(QObject *parent)
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned int TPrModel::getV2Points()
|
unsigned int TPrModel::getV2Points() const
|
||||||
{
|
{
|
||||||
unsigned int points = 0;
|
unsigned int points = 0;
|
||||||
|
|
||||||
@ -29,7 +29,7 @@ unsigned int TPrModel::getV2Points()
|
|||||||
return points;
|
return points;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned int TPrModel::getSvkPoints()
|
unsigned int TPrModel::getSvkPoints() const
|
||||||
{
|
{
|
||||||
unsigned int points = 0;
|
unsigned int points = 0;
|
||||||
|
|
||||||
@ -87,3 +87,13 @@ void TPrModel::read(const ESGRAF48::V2SvkModel &model)
|
|||||||
|
|
||||||
emit dataChanged(index(0, 0), index(rowCount() - 1, columnCount() - 1));
|
emit dataChanged(index(0, 0), index(rowCount() - 1, columnCount() - 1));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::set<int> TPrModel::v2Tests() const
|
||||||
|
{
|
||||||
|
return {0};
|
||||||
|
};
|
||||||
|
|
||||||
|
std::set<int> TPrModel::svkTests() const
|
||||||
|
{
|
||||||
|
return {1};
|
||||||
|
};
|
||||||
|
@ -1,18 +1,24 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CheckableTestModel.h"
|
#include "V2SvkModel.h"
|
||||||
#include "V2SvkModel.pb.h"
|
#include "V2SvkModel.pb.h"
|
||||||
|
|
||||||
class TPrModel : public CheckableTestModel
|
class TPrModel : public V2SvkModel
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
TPrModel(QObject *parent);
|
TPrModel(QObject *parent);
|
||||||
|
|
||||||
unsigned int getV2Points();
|
unsigned int getV2Points() const override;
|
||||||
unsigned int getSvkPoints();
|
unsigned int getSvkPoints() const override;
|
||||||
|
|
||||||
void write(ESGRAF48::V2SvkModel &model) const;
|
void write(ESGRAF48::V2SvkModel &model) const override;
|
||||||
void read(const ESGRAF48::V2SvkModel &model);
|
void read(const ESGRAF48::V2SvkModel &model) override;
|
||||||
|
|
||||||
|
protected:
|
||||||
|
void printHeader(QPainter &) const override{};
|
||||||
|
|
||||||
|
std::set<int> v2Tests() const override;
|
||||||
|
std::set<int> svkTests() const override;
|
||||||
};
|
};
|
||||||
|
126
source/SubTests/V2Svk/V2SvkModel.cpp
Normal file
126
source/SubTests/V2Svk/V2SvkModel.cpp
Normal file
@ -0,0 +1,126 @@
|
|||||||
|
#include "V2SvkModel.h"
|
||||||
|
|
||||||
|
V2SvkModel::V2SvkModel(QObject *parent)
|
||||||
|
: PrintableModel(parent)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void V2SvkModel::printTests(QPainter &painter) const
|
||||||
|
{
|
||||||
|
painter.setFont(tableFont());
|
||||||
|
painter.setPen(tablePen());
|
||||||
|
|
||||||
|
auto width = painter.device()->width();
|
||||||
|
auto height = 1.5 * painter.fontMetrics().lineSpacing();
|
||||||
|
|
||||||
|
auto v2TestIndices = v2Tests();
|
||||||
|
auto svkTestIndices = svkTests();
|
||||||
|
|
||||||
|
double x = 0;
|
||||||
|
double y = 0;
|
||||||
|
auto testIndex = 0;
|
||||||
|
for (const auto &test : m_tests)
|
||||||
|
{
|
||||||
|
double rowHeaderWidth = 0.2 * width;
|
||||||
|
double resultCellWidth = test.size() > 8 ? 0.04 * width : 0.08 * width;
|
||||||
|
double rowHeight = height;
|
||||||
|
|
||||||
|
if (testIndex == 0)
|
||||||
|
{
|
||||||
|
drawTextSquare(painter, {x, y, rowHeaderWidth, 2 * rowHeight}, test.name());
|
||||||
|
x += rowHeaderWidth;
|
||||||
|
|
||||||
|
std::vector<std::pair<std::string, unsigned int>> columnHeaders;
|
||||||
|
for (const auto &item : test.items())
|
||||||
|
{
|
||||||
|
const auto &itemText = item.getText();
|
||||||
|
if (!columnHeaders.empty() && columnHeaders.back().first == itemText)
|
||||||
|
{
|
||||||
|
columnHeaders.back().second++;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
columnHeaders.emplace_back(itemText, 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const auto &columnHeader : columnHeaders)
|
||||||
|
{
|
||||||
|
double cellWidth = columnHeader.second * resultCellWidth;
|
||||||
|
drawTextSquare(painter, {x, y, cellWidth, rowHeight}, columnHeader.first.c_str());
|
||||||
|
x += cellWidth;
|
||||||
|
}
|
||||||
|
x = rowHeaderWidth;
|
||||||
|
y += rowHeight;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
drawTextSquare(painter, {x, y, rowHeaderWidth, rowHeight}, test.name());
|
||||||
|
x += rowHeaderWidth;
|
||||||
|
}
|
||||||
|
|
||||||
|
unsigned int emptyItemsStack = 0;
|
||||||
|
for (const auto &item : test.items())
|
||||||
|
{
|
||||||
|
if (item.getText().empty())
|
||||||
|
{
|
||||||
|
emptyItemsStack++;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (emptyItemsStack > 0)
|
||||||
|
{
|
||||||
|
drawGreySquare(painter, {x - emptyItemsStack * resultCellWidth, y,
|
||||||
|
emptyItemsStack * resultCellWidth, rowHeight});
|
||||||
|
emptyItemsStack = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
drawCheckSquare(painter, {x, y, resultCellWidth, rowHeight}, item.isChecked());
|
||||||
|
}
|
||||||
|
x += resultCellWidth;
|
||||||
|
}
|
||||||
|
if (emptyItemsStack > 0)
|
||||||
|
{
|
||||||
|
drawGreySquare(painter, {x - emptyItemsStack * resultCellWidth, y,
|
||||||
|
emptyItemsStack * resultCellWidth, rowHeight});
|
||||||
|
emptyItemsStack = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (v2TestIndices.find(testIndex) != v2TestIndices.end())
|
||||||
|
{
|
||||||
|
drawResultSquare(painter, y, false, test.getPoints());
|
||||||
|
}
|
||||||
|
|
||||||
|
if (svkTestIndices.find(testIndex) != svkTestIndices.end())
|
||||||
|
{
|
||||||
|
drawResultSquare(painter, y, true, test.getPoints());
|
||||||
|
}
|
||||||
|
|
||||||
|
x = 0;
|
||||||
|
y += rowHeight;
|
||||||
|
|
||||||
|
testIndex++;
|
||||||
|
}
|
||||||
|
|
||||||
|
x = 0;
|
||||||
|
y += height;
|
||||||
|
|
||||||
|
painter.translate(0, y);
|
||||||
|
}
|
||||||
|
|
||||||
|
void V2SvkModel::printSummary(QPainter &painter, unsigned int v2Points, unsigned int svkPoints)
|
||||||
|
{
|
||||||
|
painter.setFont(PrintableModel::tableFont());
|
||||||
|
painter.setPen(PrintableModel::tablePen());
|
||||||
|
|
||||||
|
auto width = painter.device()->width();
|
||||||
|
auto height = 1.5 * painter.fontMetrics().lineSpacing();
|
||||||
|
|
||||||
|
painter.drawText(0, 0, 0.85 * width, height, Qt::AlignRight | Qt::AlignVCenter,
|
||||||
|
"Rohwertpunkte Total:");
|
||||||
|
PrintableModel::drawResultSquare(painter, 0, false, v2Points);
|
||||||
|
PrintableModel::drawResultSquare(painter, 0, true, svkPoints);
|
||||||
|
|
||||||
|
painter.translate(0, 3 * height);
|
||||||
|
}
|
||||||
|
|
27
source/SubTests/V2Svk/V2SvkModel.h
Normal file
27
source/SubTests/V2Svk/V2SvkModel.h
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "PrintableModel.h"
|
||||||
|
#include "V2SvkModel.pb.h"
|
||||||
|
|
||||||
|
class V2SvkModel : public PrintableModel
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
V2SvkModel(QObject *parent);
|
||||||
|
|
||||||
|
virtual unsigned int getV2Points() const = 0;
|
||||||
|
virtual unsigned int getSvkPoints() const = 0;
|
||||||
|
|
||||||
|
virtual void write(ESGRAF48::V2SvkModel &model) const = 0;
|
||||||
|
virtual void read(const ESGRAF48::V2SvkModel &model) = 0;
|
||||||
|
|
||||||
|
static void printSummary(QPainter &painter, unsigned int v2Points, unsigned int svkPoints);
|
||||||
|
|
||||||
|
protected:
|
||||||
|
void printTests(QPainter &painter) const override;
|
||||||
|
void printSummary(QPainter &painter) const override {};
|
||||||
|
|
||||||
|
virtual std::set<int> v2Tests() const = 0;
|
||||||
|
virtual std::set<int> svkTests() const = 0;
|
||||||
|
};
|
@ -1,8 +1,10 @@
|
|||||||
#include "WFModel.h"
|
#include "WFModel.h"
|
||||||
|
|
||||||
WFModel::WFModel(QObject *parent)
|
WFModel::WFModel(QObject *parent)
|
||||||
: CheckableTestModel(parent)
|
: V2SvkModel(parent)
|
||||||
{
|
{
|
||||||
|
m_title = "Subtest 1: Verbzweitstellungsregel (V2) und Subjekt-Verb-Kontrollregel (SVK)";
|
||||||
|
|
||||||
m_tests = {
|
m_tests = {
|
||||||
{"W-Frage",
|
{"W-Frage",
|
||||||
{"Affe", "Affe", "Affe", "Affe", "Schwein", "Schwein", "Schwein", "Schwein", "Gans",
|
{"Affe", "Affe", "Affe", "Affe", "Schwein", "Schwein", "Schwein", "Schwein", "Gans",
|
||||||
@ -134,115 +136,12 @@ void WFModel::read(const ESGRAF48::V2SvkModel &model)
|
|||||||
emit dataChanged(index(0, 0), index(rowCount() - 1, columnCount() - 1));
|
emit dataChanged(index(0, 0), index(rowCount() - 1, columnCount() - 1));
|
||||||
}
|
}
|
||||||
|
|
||||||
void WFModel::printTo(QPainter &painter) const
|
std::set<int> WFModel::v2Tests() const
|
||||||
{
|
{
|
||||||
painter.setFont(h2Font());
|
return {0, 1};
|
||||||
|
};
|
||||||
|
|
||||||
painter.drawText(
|
std::set<int> WFModel::svkTests() const
|
||||||
0, 0, "Subtest 1: Verbzweitstellungsregel (V2) und Subjekt-Verb-Kontrollregel (SVK)");
|
{
|
||||||
|
return {2};
|
||||||
painter.setFont(tableFont());
|
};
|
||||||
painter.setPen(tablePen());
|
|
||||||
|
|
||||||
auto width = painter.device()->width();
|
|
||||||
auto height = 1.5 * painter.fontMetrics().lineSpacing();
|
|
||||||
|
|
||||||
std::set<unsigned int> blockStarters = {0, 3, 5, 7};
|
|
||||||
std::set<unsigned int> v2Tests = {0, 1, 3, 5, 7, 8};
|
|
||||||
std::set<unsigned int> svkTests = {2, 4, 6, 9, 10};
|
|
||||||
|
|
||||||
double x = 0;
|
|
||||||
double y = 0;
|
|
||||||
auto testIndex = 0;
|
|
||||||
for (const auto &test : m_tests)
|
|
||||||
{
|
|
||||||
double rowHeaderWidth = 0.2 * width;
|
|
||||||
double resultCellWidth = test.size() > 8 ? 0.05 * width : 0.1 * width;
|
|
||||||
double rowHeight = height;
|
|
||||||
|
|
||||||
if (blockStarters.find(testIndex) != blockStarters.end())
|
|
||||||
{
|
|
||||||
y += rowHeight;
|
|
||||||
drawTextSquare(painter, {x, y, rowHeaderWidth, 2 * rowHeight}, test.name());
|
|
||||||
x += rowHeaderWidth;
|
|
||||||
|
|
||||||
std::vector<std::pair<std::string, unsigned int>> columnHeaders;
|
|
||||||
for (const auto &item : test.items())
|
|
||||||
{
|
|
||||||
const auto &itemText = item.getText();
|
|
||||||
if (!columnHeaders.empty() && columnHeaders.back().first == itemText)
|
|
||||||
{
|
|
||||||
columnHeaders.back().second++;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
columnHeaders.emplace_back(itemText, 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
for (const auto &columnHeader : columnHeaders)
|
|
||||||
{
|
|
||||||
double cellWidth = columnHeader.second * resultCellWidth;
|
|
||||||
drawTextSquare(painter, {x, y, cellWidth, rowHeight}, columnHeader.first.c_str());
|
|
||||||
x += cellWidth;
|
|
||||||
}
|
|
||||||
x = rowHeaderWidth;
|
|
||||||
y += rowHeight;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
drawTextSquare(painter, {x, y, rowHeaderWidth, rowHeight}, test.name());
|
|
||||||
x += rowHeaderWidth;
|
|
||||||
}
|
|
||||||
|
|
||||||
unsigned int emptyItemsStack = 0;
|
|
||||||
for (const auto &item : test.items())
|
|
||||||
{
|
|
||||||
if (item.getText().empty())
|
|
||||||
{
|
|
||||||
emptyItemsStack++;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (emptyItemsStack > 0)
|
|
||||||
{
|
|
||||||
drawGreySquare(painter, {x - emptyItemsStack * resultCellWidth, y,
|
|
||||||
emptyItemsStack * resultCellWidth, rowHeight});
|
|
||||||
emptyItemsStack = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
drawCheckSquare(painter, {x, y, resultCellWidth, rowHeight}, item.isChecked());
|
|
||||||
}
|
|
||||||
x += resultCellWidth;
|
|
||||||
}
|
|
||||||
if (emptyItemsStack > 0)
|
|
||||||
{
|
|
||||||
drawGreySquare(painter, {x - emptyItemsStack * resultCellWidth, y,
|
|
||||||
emptyItemsStack * resultCellWidth, rowHeight});
|
|
||||||
emptyItemsStack = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (v2Tests.find(testIndex) != v2Tests.end())
|
|
||||||
{
|
|
||||||
drawResultSquare(painter, y, false, test.getPoints());
|
|
||||||
}
|
|
||||||
|
|
||||||
if (svkTests.find(testIndex) != svkTests.end())
|
|
||||||
{
|
|
||||||
drawResultSquare(painter, y, true, test.getPoints());
|
|
||||||
}
|
|
||||||
|
|
||||||
x = 0;
|
|
||||||
y += rowHeight;
|
|
||||||
|
|
||||||
testIndex++;
|
|
||||||
}
|
|
||||||
|
|
||||||
x = 0;
|
|
||||||
y += height;
|
|
||||||
|
|
||||||
painter.drawText(x, y, 0.85 * width, height, Qt::AlignRight | Qt::AlignVCenter,
|
|
||||||
"Rohwertpunkte Total:");
|
|
||||||
drawResultSquare(painter, y, false, getV2Points());
|
|
||||||
drawResultSquare(painter, y, true, getSvkPoints());
|
|
||||||
}
|
|
||||||
|
@ -1,25 +1,24 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "PrintableModel.h"
|
#include "V2SvkModel.h"
|
||||||
|
|
||||||
#include "CheckableTestModel.h"
|
|
||||||
#include "V2SvkModel.pb.h"
|
#include "V2SvkModel.pb.h"
|
||||||
|
|
||||||
class WFModel : public CheckableTestModel, public PrintableModel
|
class WFModel : public V2SvkModel
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
WFModel(QObject *parent);
|
WFModel(QObject *parent);
|
||||||
|
|
||||||
unsigned int getV2Points() const;
|
unsigned int getV2Points() const override;
|
||||||
unsigned int getSvkPoints() const;
|
unsigned int getSvkPoints() const override;
|
||||||
|
|
||||||
void write(ESGRAF48::V2SvkModel &model) const;
|
void write(ESGRAF48::V2SvkModel &model) const override;
|
||||||
void read(const ESGRAF48::V2SvkModel &model);
|
void read(const ESGRAF48::V2SvkModel &model) override;
|
||||||
|
|
||||||
void printTo(QPainter &painter) const override;
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
std::set<int> v2Tests() const override;
|
||||||
|
std::set<int> svkTests() const override;
|
||||||
|
|
||||||
bool isValidIndex(const QModelIndex &index) const override;
|
bool isValidIndex(const QModelIndex &index) const override;
|
||||||
};
|
};
|
||||||
|
@ -42,6 +42,7 @@ target_link_libraries(${PROJECT_NAME}
|
|||||||
CheckableItem
|
CheckableItem
|
||||||
CheckableTest
|
CheckableTest
|
||||||
CheckableTestModel
|
CheckableTestModel
|
||||||
|
PrintableModel
|
||||||
Qt5::Widgets
|
Qt5::Widgets
|
||||||
${Protobuf_LIBRARIES}
|
${Protobuf_LIBRARIES}
|
||||||
)
|
)
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
#include "VerbEndModel.h"
|
#include "VerbEndModel.h"
|
||||||
|
|
||||||
VerbEndModel::VerbEndModel(QObject *parent)
|
VerbEndModel::VerbEndModel(QObject *parent)
|
||||||
: CheckableTestModel(parent)
|
: PrintableModel(parent)
|
||||||
{
|
{
|
||||||
|
m_title = "Subtest 2: Verbendstellungsregel (VE)";
|
||||||
|
|
||||||
m_tests = { { "Telefonat",
|
m_tests = { { "Telefonat",
|
||||||
{ "Kausal", "Kausal", "Relativ", "Kausal",
|
{ "Kausal", "Kausal", "Relativ", "Kausal",
|
||||||
"Final", "Temporal", "Temporal" } },
|
"Final", "Temporal", "Temporal" } },
|
||||||
@ -98,3 +100,4 @@ void VerbEndModel::read(const ESGRAF48::VerbEndModel &model)
|
|||||||
|
|
||||||
emit dataChanged(index(0, 0), index(rowCount() - 1, columnCount() - 1));
|
emit dataChanged(index(0, 0), index(rowCount() - 1, columnCount() - 1));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "CheckableTestModel.h"
|
#include "PrintableModel.h"
|
||||||
#include "VerbEndModel.pb.h"
|
#include "VerbEndModel.pb.h"
|
||||||
|
|
||||||
class VerbEndModel : public CheckableTestModel
|
class VerbEndModel : public PrintableModel
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
@ -178,12 +178,7 @@ void MainWindow::print() const
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
QPainter painter;
|
m_dataModel.printTo(printer);
|
||||||
painter.begin(&printer);
|
|
||||||
|
|
||||||
m_dataModel.printTo(painter);
|
|
||||||
|
|
||||||
painter.end();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::dataModelChanged()
|
void MainWindow::dataModelChanged()
|
||||||
@ -242,12 +237,7 @@ void MainWindow::savePdf(const QString &filename)
|
|||||||
printer.setPageMargins(20, 20, 20, 20, QPrinter::Millimeter);
|
printer.setPageMargins(20, 20, 20, 20, QPrinter::Millimeter);
|
||||||
printer.setOutputFileName(filename);
|
printer.setOutputFileName(filename);
|
||||||
|
|
||||||
QPainter painter;
|
m_dataModel.printTo(printer);
|
||||||
painter.begin(&printer);
|
|
||||||
|
|
||||||
m_dataModel.printTo(painter);
|
|
||||||
|
|
||||||
painter.end();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::aboutDialog()
|
void MainWindow::aboutDialog()
|
||||||
|
Reference in New Issue
Block a user