blob: ebbddc033a653e5d5705c9d545bd245c891a17b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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
|