diff options
author | louis <louis.braun@gmx.de> | 2013-01-17 16:19:37 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2013-01-17 16:19:37 +0100 |
commit | e895a02d9703c2207d2424d6aaef373042fd0d54 (patch) | |
tree | e702cbc596b4aca86438298b12f2177cc59cdd03 /setup.c | |
parent | c9bc7e07358b9ed9e7c16e48dcb0a6ea4f5d768e (diff) | |
download | vdr-plugin-tvguide-e895a02d9703c2207d2424d6aaef373042fd0d54.tar.gz vdr-plugin-tvguide-e895a02d9703c2207d2424d6aaef373042fd0d54.tar.bz2 |
Added config option style nOpacity for backgrounds and theme nOpacity
Diffstat (limited to 'setup.c')
-rw-r--r-- | setup.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -135,6 +135,9 @@ cMenuSetupScreenLayout::cMenuSetupScreenLayout(cTvguideConfig* data) : cMenuSet hideChannelLogosItems[1] = trVDR("no"); logoExtensionItems[0] = "png"; logoExtensionItems[1] = "jpg"; + blendingMethods[0] = "none"; + blendingMethods[1] = "classic"; + blendingMethods[2] = "nOpacity style"; Set(); } @@ -143,7 +146,7 @@ void cMenuSetupScreenLayout::Set(void) { Clear(); if (themes.NumThemes()) Add(new cMenuEditStraItem(tr("Theme"), &tmpTvguideConfig->themeIndex, themes.NumThemes(), themes.Descriptions())); - Add(new cMenuEditBoolItem(tr("Use color gradients"), &tmpTvguideConfig->useBlending)); + Add(new cMenuEditStraItem(tr("Use color gradients"), &tmpTvguideConfig->useBlending, 3, blendingMethods)); Add(new cMenuEditBoolItem(tr("Rounded Corners"), &tmpTvguideConfig->roundedCorners)); Add(new cMenuEditIntItem(tr("Width of Timeline"), &tmpTvguideConfig->timeColWidth, 50, 300)); Add(new cMenuEditIntItem(tr("Height of Header"), &tmpTvguideConfig->headerHeight, 50, 300)); |