blob: 49a8433a474084619a404fb130ae995f9492fa54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef OPIE_FONTMANAGER_H
#define OPIE_FONTMANAGER_H
#include <qfont.h>
class FontManager {
public:
enum Spacing { Fixed, Proportional };
static bool hasUnicodeFont();
static QFont unicodeFont( Spacing );
};
#endif
|