22 lines
282 B
C++
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
|