Add RenderConfig, combining common parameters

Цей коміт міститься в:
2022-01-03 22:48:19 +01:00
джерело c51487c4b2
коміт 32286cae4b

12
gui/renderconfig.h Звичайний файл
Переглянути файл

@@ -0,0 +1,12 @@
#ifndef RENDERCONFIG_H
#define RENDERCONFIG_H
#include <QVector>
struct RenderConfig
{
double scaleX = 50 / 100.;
double scaleY = scaleX;
QVector<QString> wordsToHighlight;
};
#endif // RENDERCONFIG_H