diff options
author | louis <louis.braun@gmx.de> | 2013-02-03 17:35:03 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2013-02-03 17:35:03 +0100 |
commit | 119f1471ce11bb5d3ae9dfae38e4c0d2649ed4de (patch) | |
tree | 7ecc5ebe760acae5832fa12ec973241675dde265 /config.c | |
parent | cc9729d480129b47b272ef802aac5c5827ae5728 (diff) | |
download | skin-nopacity-119f1471ce11bb5d3ae9dfae38e4c0d2649ed4de.tar.gz skin-nopacity-119f1471ce11bb5d3ae9dfae38e4c0d2649ed4de.tar.bz2 |
Changed Disc Usage Info display, size individually configurable
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -69,6 +69,7 @@ cNopacityConfig::cNopacityConfig() { menuInfoScrollDelay = 5; menuInfoScrollSpeed = 2; menuWidthRightItems = 12; + menuSizeDiskUsage = 12; showDiscUsage = 1; showTimers = 1; checkTimerConflict = 1; @@ -101,6 +102,7 @@ cNopacityConfig::cNopacityConfig() { fontMenuitemRecordingsSmall = 0; fontMenuitemDefault = 0; fontDiskUsage = 0; + fontDiskUsagePercent = 0; fontTimersHead = 0; fontTimers = 0; fontButtons = 0; @@ -228,6 +230,7 @@ bool cNopacityConfig::SetupParse(const char *Name, const char *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, "menuSizeDiskUsage") == 0) menuSizeDiskUsage = atoi(Value); else if (strcmp(Name, "menuHeightInfoWindow") == 0) menuHeightInfoWindow = atoi(Value); else if (strcmp(Name, "showDiscUsage") == 0) showDiscUsage = atoi(Value); else if (strcmp(Name, "showTimers") == 0) showTimers = atoi(Value); @@ -261,6 +264,7 @@ bool cNopacityConfig::SetupParse(const char *Name, const char *Value) { else if (strcmp(Name, "fontMenuitemRecordingsSmall") == 0) fontMenuitemRecordingsSmall = atoi(Value); else if (strcmp(Name, "fontMenuitemDefault") == 0) fontMenuitemDefault = atoi(Value); else if (strcmp(Name, "fontDiskUsage") == 0) fontDiskUsage = atoi(Value); + else if (strcmp(Name, "fontDiskUsagePercent") == 0) fontDiskUsagePercent = atoi(Value); else if (strcmp(Name, "fontTimersHead") == 0) fontTimersHead = atoi(Value); else if (strcmp(Name, "fontTimers") == 0) fontTimers = atoi(Value); else if (strcmp(Name, "fontButtons") == 0) fontButtons = atoi(Value); |