aboutsummaryrefslogtreecommitdiff
path: root/skin.py
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-11-09 00:13:20 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-11-09 00:13:20 +0000
commit612e765ceb09fce886ffc02120f039f7d880048f (patch)
tree2b0bb67fe3e1a4e81b21b12bd57293caf1038c23 /skin.py
parentbae4b8c8df551c8a32ce9611ad1691ccb405791a (diff)
downloadenigma2-612e765ceb09fce886ffc02120f039f7d880048f.tar.gz
enigma2-612e765ceb09fce886ffc02120f039f7d880048f.zip
add foregroundcolor selected and backgroundcolor selected to local listbox
styles (backgroundColorSelected, foregroundColorSelected in skin) add EntryForegroundColorSelected support to GraphMultiEPG add possibility to set selected foregroundcolor for listboxmulticontent entries
Diffstat (limited to 'skin.py')
-rw-r--r--skin.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/skin.py b/skin.py
index e5c48371..1f5c9cfc 100644
--- a/skin.py
+++ b/skin.py
@@ -168,8 +168,12 @@ def applySingleAttribute(guiObject, desktop, attrib, value):
print "illegal flag %s!" % f
elif attrib == "backgroundColor":
guiObject.setBackgroundColor(parseColor(value))
+ elif attrib == "backgroundColorSelected":
+ guiObject.setBackgroundColorSelected(parseColor(value))
elif attrib == "foregroundColor":
guiObject.setForegroundColor(parseColor(value))
+ elif attrib == "foregroundColorSelected":
+ guiObject.setForegroundColorSelected(parseColor(value))
elif attrib == "shadowColor":
guiObject.setShadowColor(parseColor(value))
elif attrib == "selectionDisabled":