qterminal-packaging/src/fontdialog.h
Andrew Lee (李健秋) ce290e834f
Adding upstream version 0.6.0.
Signed-off-by: Andrew Lee (李健秋) <ajqlee@debian.org>
2015-08-16 00:43:27 +08:00

22 lines
282 B
C++

#ifndef FONT_DIALOG
#define FONT_DIALOG
#include "ui_fontdialog.h"
#include "properties.h"
class FontDialog : public QDialog, public Ui::FontDialog
{
Q_OBJECT
public:
FontDialog(const QFont &f);
QFont getFont();
private slots:
void setFontSample();
};
#endif