From 2cacfb04d1bff4047534b63618c3744346f65fd5 Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Mon, 3 Apr 2006 08:12:07 +0000 Subject: faster loading of movie list (done by initially not loading the file length and updating the file lengths after displaying the list in the background (timer driven)) --- lib/python/Screens/MovieSelection.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'lib/python/Screens') diff --git a/lib/python/Screens/MovieSelection.py b/lib/python/Screens/MovieSelection.py index 17da5ff3..91620ea2 100644 --- a/lib/python/Screens/MovieSelection.py +++ b/lib/python/Screens/MovieSelection.py @@ -77,6 +77,7 @@ class MovieSelection(Screen): self["waitingtext"] = Label(_("Please wait... Loading list...")) self["list"] = MovieList(None) + self.list = self["list"] self.selectedmovie = selectedmovie #self["okbutton"] = Button("ok", [self.channelSelected]) @@ -91,6 +92,9 @@ class MovieSelection(Screen): self["actions"].csel = self self.onShown.append(self.go) + self.lengthTimer = eTimer() + self.lengthTimer.timeout.get().append(self.updateLengthData) + def go(self): # ouch. this should redraw our "Please wait..."-text. # this is of course not the right way to do this. @@ -103,6 +107,16 @@ class MovieSelection(Screen): self["waitingtext"].instance.hide() self["freeDiskSpace"].update() + + self.lengthTimer.start(10, 1) + self.lengthPosition = 0 + self.lengthLength = len(self["list"]) + + def updateLengthData(self): + self.list.updateLengthOfIndex(self.lengthPosition) + self.lengthPosition += 1 + if self.lengthPosition < self.lengthLength: + self.lengthTimer.start(10, 1) def moveTo(self): self["list"].moveTo(self.selectedmovie) -- cgit v1.2.3