mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
963e09ad7b
The TemplateEdit class works to customize the tempalate before printing, User can select the font-size, font-type, color-palette, linespacing and editing the template HTML code. Signed-off-by: Gehad elrobey <gehadelrobey@gmail.com> Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
15 lines
259 B
C++
15 lines
259 B
C++
#include "templateedit.h"
|
|
#include "ui_templateedit.h"
|
|
|
|
TemplateEdit::TemplateEdit(QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::TemplateEdit)
|
|
{
|
|
ui->setupUi(this);
|
|
this->templateOptions = templateOptions;
|
|
}
|
|
|
|
TemplateEdit::~TemplateEdit()
|
|
{
|
|
delete ui;
|
|
}
|