X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/5e57d6b68efa092a6a85fdee2c6904c6bd473905..d2bea1918fa33f5e92ed75f3f744c119439924bc:/lib/python/Screens/PictureInPicture.py diff --git a/lib/python/Screens/PictureInPicture.py b/lib/python/Screens/PictureInPicture.py index 20cdb236..5c496833 100644 --- a/lib/python/Screens/PictureInPicture.py +++ b/lib/python/Screens/PictureInPicture.py @@ -1,21 +1,41 @@ from Screens.Screen import Screen from enigma import ePoint, eSize, eServiceCenter - from Components.VideoWindow import VideoWindow +from Components.config import config, ConfigPosition + +pip_config_initialized = False class PictureInPicture(Screen): def __init__(self, session): + global pip_config_initialized Screen.__init__(self, session) - self["video"] = VideoWindow() self.currentService = None + if not pip_config_initialized: + config.av.pip = ConfigPosition(default=[-1, -1, -1, -1], args = (719, 567, 720, 568)) + pip_config_initialized = True + self.onLayoutFinish.append(self.LayoutFinished) + + def LayoutFinished(self): + self.onLayoutFinish.remove(self.LayoutFinished) + x = config.av.pip.value[0] + y = config.av.pip.value[1] + w = config.av.pip.value[2] + h = config.av.pip.value[3] + if x != -1 and y != -1 and w != -1 and h != -1: + self.move(x, y) + self.resize(w, h) def move(self, x, y): - print "moving pip to", str(x) + ":" + str(y) + config.av.pip.value[0] = x + config.av.pip.value[1] = y + config.av.pip.save() self.instance.move(ePoint(x, y)) def resize(self, w, h): - print "resizing pip to", str(w) + "x" + str(h) + config.av.pip.value[2] = w + config.av.pip.value[3] = h + config.av.pip.save() self.instance.resize(eSize(*(w, h))) self["video"].instance.resize(eSize(*(w, h)))