Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/view/frame/notificationtray.py
diff options
context:
space:
mode:
Diffstat (limited to 'shell/view/frame/notificationtray.py')
-rw-r--r--shell/view/frame/notificationtray.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/shell/view/frame/notificationtray.py b/shell/view/frame/notificationtray.py
deleted file mode 100644
index b304868..0000000
--- a/shell/view/frame/notificationtray.py
+++ /dev/null
@@ -1,18 +0,0 @@
-import gtk
-
-from _sugar import TrayManager
-
-class NotificationTray(gtk.HBox):
- def __init__(self):
- gtk.HBox.__init__(self)
-
- self._manager = TrayManager()
- self._manager.connect('tray-icon-added', self._icon_added_cb)
- self._manager.connect('tray-icon-removed', self._icon_removed_cb)
- self._manager.manage_screen(gtk.gdk.screen_get_default())
-
- def _icon_added_cb(self, manager, icon):
- self.pack_start(icon, False)
-
- def _icon_removed_cb(self, manager, icon):
- icon.destroy()