mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +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>
22 lines
287 B
C++
22 lines
287 B
C++
#ifndef TEMPLATEEDIT_H
|
|
#define TEMPLATEEDIT_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class TemplateEdit;
|
|
}
|
|
|
|
class TemplateEdit : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit TemplateEdit(QWidget *parent = 0);
|
|
~TemplateEdit();
|
|
|
|
private:
|
|
Ui::TemplateEdit *ui;
|
|
};
|
|
|
|
#endif // TEMPLATEEDIT_H
|