Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/view/frame/overlaybox.py
diff options
context:
space:
mode:
Diffstat (limited to 'shell/view/frame/overlaybox.py')
-rw-r--r--shell/view/frame/overlaybox.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/shell/view/frame/overlaybox.py b/shell/view/frame/overlaybox.py
new file mode 100644
index 0000000..eaa1e5d
--- /dev/null
+++ b/shell/view/frame/overlaybox.py
@@ -0,0 +1,18 @@
+import hippo
+
+from sugar.graphics import style
+from sugar.graphics.canvasicon import CanvasIcon
+
+class OverlayBox(hippo.CanvasBox):
+ def __init__(self, shell):
+ hippo.CanvasBox.__init__(self, orientation=hippo.ORIENTATION_HORIZONTAL)
+
+ self._shell = shell
+
+ icon = CanvasIcon(icon_name='stock-chat')
+ style.apply_stylesheet(icon, 'frame.OverlayIcon')
+ icon.connect('activated', self._overlay_clicked_cb)
+ self.append(icon)
+
+ def _overlay_clicked_cb(self, item):
+ self._shell.toggle_chat_visibility()