aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/TimerEntry.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2008-02-20 00:36:00 +0000
committerFelix Domke <tmbinc@elitedvb.net>2008-02-20 00:36:00 +0000
commitba4c219da50c06c732ea9899d2b4e3679066aecc (patch)
tree5bc74058ddc64d1fd19be80c367be9383265c2c5 /lib/python/Screens/TimerEntry.py
parent82ea06047ff217e5f60959f9982ce0337483e5a5 (diff)
downloadenigma2-ba4c219da50c06c732ea9899d2b4e3679066aecc.tar.gz
enigma2-ba4c219da50c06c732ea9899d2b4e3679066aecc.zip
timer_select.patch by Moritz Venn, with minor fixes
Diffstat (limited to 'lib/python/Screens/TimerEntry.py')
-rw-r--r--lib/python/Screens/TimerEntry.py45
1 files changed, 42 insertions, 3 deletions
diff --git a/lib/python/Screens/TimerEntry.py b/lib/python/Screens/TimerEntry.py
index 3541d36d..d11c5c2a 100644
--- a/lib/python/Screens/TimerEntry.py
+++ b/lib/python/Screens/TimerEntry.py
@@ -1,7 +1,8 @@
from Screen import Screen
+from LocationBox import LocationBox
import ChannelSelection
from ServiceReference import ServiceReference
-from Components.config import ConfigSelection, ConfigText, ConfigSubList, ConfigDateTime, ConfigClock, ConfigYesNo, getConfigListEntry
+from Components.config import config, ConfigSelection, ConfigText, ConfigSubList, ConfigDateTime, ConfigClock, ConfigYesNo, getConfigListEntry
from Components.ActionMap import NumberActionMap
from Components.ConfigList import ConfigListScreen
from Components.MenuList import MenuList
@@ -25,22 +26,32 @@ class TimerEntry(Screen, ConfigListScreen):
self["oktext"] = Label(_("OK"))
self["canceltext"] = Label(_("Cancel"))
+ self["locationtext"] = Label(_("Choose Location"))
self["ok"] = Pixmap()
self["cancel"] = Pixmap()
+ self["location"] = Pixmap()
self.createConfig()
- self["actions"] = NumberActionMap(["SetupActions"],
+ self["actions"] = NumberActionMap(["SetupActions", "ColorActions"],
{
"ok": self.keySelect,
"save": self.keyGo,
"cancel": self.keyCancel,
+ "yellow": self.selectPath,
}, -2)
self.list = []
ConfigListScreen.__init__(self, self.list, session = session)
self.createSetup("config")
+ self.onLayoutFinish.append(self.handleLocation)
+
+ def handleLocation(self):
+ if config.usage.setup_level.index < 2: # -expert
+ self["locationtext"].hide()
+ self["location"].hide()
+
def createConfig(self):
justplay = self.timer.justplay
@@ -95,6 +106,8 @@ class TimerEntry(Screen, ConfigListScreen):
self.timerentry_enddate = ConfigDateTime(default = self.timer.end, formatstring = _("%d.%B %Y"), increment = 86400)
self.timerentry_endtime = ConfigClock(default = self.timer.end)
+ self.timerentry_dirname = ConfigSelection(choices = [self.timer.dirname or "/hdd/movie/"])
+
self.timerentry_repeatedbegindate = ConfigDateTime(default = self.timer.repeatedbegindate, formatstring = _("%d.%B %Y"), increment = 86400)
self.timerentry_weekday = ConfigSelection(default = weekday_table[weekday], choices = [("mon",_("Monday")), ("tue", _("Tuesday")), ("wed",_("Wednesday")), ("thu", _("Thursday")), ("fri", _("Friday")), ("sat", _("Saturday")), ("sun", _("Sunday"))])
@@ -177,6 +190,8 @@ class TimerEntry(Screen, ConfigListScreen):
self.list.append(getConfigListEntry(_("EndTime"), self.timerentry_endtime))
if self.timerentry_justplay.value != "zap":
+ if config.usage.setup_level.index >= 2: # expert+
+ self.list.append(getConfigListEntry(_("Location"), self.timerentry_dirname))
self.list.append(getConfigListEntry(_("After event"), self.timerentry_afterevent))
self.channelEntry = getConfigListEntry(_("Channel"), self.timerentry_service)
@@ -255,6 +270,12 @@ class TimerEntry(Screen, ConfigListScreen):
self.timer.afterEvent = {"nothing": AFTEREVENT.NONE, "deepstandby": AFTEREVENT.DEEPSTANDBY, "standby": AFTEREVENT.STANDBY}[self.timerentry_afterevent.value]
self.timer.service_ref = self.timerentry_service_ref
+ # TODO: fix that thing with none (this might as well just be ignored)
+ if self.timerentry_dirname.value == "/hdd/movie/":
+ self.timer.dirname = None
+ else:
+ self.timer.dirname = self.timerentry_dirname.value
+
if self.timerentry_type.value == "once":
self.timer.begin, self.timer.end = self.getBeginEnd()
if self.timerentry_type.value == "repeated":
@@ -313,7 +334,25 @@ class TimerEntry(Screen, ConfigListScreen):
def keyCancel(self):
self.close((False,))
-
+
+ def selectPath(self):
+ if config.usage.setup_level.index < 2: #-expert
+ return
+ self.session.openWithCallback(
+ self.pathSelected,
+ LocationBox,
+ text = _("Choose target folder"),
+ filename = "",
+ currDir = None, # TODO: fix FileList to correctly determine mountpoint
+ minFree = 100
+ )
+
+ def pathSelected(self, res):
+ if res is not None:
+ self.timerentry_dirname.choices.append(res)
+ self.timerentry_dirname.description[res] = res
+ self.timerentry_dirname.value = res
+
class TimerLog(Screen):
def __init__(self, session, timer):
Screen.__init__(self, session)