diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-05-16 10:35:36 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-05-16 10:35:36 +0200 |
commit | 5d99df7b7760c4a2b497c737a15b609008f6d56d (patch) | |
tree | a342f2f7465a73fe2bd63848d87566af8d646dd3 /config.h | |
parent | 7aab06d8b1c6de59d06756d44c631984acd299b3 (diff) | |
download | vdr-5d99df7b7760c4a2b497c737a15b609008f6d56d.tar.gz vdr-5d99df7b7760c4a2b497c737a15b609008f6d56d.tar.bz2 |
Implemented 'skins' and 'themes'
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 17 |
1 files changed, 11 insertions, 6 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.191 2004/03/14 16:51:13 kls Exp $ + * $Id: config.h 1.192 2004/05/08 09:18:36 kls Exp $ */ #ifndef __CONFIG_H @@ -26,12 +26,14 @@ #define MAXPRIORITY 99 #define MAXLIFETIME 99 -#define MINOSDWIDTH 40 -#define MAXOSDWIDTH 56 -#define MINOSDHEIGHT 12 -#define MAXOSDHEIGHT 21 +#define MINOSDWIDTH 480 +#define MAXOSDWIDTH 672 +#define MINOSDHEIGHT 324 +#define MAXOSDHEIGHT 567 #define MaxFileName 256 +#define MaxSkinName 16 +#define MaxThemeName 16 class cCommand : public cListObject { private: @@ -204,6 +206,8 @@ public: // Also adjust cMenuSetup (menu.c) when adding parameters here! int __BeginData__; int OSDLanguage; + char OSDSkin[MaxSkinName]; + char OSDTheme[MaxThemeName]; int PrimaryDVB; int ShowInfoOnChSwitch; int MenuScrollPage; @@ -235,8 +239,9 @@ public: int UpdateChannels; int RecordDolbyDigital; int ChannelInfoPos; - int OSDwidth, OSDheight; + int OSDLeft, OSDTop, OSDWidth, OSDHeight; int OSDMessageTime; + int UseSmallFont; int MaxVideoFileSize; int SplitEditedFiles; int MinEventTimeout, MinUserInactivity; |