mirror of
https://github.com/riuson/lcd-image-converter.git
synced 2026-03-05 15:54:14 +01:00
18 lines
403 B
C
18 lines
403 B
C
#ifndef TFONTPARAMETERS
|
|
#define TFONTPARAMETERS
|
|
|
|
#include <QObject>
|
|
//-----------------------------------------------------------------------------
|
|
struct tFontParameters
|
|
{
|
|
QString family;
|
|
QString style;
|
|
int size;
|
|
bool monospaced;
|
|
bool antiAliasing;
|
|
bool alphaChannel;
|
|
};
|
|
//-----------------------------------------------------------------------------
|
|
#endif // TFONTPARAMETERS
|
|
|