X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/c06f79c0451ca844f89809058a2767a1a319b137..bbfcb7ea1f040d030277e2b6f2efa9ea0967bf2b:/lib/python/Components/Lcd.py diff --git a/lib/python/Components/Lcd.py b/lib/python/Components/Lcd.py index 77975f4d..0e501237 100644 --- a/lib/python/Components/Lcd.py +++ b/lib/python/Components/Lcd.py @@ -1,50 +1,71 @@ -from config import config #global config instance -from config import ConfigSlider -from config import configSelection -from config import ConfigSubsection -from config import configElement - -from enigma import * +from config import config, ConfigSubsection, ConfigSlider, ConfigYesNo, ConfigNothing +from enigma import eDBoxLCD +from Components.SystemInfo import SystemInfo class LCD: def __init__(self): pass def setBright(self, value): - eDBoxLCD.getInstance().setLCDBrightness(value * 20) - pass + value *= 255 + value /= 10 + if value > 255: + value = 255 + eDBoxLCD.getInstance().setLCDBrightness(value) def setContrast(self, value): + value *= 63 + value /= 20 + if value > 63: + value = 63 eDBoxLCD.getInstance().setLCDContrast(value) - pass def setInverted(self, value): if value: value = 255 - eDBoxLCD.getInstance().setInverted(1 - value) - pass + eDBoxLCD.getInstance().setInverted(value) + + def isOled(self): + return eDBoxLCD.getInstance().isOled() def InitLcd(): + detected = eDBoxLCD.getInstance().detected() + SystemInfo["Display"] = detected config.lcd = ConfigSubsection(); - config.lcd.bright = configElement("config.lcd.bright", ConfigSlider, 10, "") - config.lcd.contrast = configElement("config.lcd.contrast", ConfigSlider, 10, "") - config.lcd.standby = configElement("config.lcd.standby", ConfigSlider, 0, "") - config.lcd.invert = configElement("config.lcd.invert", configSelection, 0, (("enable", _("Enable")), ("disable", _("Disable")))) + if detected: + def setLCDbright(configElement): + ilcd.setBright(configElement.value); + + def setLCDcontrast(configElement): + ilcd.setContrast(configElement.value); - ilcd = LCD() + def setLCDinverted(configElement): + ilcd.setInverted(configElement.value); - def setLCDbright(configElement): - ilcd.setBright(configElement.value); + ilcd = LCD() - def setLCDcontrast(configElement): - ilcd.setContrast(configElement.value); + config.lcd.standby = ConfigSlider(default=0, limits=(0, 10)) + config.lcd.standby.addNotifier(setLCDbright); + config.lcd.standby.apply = lambda : setLCDbright(config.lcd.standby) - def setLCDinverted(configElement): - ilcd.setInverted(configElement.value); + config.lcd.bright = ConfigSlider(default=5, limits=(0, 10)) + config.lcd.bright.addNotifier(setLCDbright); + config.lcd.bright.apply = lambda : setLCDbright(config.lcd.bright) + config.lcd.bright.callNotifiersOnSaveAndCancel = True - config.lcd.bright.addNotifier(setLCDbright); - config.lcd.contrast.addNotifier(setLCDcontrast); - config.lcd.invert.addNotifier(setLCDinverted); - + if not ilcd.isOled(): + config.lcd.contrast = ConfigSlider(default=5, limits=(0, 20)) + config.lcd.contrast.addNotifier(setLCDcontrast); + else: + config.lcd.contrast = ConfigNothing() - \ No newline at end of file + config.lcd.invert = ConfigYesNo(default=False) + config.lcd.invert.addNotifier(setLCDinverted); + else: + def doNothing(): + pass + config.lcd.contrast = ConfigNothing() + config.lcd.bright = ConfigNothing() + config.lcd.standby = ConfigNothing() + config.lcd.bright.apply = lambda : doNothing() + config.lcd.standby.apply = lambda : doNothing()