diff options
| author | Fraxinas <andreas.frisch@multimedia-labs.de> | 2010-03-30 15:37:07 +0200 |
|---|---|---|
| committer | Fraxinas <andreas.frisch@multimedia-labs.de> | 2010-03-31 15:40:10 +0200 |
| commit | 551b34ac91b64f4532d60ce32e53bfeab51f7b60 (patch) | |
| tree | 14445e9a0f266eaae7ef00e19d9a183e53af228d /lib/python/Plugins/Extensions/DVDBurn/TitleCutter.py | |
| parent | 6f13d9bfc265229ae2b5f5b81a9faa1369a03807 (diff) | |
| download | enigma2-551b34ac91b64f4532d60ce32e53bfeab51f7b60.tar.gz enigma2-551b34ac91b64f4532d60ce32e53bfeab51f7b60.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.py | 20 |
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) |
