You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
qterminal-packaging/src/fontdialog.h

22 lines
282 B

#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