diff options
author | louis <louis.braun@gmx.de> | 2013-02-12 15:29:24 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2013-02-12 15:29:24 +0100 |
commit | f04a7865cdab7a6a8d0aa5ec2f062e16bcd27e8e (patch) | |
tree | d6fb5eedbdabfe221db1661c00614bc4d96e8988 /config.c | |
parent | c73044f730ab27d5b4134aef370364888a9f1d1e (diff) | |
download | skin-nopacity-f04a7865cdab7a6a8d0aa5ec2f062e16bcd27e8e.tar.gz skin-nopacity-f04a7865cdab7a6a8d0aa5ec2f062e16bcd27e8e.tar.bz2 |
Introduced narrow display of timers menu (Usage of narrow timer menu and width also configurable)
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -57,6 +57,7 @@ cNopacityConfig::cNopacityConfig() { narrowMainMenu = 1; narrowScheduleMenu = 1; narrowChannelMenu = 1; + narrowTimerMenu = 1; narrowRecordingMenu = 1; narrowSetupMenu = 1; displayRerunsDetailEPGView = 1; @@ -69,6 +70,7 @@ cNopacityConfig::cNopacityConfig() { menuWidthMain = 30; menuWidthSchedules = 30; menuWidthChannels = 30; + menuWidthTimers = 30; menuWidthRecordings = 30; menuHeightInfoWindow = 20; menuScrollDelay = 1; @@ -108,6 +110,8 @@ cNopacityConfig::cNopacityConfig() { fontMenuitemChannelSmall = 0; fontMenuitemRecordings = 0; fontMenuitemRecordingsSmall = 0; + fontMenuitemTimers = 0; + fontMenuitemTimersSmall = 0; fontMenuitemDefault = 0; fontDiskUsage = 0; fontDiskUsagePercent = 0; @@ -234,6 +238,7 @@ bool cNopacityConfig::SetupParse(const char *Name, const char *Value) { else if (strcmp(Name, "narrowMainMenu") == 0) narrowMainMenu = atoi(Value); else if (strcmp(Name, "narrowScheduleMenu") == 0) narrowScheduleMenu = atoi(Value); else if (strcmp(Name, "narrowChannelMenu") == 0) narrowChannelMenu = atoi(Value); + else if (strcmp(Name, "narrowTimerMenu") == 0) narrowTimerMenu = atoi(Value); else if (strcmp(Name, "narrowRecordingMenu") == 0) narrowRecordingMenu = atoi(Value); else if (strcmp(Name, "narrowSetupMenu") == 0) narrowSetupMenu = atoi(Value); else if (strcmp(Name, "displayRerunsDetailEPGView") == 0) displayRerunsDetailEPGView = atoi(Value); @@ -244,6 +249,7 @@ bool cNopacityConfig::SetupParse(const char *Name, const char *Value) { else if (strcmp(Name, "menuWidthMain") == 0) menuWidthMain = atoi(Value); else if (strcmp(Name, "menuWidthSchedules") == 0) menuWidthSchedules = atoi(Value); else if (strcmp(Name, "menuWidthChannels") == 0) menuWidthChannels = atoi(Value); + else if (strcmp(Name, "menuWidthTimers") == 0) menuWidthTimers = atoi(Value); else if (strcmp(Name, "menuWidthRecordings") == 0) menuWidthRecordings = atoi(Value); else if (strcmp(Name, "menuWidthRightItems") == 0) menuWidthRightItems = atoi(Value); else if (strcmp(Name, "menuSizeDiskUsage") == 0) menuSizeDiskUsage = atoi(Value); @@ -278,6 +284,8 @@ bool cNopacityConfig::SetupParse(const char *Name, const char *Value) { else if (strcmp(Name, "fontMenuitemChannelSmall") == 0) fontMenuitemChannelSmall = atoi(Value); else if (strcmp(Name, "fontMenuitemRecordings") == 0) fontMenuitemRecordings = atoi(Value); else if (strcmp(Name, "fontMenuitemRecordingsSmall") == 0) fontMenuitemRecordingsSmall = atoi(Value); + else if (strcmp(Name, "fontMenuitemTimers") == 0) fontMenuitemTimers = atoi(Value); + else if (strcmp(Name, "fontMenuitemTimersSmall") == 0) fontMenuitemTimersSmall = 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); |