diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2007-06-10 13:02:43 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2007-06-10 13:02:43 +0200 |
commit | c6f8a149574f4e5196f802439e7439406ca82e71 (patch) | |
tree | 0b04b012f87d7033abb37aeb986385672b85da18 /config.h | |
parent | 32dd727d057a1ba22d403f48306adae10285ac77 (diff) | |
download | vdr-c6f8a149574f4e5196f802439e7439406ca82e71.tar.gz vdr-c6f8a149574f4e5196f802439e7439406ca82e71.tar.bz2 |
Freetype font support; full UTF-8 support; dropped pixel fonts
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: config.h 1.289 2007/04/28 14:47:24 kls Exp $ + * $Id: config.h 1.290 2007/06/02 11:22:17 kls Exp $ */ #ifndef __CONFIG_H @@ -17,6 +17,7 @@ #include <time.h> #include <unistd.h> #include "i18n.h" +#include "font.h" #include "tools.h" // VDR's own version number: @@ -242,6 +243,13 @@ public: int OSDLeft, OSDTop, OSDWidth, OSDHeight; int OSDMessageTime; int UseSmallFont; + int AntiAlias; + char FontOsd[MAXFONTNAME]; + char FontSml[MAXFONTNAME]; + char FontFix[MAXFONTNAME]; + int FontOsdSize; + int FontSmlSize; + int FontFixSize; int MaxVideoFileSize; int SplitEditedFiles; int MinEventTimeout, MinUserInactivity; |