summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
authorlouis <louis.braun@gmx.de>2013-01-30 21:08:26 +0100
committerlouis <louis.braun@gmx.de>2013-01-30 21:08:26 +0100
commit80ea9ad4e3f23773da5b2c871931117f2df41145 (patch)
treefc357473b0dd440faedf1af7669cf4c551348afb /config.c
parentde9bc2df7e2418269e86abbf452d212a75cdb201 (diff)
downloadskin-nopacity-80ea9ad4e3f23773da5b2c871931117f2df41145.tar.gz
skin-nopacity-80ea9ad4e3f23773da5b2c871931117f2df41145.tar.bz2
Added displaying of additional EPG images in detailed EPG view
Diffstat (limited to 'config.c')
-rw-r--r--config.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/config.c b/config.c
index c56d55e..9dd5989 100644
--- a/config.c
+++ b/config.c
@@ -57,6 +57,8 @@ cNopacityConfig::cNopacityConfig() {
displayRerunsDetailEPGView = 1;
numReruns = 5;
useSubtitleRerun = 1;
+ displayAdditionalEPGPictures = 1;
+ numAdditionalEPGPictures = 9;
menuFadeTime = 300;
menuEPGWindowFadeTime = 300;
menuWidthNarrow = 30;
@@ -85,6 +87,8 @@ cNopacityConfig::cNopacityConfig() {
timersLogoHeight = 70;
epgImageWidth = 210;
epgImageHeight = 160;
+ epgImageWidthLarge = 545;
+ epgImageHeightLarge = 400;
menuRecFolderSize = 128;
fontHeader = 0;
fontDate = 0;
@@ -220,6 +224,8 @@ bool cNopacityConfig::SetupParse(const char *Name, const char *Value) {
else if (strcmp(Name, "displayRerunsDetailEPGView") == 0) displayRerunsDetailEPGView = atoi(Value);
else if (strcmp(Name, "numReruns") == 0) numReruns = atoi(Value);
else if (strcmp(Name, "useSubtitleRerun") == 0) useSubtitleRerun = atoi(Value);
+ else if (strcmp(Name, "displayAdditionalEPGPictures") == 0) displayAdditionalEPGPictures = atoi(Value);
+ else if (strcmp(Name, "numAdditionalEPGPictures") == 0) numAdditionalEPGPictures = atoi(Value);
else if (strcmp(Name, "menuWidthNarrow") == 0) menuWidthNarrow = atoi(Value);
else if (strcmp(Name, "menuWidthRightItems") == 0) menuWidthRightItems = atoi(Value);
else if (strcmp(Name, "menuHeightInfoWindow") == 0) menuHeightInfoWindow = atoi(Value);
@@ -241,6 +247,8 @@ bool cNopacityConfig::SetupParse(const char *Name, const char *Value) {
else if (strcmp(Name, "timersLogoHeight") == 0) timersLogoHeight = atoi(Value);
else if (strcmp(Name, "epgImageWidth") == 0) epgImageWidth = atoi(Value);
else if (strcmp(Name, "epgImageHeight") == 0) epgImageHeight = atoi(Value);
+ else if (strcmp(Name, "epgImageWidthLarge") == 0) epgImageWidthLarge = atoi(Value);
+ else if (strcmp(Name, "epgImageHeightLarge") == 0) epgImageHeightLarge = atoi(Value);
else if (strcmp(Name, "menuRecFolderSize") == 0) menuRecFolderSize = atoi(Value);
else if (strcmp(Name, "fontHeader") == 0) fontHeader = atoi(Value);
else if (strcmp(Name, "fontDate") == 0) fontDate = atoi(Value);