summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
authorlouis <louis.braun@gmx.de>2013-05-04 11:30:55 +0200
committerlouis <louis.braun@gmx.de>2013-05-04 11:30:55 +0200
commit947bc6c842c5452cd8451a5f4cace918d7dbe917 (patch)
tree09e3d6ba6edc9cf087c6d68a9854e5de846c3ec6 /config.c
parent7e596690921f5216e2fd17a8d73903a2256ca6b6 (diff)
downloadskin-nopacity-947bc6c842c5452cd8451a5f4cace918d7dbe917.tar.gz
skin-nopacity-947bc6c842c5452cd8451a5f4cace918d7dbe917.tar.bz2
Some improvements in displaying channel groups
Diffstat (limited to 'config.c')
-rw-r--r--config.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/config.c b/config.c
index 1929e06..dc00700 100644
--- a/config.c
+++ b/config.c
@@ -22,10 +22,13 @@ cNopacityConfig::cNopacityConfig() {
logoBorder = 15;
backgroundStyle = 0;
displaySignalStrength = 1;
+ displayPrevNextChannelGroup = 1;
fontChannelHeaderSize = 0;
fontChannelDateSize = 0;
fontEPGSize = 0;
fontEPGSmallSize = 0;
+ fontChannelGroupSize = 0;
+ fontChannelGroupSmallSize = 0;
resolutionIconSize = 100;
statusIconSize = 64;
progressCurrentSchedule = 0;
@@ -298,10 +301,13 @@ bool cNopacityConfig::SetupParse(const char *Name, const char *Value) {
else if (strcmp(Name, "logoBorder") == 0) logoBorder = atoi(Value);
else if (strcmp(Name, "backgroundStyle") == 0) backgroundStyle = atoi(Value);
else if (strcmp(Name, "displaySignalStrength") == 0) displaySignalStrength = atoi(Value);
+ else if (strcmp(Name, "displayPrevNextChannelGroup") == 0) displayPrevNextChannelGroup = atoi(Value);
else if (strcmp(Name, "fontChannelHeaderSize") == 0) fontChannelHeaderSize = atoi(Value);
else if (strcmp(Name, "fontChannelDateSize") == 0) fontChannelDateSize = atoi(Value);
else if (strcmp(Name, "fontEPGSize") == 0) fontEPGSize = atoi(Value);
else if (strcmp(Name, "fontEPGSmallSize") == 0) fontEPGSmallSize = atoi(Value);
+ else if (strcmp(Name, "fontChannelGroupSize") == 0) fontChannelGroupSize = atoi(Value);
+ else if (strcmp(Name, "fontChannelGroupSmallSize") == 0) fontChannelGroupSmallSize = atoi(Value);
else if (strcmp(Name, "resolutionIconSize") == 0) resolutionIconSize = atoi(Value);
else if (strcmp(Name, "statusIconSize") == 0) statusIconSize = atoi(Value);
else if (strcmp(Name, "progressCurrentSchedule") == 0) progressCurrentSchedule = atoi(Value);