aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/ConfigList.py
AgeCommit message (Collapse)Author
2009-11-12Components/ConfigList.py: -small fix for global VirtualKeyboard handlingacid-burn
2009-11-10Enigma2-{Wizard.py,Networksetup.py,ConfigList.py,skin_default.xml,NetworkWiz ↵Acid Burn
ard.py}: -add possibility to use the VirtualKeyboard globally with every ConfigText and ConfigPassword ConfigEntry inside ConfigListScreens and WizardScreens. -add possibility to globally move the NumericalHelpInputWindow shown from a ConfigListScreen or a Wizard Screen to a inside the Skin defined Position This currently still needs following Skin entries defined in your Screens Skin: "<widget source="VKeyIcon" render="Pixmap" pixmap="skin_default/buttons/key_text.png" position="10,380" zPosition="10" size="35,25" transparent="1" alphatest="on" > <convert type="ConditionalShowHide" /> </widget>" used for Showing/hiding the TEXT Icon if the VirtualKeyboard is available. and: "<widget name="HelpWindow" pixmap="skin_default/vkey_icon.png" position="160,315" zPosition="1" size="1,1" transparent="1" alphatest="on" />" used to position the NumericalTextInputHelpWIndow inside your Screen as defined by your Screens Skin. also you need currently: from Components.Sources.Boolean import Boolean self["VKeyIcon"] = Boolean(False) self["HelpWindow"] = Pixmap() self["HelpWindow"].hide() inside your Screens sourcecode so we know that these items should be handled globally from Enigma2. - remove own Helpwindow/Vkey handling from NetworkSetup.py - include new VirtualKeyboardhandling inside NetworkWizard This fixes #157
2008-10-03add possibility to set osd visibility (alpha) (just with dm800/8000 with newAndreas Monzner
drivers)
2008-07-09add method saveAll to ConfigListScreenStefan Pluecken
2008-02-14unlink some cyclic dependencys to get garbage collection workingAndreas Monzner
2008-02-14add support for cyclic garbage collection to eTimer and eSocketNotifierAndreas Monzner
class, add simpler method to set a timer callback.. or remove.. instead of timer.timeout.get().append(func).. or .remove(func)... now it is possible to do timer.callback.append(func)... timer.callback.remove(func) (the old method still works..but is now deprecated)
2008-02-11text edit patch #5 by Anders HolstFelix Domke
2007-11-28improve text editing. Patch by Anders HolstFelix Domke
2007-10-28parental control:Stefan Pluecken
automatically wrap to validation pin entry in pin changing dialog when 4 figures were entered leave dialog when 4 figures were entered in the validation pin entry
2007-07-22cleanup some importsAndreas Monzner
2007-03-19network setup rewrite... adds support for multiple devices and an extended ↵Stefan Pluecken
setup via plugins
2006-11-27move keySave, keyCancel into ConfigList.py, use cancel confirm in satsetup ↵Felix Domke
to fix enduser problems ;)
2006-11-18ignore requests to invalidate non-existing entriesFelix Domke
2006-10-20add GetText for showing config entries, update summary values when changedFelix Domke
2006-10-09fixAndreas Monzner
2006-10-09add some timer checksAndreas Monzner
2006-10-07verify that ConfigList entries are ConfigElementsFelix Domke
2006-10-07allow empty ConfigSelection, value will be '' then. remove KEY_TIMEOUT from ↵Felix Domke
ConfigSelection, we don't need it there. Fix empty satlist. orbitial_position will be None if satlist is empty.
2006-10-06correct polarityFelix Domke
2006-10-06remove debug, lower priorityFelix Domke
2006-10-02config rewrite. some extensions still need to be updated.Felix Domke
2006-06-26fix configlist cleanupFelix Domke
2006-05-01simplify GUIcreate/createWidget, fix base class orderFelix Domke
2006-02-27- add positioner plugin (just basic gui atm)Stefan Pluecken
- some changes to ConfigSlider (is now called "configSlider" and has a step width and max value now) - add BER/SNR/AGC display to the manual single transponder scan (just gui, no functionality yet)
2005-11-13add possibility to invalidate configList entrys other than the current oneStefan Pluecken
2005-10-07syncRonny Strutz
2005-08-31add ref to listRonny Strutz
2005-08-17added handleKeyRonny Strutz
2005-07-08 - skins are now loaded first and applied laterFelix Domke
- this allows use skin information to build special eWidgets, depending on skin - add "applet"-feature: code which is executed from skin - example: centering of messagebox
2005-05-05 - split of Components into different filesFelix Domke
- screen (will be split next) must import required modules