1 from Components.Harddisk import harddiskmanager
2 from config import ConfigSubsection, ConfigYesNo, config, ConfigSelection, ConfigText, ConfigNumber, ConfigSet, ConfigLocations
3 from enigma import Misc_Options, setTunerTypePriorityOrder;
4 from SystemInfo import SystemInfo
8 config.usage = ConfigSubsection();
9 config.usage.showdish = ConfigYesNo(default = False)
10 config.usage.multibouquet = ConfigYesNo(default = False)
11 config.usage.quickzap_bouquet_change = ConfigYesNo(default = False)
12 config.usage.e1like_radio_mode = ConfigYesNo(default = False)
13 config.usage.infobar_timeout = ConfigSelection(default = "5", choices = [
14 ("0", _("no timeout")), ("1", "1 " + _("second")), ("2", "2 " + _("seconds")), ("3", "3 " + _("seconds")),
15 ("4", "4 " + _("seconds")), ("5", "5 " + _("seconds")), ("6", "6 " + _("seconds")), ("7", "7 " + _("seconds")),
16 ("8", "8 " + _("seconds")), ("9", "9 " + _("seconds")), ("10", "10 " + _("seconds"))])
17 config.usage.show_infobar_on_zap = ConfigYesNo(default = True)
18 config.usage.show_infobar_on_skip = ConfigYesNo(default = True)
19 config.usage.show_infobar_on_event_change = ConfigYesNo(default = True)
20 config.usage.hdd_standby = ConfigSelection(default = "120", choices = [
21 ("0", _("no standby")), ("2", "10 " + _("seconds")), ("6", "30 " + _("seconds")),
22 ("12", "1 " + _("minute")), ("24", "2 " + _("minutes")),
23 ("60", "5 " + _("minutes")), ("120", "10 " + _("minutes")), ("240", "20 " + _("minutes")),
24 ("241", "30 " + _("minutes")), ("242", "1 " + _("hour")), ("244", "2 " + _("hours")),
25 ("248", "4 " + _("hours")) ])
26 config.usage.output_12V = ConfigSelection(default = "do not change", choices = [
27 ("do not change", _("do not change")), ("off", _("off")), ("on", _("on")) ])
29 config.usage.pip_zero_button = ConfigSelection(default = "standard", choices = [
30 ("standard", _("standard")), ("swap", _("swap PiP and main picture")),
31 ("swapstop", _("move PiP to main picture")), ("stop", _("stop PiP")) ])
33 config.usage.allowed_timeshift_paths = ConfigLocations(default = ["/media/hdd/"])
34 config.usage.timeshift_path = ConfigText(default = "/media/hdd")
36 config.usage.on_movie_start = ConfigSelection(default = "ask", choices = [
37 ("ask", _("Ask user")), ("resume", _("Resume from last position")), ("beginning", _("Start from the beginning")) ])
38 config.usage.on_movie_stop = ConfigSelection(default = "ask", choices = [
39 ("ask", _("Ask user")), ("movielist", _("Return to movie list")), ("quit", _("Return to previous service")) ])
40 config.usage.on_movie_eof = ConfigSelection(default = "ask", choices = [
41 ("ask", _("Ask user")), ("movielist", _("Return to movie list")), ("quit", _("Return to previous service")), ("pause", _("Pause movie at end")) ])
43 config.usage.setup_level = ConfigSelection(default = "intermediate", choices = [
44 ("simple", _("Simple")),
45 ("intermediate", _("Intermediate")),
46 ("expert", _("Expert")) ])
48 config.usage.on_long_powerpress = ConfigSelection(default = "show_menu", choices = [
49 ("show_menu", _("show shutdown menu")),
50 ("shutdown", _("immediate shutdown")) ] )
52 config.usage.alternatives_priority = ConfigSelection(default = "0", choices = [
58 ("5", "DVB-T/-S/-C") ])
60 config.usage.blinking_display_clock_during_recording = ConfigYesNo(default = False)
61 config.usage.load_length_of_movies_in_moviellist = ConfigYesNo(default = True)
63 def TunerTypePriorityOrderChanged(configElement):
64 setTunerTypePriorityOrder(int(configElement.value))
65 config.usage.alternatives_priority.addNotifier(TunerTypePriorityOrderChanged)
67 def setHDDStandby(configElement):
68 for hdd in harddiskmanager.HDDList():
69 os.system("hdparm -S%s %s" % (configElement.value, hdd[1].getDeviceName()))
70 config.usage.hdd_standby.addNotifier(setHDDStandby)
72 def set12VOutput(configElement):
73 if configElement.value == "on":
74 Misc_Options.getInstance().set_12V_output(1)
75 elif configElement.value == "off":
76 Misc_Options.getInstance().set_12V_output(0)
77 config.usage.output_12V.addNotifier(set12VOutput)
79 SystemInfo["12V_Output"] = Misc_Options.getInstance().detected_12V_output()
81 config.usage.keymap = ConfigText(default = "/usr/share/enigma2/keymap.xml")
83 config.seek = ConfigSubsection()
84 config.seek.selfdefined_13 = ConfigNumber(default=15)
85 config.seek.selfdefined_46 = ConfigNumber(default=60)
86 config.seek.selfdefined_79 = ConfigNumber(default=300)
88 config.seek.speeds_forward = ConfigSet(default=[2, 4, 8, 16, 32, 64, 128], choices=[2, 4, 6, 8, 12, 16, 24, 32, 48, 64, 96, 128])
89 config.seek.speeds_backward = ConfigSet(default=[8, 16, 32, 64, 128], choices=[1, 2, 4, 6, 8, 12, 16, 24, 32, 48, 64, 96, 128])
90 config.seek.speeds_slowmotion = ConfigSet(default=[2, 4, 8], choices=[2, 4, 6, 8, 12, 16, 25])
92 config.seek.enter_forward = ConfigSelection(default = "2", choices = ["2"])
93 config.seek.enter_backward = ConfigSelection(default = "2", choices = ["2"])
94 config.seek.stepwise_minspeed = ConfigSelection(default = "16", choices = ["Never", "2", "4", "6", "8", "12", "16", "24", "32", "48", "64", "96", "128"])
95 config.seek.stepwise_repeat = ConfigSelection(default = "3", choices = ["2", "3", "4", "5", "6"])
97 config.seek.on_pause = ConfigSelection(default = "play", choices = [
99 ("step", _("Singlestep (GOP)")),
100 ("last", _("Last speed")) ])
102 def updateEnterForward(configElement):
103 if not configElement.value:
104 configElement.value = [2]
105 updateChoices(config.seek.enter_forward, configElement.value)
107 config.seek.speeds_forward.addNotifier(updateEnterForward)
109 def updateEnterBackward(configElement):
110 if not configElement.value:
111 configElement.value = [2]
112 updateChoices(config.seek.enter_backward, configElement.value)
114 config.seek.speeds_backward.addNotifier(updateEnterBackward)
116 def updateChoices(sel, choices):
120 if not val in choices:
127 sel.setChoices(map(str, choices), defval)