diff options
author | louis <louis.braun@gmx.de> | 2013-06-03 09:52:54 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2013-06-03 09:52:54 +0200 |
commit | e87e589416466453d5a8b630b8a514f33f622e86 (patch) | |
tree | 10440604ad94f69d812846e3ac88be7e39ec24cb /config.c | |
parent | d2e13f083b60b5251cd5d845f49bac48119800e2 (diff) | |
download | vdr-plugin-tvguide-e87e589416466453d5a8b630b8a514f33f622e86.tar.gz vdr-plugin-tvguide-e87e589416466453d5a8b630b8a514f33f622e86.tar.bz2 |
display of additional EPG pictures in detailed epg view
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -56,6 +56,9 @@ cTvguideConfig::cTvguideConfig() { hideEpgImages = 0;
epgImageWidth = 315;
epgImageHeight = 240;
+ numAdditionalEPGPictures = 9;
+ epgImageWidthLarge = 525;
+ epgImageHeightLarge = 400;
fontIndex = 0;
fontNameDefault = "VDRSymbols Sans:Book";
FontButtonDelta = 0;
@@ -262,6 +265,9 @@ bool cTvguideConfig::SetupParse(const char *Name, const char *Value) { else if (strcmp(Name, "hideEpgImages") == 0) hideEpgImages = atoi(Value);
else if (strcmp(Name, "epgImageWidth") == 0) epgImageWidth = atoi(Value);
else if (strcmp(Name, "epgImageHeight") == 0) epgImageHeight = atoi(Value);
+ else if (strcmp(Name, "numAdditionalEPGPictures") == 0) numAdditionalEPGPictures = atoi(Value);
+ else if (strcmp(Name, "epgImageWidthLarge") == 0) epgImageWidthLarge = atoi(Value);
+ else if (strcmp(Name, "epgImageHeightLarge") == 0) epgImageHeightLarge = atoi(Value);
else if (strcmp(Name, "timeLineWidthPercent") == 0) timeLineWidthPercent = atoi(Value);
else if (strcmp(Name, "timeLineHeightPercent") == 0) timeLineHeightPercent = atoi(Value);
else if (strcmp(Name, "displayChannelName") == 0) displayChannelName = atoi(Value);
|