Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/jukeboxactivity.py
diff options
context:
space:
mode:
authorKushal Das <kushal@fedoraproject.org>2008-10-01 18:33:27 (GMT)
committer Kushal Das <kushal@fedoraproject.org>2008-10-01 18:33:27 (GMT)
commit707573d4e71bf02eedeaa6465ebf3b0322014d18 (patch)
tree900eef50edb06d64689af1c183d0053a465417bf /jukeboxactivity.py
parent42599035387d76c980d2127522c7c08a73a7e9c8 (diff)
Full screen button added , working :)
Diffstat (limited to 'jukeboxactivity.py')
-rwxr-xr-xjukeboxactivity.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/jukeboxactivity.py b/jukeboxactivity.py
index 34a78ab..4a98e4f 100755
--- a/jukeboxactivity.py
+++ b/jukeboxactivity.py
@@ -59,6 +59,8 @@ class JukeboxActivity(activity.Activity):
toolbar.show()
toolbox.show()
+ self.toolbar.connect('go-fullscreen', self.__go_fullscreen_cb)
+
self.connect("shared", self._shared_cb)
if handle.uri:
@@ -236,6 +238,9 @@ class JukeboxActivity(activity.Activity):
return True
+ def __go_fullscreen_cb(self, toolbar):
+ self.fullscreen()
+
class GstPlayer(gobject.GObject):
__gsignals__ = {
'error': (gobject.SIGNAL_RUN_FIRST, None, [str, str]),