sanity checks for the timer
[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
8 def InitSetupDevices():
9         config.timezone = ConfigSubsection();
10         config.timezone.val = configElement("config.timezone.val", configSelection, 1, ("GMT", "GMT+1", "GMT+2", "GMT+3", "GMT+4", "GMT+5", "GMT+6", "GMT+7", "GMT+8", "GMT+9") );
11
12         config.rc = ConfigSubsection();
13         config.rc.map = configElement("config.rc.map", configSelection, 0, ("Default", "Classic") );
14
15         config.keyboard = ConfigSubsection();
16         config.keyboard.keymap = configElement("config.keyboard.keymap", configSelection, 1, ("English", "German") );
17
18         config.osd = ConfigSubsection();
19         config.osd.alpha = configElement("config.osd.alpha", ConfigSlider, 0, "");
20         config.osd.bright = configElement("config.osd.bright", ConfigSlider, 5, "");
21         config.osd.contrast = configElement("config.osd.contrast", ConfigSlider, 5, "");
22         config.osd.language = configElement("config.osd.language", configSelection, 0, ("English", "English US") );
23
24         config.parental = ConfigSubsection();
25         config.parental.lock = configElement("config.parental.lock", configSelection, 1, ("Enable", "Disable") );
26         config.parental.setuplock = configElement("config.parental.setuplock", configSelection, 1, ("Enable", "Disable") );
27
28         config.expert = ConfigSubsection();
29         config.expert.splitsize = configElement("config.expert.splitsize", configSelection, 1, ("0.5Gbyte", "1.0 GByte", "1.5 GByte", "2.0 GByte") );
30         config.expert.satpos = configElement("config.expert.satpos", configSelection, 1, ("Enable", "Disable") );
31         config.expert.fastzap = configElement("config.expert.fastzap", configSelection, 0, ("Enable", "Disable") );
32         config.expert.skipconfirm = configElement("config.expert.skipconfirm", configSelection, 1, ("Enable", "Disable") );
33         config.expert.hideerrors = configElement("config.expert.hideerrors", configSelection, 1, ("Enable", "Disable") );
34         config.expert.autoinfo = configElement("config.expert.autoinfo", configSelection, 1, ("Enable", "Disable") );