diff options
author | louis <louis.braun@gmx.de> | 2012-12-19 19:43:56 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2012-12-19 19:43:56 +0100 |
commit | 7c2a71393299eed572c1b4dfc2f35a7819e8843b (patch) | |
tree | 751f8c55e49f82ac291015d28924d3f235058fe7 /config.c | |
parent | 7010739a062c660bbd88b612e1635068325acf3f (diff) | |
download | skin-nopacity-7c2a71393299eed572c1b4dfc2f35a7819e8843b.tar.gz skin-nopacity-7c2a71393299eed572c1b4dfc2f35a7819e8843b.tar.bz2 |
Configurable display of disc usage and timers in main menu
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -62,6 +62,8 @@ cNopacityConfig::cNopacityConfig() { menuScrollDelay = 1000; menuScrollSpeed = 2; menuWidthRightItems = 12; + showDiscUsage = 1; + showTimers = 1; headerHeight = 7; footerHeight = 7; numDefaultMenuItems = 16; @@ -213,6 +215,8 @@ bool cNopacityConfig::SetupParse(const char *Name, const char *Value) { else if (strcmp(Name, "useSubtitleRerun") == 0) useSubtitleRerun = atoi(Value); else if (strcmp(Name, "menuWidthNarrow") == 0) menuWidthNarrow = atoi(Value); else if (strcmp(Name, "menuWidthRightItems") == 0) menuWidthRightItems = atoi(Value); + else if (strcmp(Name, "showDiscUsage") == 0) showDiscUsage = atoi(Value); + else if (strcmp(Name, "showTimers") == 0) showTimers = atoi(Value); else if (strcmp(Name, "headerHeight") == 0) headerHeight = atoi(Value); else if (strcmp(Name, "footerHeight") == 0) footerHeight = atoi(Value); else if (strcmp(Name, "numDefaultMenuItems") == 0) numDefaultMenuItems = atoi(Value); |