aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/Extensions/DVDBurn/TitleCutter.py
diff options
context:
space:
mode:
authorFraxinas <andreas.frisch@multimedia-labs.de>2010-03-30 15:37:07 +0200
committerFraxinas <andreas.frisch@multimedia-labs.de>2010-03-30 15:37:07 +0200
commitaa7e54fc4db217a7732f208af6f3e5a2e0bd6773 (patch)
treefff78738cf64ff2cf89b308b9fcadb92357d8a2f /lib/python/Plugins/Extensions/DVDBurn/TitleCutter.py
parentf732c7cb9d7cc9dbce3b83f46e1322a278438620 (diff)
downloadenigma2-aa7e54fc4db217a7732f208af6f3e5a2e0bd6773.tar.gz
enigma2-aa7e54fc4db217a7732f208af6f3e5a2e0bd6773.zip
[DVDBurn] usability improvements: title list layout, bottom info area, consistency of user interface, implement restoring of saved collections from xml (fixes #316)
Diffstat (limited to 'lib/python/Plugins/Extensions/DVDBurn/TitleCutter.py')
-rw-r--r--lib/python/Plugins/Extensions/DVDBurn/TitleCutter.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/python/Plugins/Extensions/DVDBurn/TitleCutter.py b/lib/python/Plugins/Extensions/DVDBurn/TitleCutter.py
index 06ed1bab..a52fad9f 100644
--- a/lib/python/Plugins/Extensions/DVDBurn/TitleCutter.py
+++ b/lib/python/Plugins/Extensions/DVDBurn/TitleCutter.py
@@ -59,8 +59,28 @@ class TitleCutter(CutListEditor):
self.close(self.cut_list[:])
class CutlistReader(TitleCutter):
+ skin = """
+ <screen position="0,0" size="720,576">
+ <eLabel position="0,0" size="720,576" zPosition="1" backgroundColor="#000000" />
+ <widget name="Video" position="0,0" size="100,75" />
+ <widget name="SeekState" position="0,0" />
+ <widget source="cutlist" position="0,0" render="Listbox" >
+ <convert type="TemplatedMultiContent">
+ {"template": [
+ MultiContentEntryText(text = 1),
+ MultiContentEntryText(text = 2)
+ ],
+ "fonts": [gFont("Regular", 18)],
+ "itemHeight": 20
+ }
+ </convert>
+ </widget>
+ <widget name="Timeline" position="0,0" />
+ </screen>"""
+
def __init__(self, session, t):
TitleCutter.__init__(self, session, t)
+ self.skin = CutlistReader.skin
def getPMTInfo(self):
TitleCutter.getPMTInfo(self)