diff options
author | Maniac <maniac> | 2011-05-10 20:46:03 +0200 |
---|---|---|
committer | Maniac <maniac> | 2011-05-10 20:46:03 +0200 |
commit | 032f825e6adc49ea52e45410bf98c90ae6fd27ec (patch) | |
tree | 2fc7e5a9bf65f720fc31f3072b16ab37007eafd1 /config.h | |
download | vdr-plugin-skinpearlhd-0.0.1.tar.gz vdr-plugin-skinpearlhd-0.0.1.tar.bz2 |
initial import0.0.1
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/config.h b/config.h new file mode 100644 index 0000000..ebbddc0 --- /dev/null +++ b/config.h @@ -0,0 +1,40 @@ +#ifndef __SKINPEARLHD_CONFIG_H +#define __SKINPEARLHD_CONFIG_H + +#include <vdr/themes.h> +#include <vdr/config.h> + +class cSkinPearlHDConfig +{ +private: + +public: + cSkinPearlHDConfig(void); + ~cSkinPearlHDConfig(); + bool SetupParse(const char *Name, const char *Value); + void SetEpgImagesDir(const char *Dir); + + int ChannelLogoPos; + int ChannelLogoFormat; + char ButtonRedText[20]; + char ButtonGreenText[20]; + char ButtonYellowText[20]; + char ButtonBlueText[20]; + int CryptSymbols; + int oClockText; + int RecShowClock; + int DisplayEpgImages; + int EpgImagesFormat; + int MenuPaddingWidth; + int MenuPaddingHeight; + int LineHeight; + int ChannelInfoPadding; + int RecTitleInfoHead; + int RecTitleInfo; + char EpgImagesDir[100]; + bool EpgDirSet; +}; + +extern cSkinPearlHDConfig PearlHDConfig; + +#endif //__SKINPEARLHD_CONFIG_H |