use c++-fallback for lack of tzset-python-function
[enigma2.git] / lib / python / Components / SetupDevices.py
1 #import os
2 from config import config                               #global config instance
3 from config import configElement
4 from config import ConfigSubsection
5 from config import ConfigSlider
6 from config import configSelection
7 from config import configText
8 from Components.Timezones import timezones
9
10 def InitSetupDevices():
11         
12         def timezoneNotifier(configElement):
13                 timezones.activateTimezone(configElement.value)
14                 
15         config.timezone = ConfigSubsection();
16         config.timezone.val = configElement("config.timezone.val", configSelection, timezones.getDefaultTimezone(), timezones.getTimezoneList());
17         config.timezone.val.addNotifier(timezoneNotifier)
18
19         config.rc = ConfigSubsection();
20         config.rc.map = configElement("config.rc.map", configSelection, 0, ("Default", "Classic") );
21
22         config.keyboard = ConfigSubsection();
23         config.keyboard.keymap = configElement("config.keyboard.keymap", configSelection, 1, ("English", "German") );
24
25         config.osd = ConfigSubsection();
26         config.osd.alpha = configElement("config.osd.alpha", ConfigSlider, 0, "");
27         config.osd.bright = configElement("config.osd.bright", ConfigSlider, 5, "");
28         config.osd.contrast = configElement("config.osd.contrast", ConfigSlider, 5, "");
29         config.osd.language = configElement("config.osd.language", configSelection, 0, ("English", "English US") );
30
31         config.parental = ConfigSubsection();
32         config.parental.lock = configElement("config.parental.lock", configSelection, 1, ("Enable", "Disable") );
33         config.parental.setuplock = configElement("config.parental.setuplock", configSelection, 1, ("Enable", "Disable") );
34
35         config.expert = ConfigSubsection();
36         config.expert.splitsize = configElement("config.expert.splitsize", configSelection, 1, ("0.5Gbyte", "1.0 GByte", "1.5 GByte", "2.0 GByte") );
37         config.expert.satpos = configElement("config.expert.satpos", configSelection, 1, ("Enable", "Disable") );
38         config.expert.fastzap = configElement("config.expert.fastzap", configSelection, 0, ("Enable", "Disable") );
39         config.expert.skipconfirm = configElement("config.expert.skipconfirm", configSelection, 1, ("Enable", "Disable") );
40         config.expert.hideerrors = configElement("config.expert.hideerrors", configSelection, 1, ("Enable", "Disable") );
41         config.expert.autoinfo = configElement("config.expert.autoinfo", configSelection, 1, ("Enable", "Disable") );