subsurface/qt-ui/templateedit.cpp
Gehad elrobey 963e09ad7b Printing: add TemplateEdit form to source tree
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>
2015-07-05 20:59:55 +03:00

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;
}