Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/view/home/HomeBox.py
diff options
context:
space:
mode:
Diffstat (limited to 'shell/view/home/HomeBox.py')
-rw-r--r--shell/view/home/HomeBox.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/shell/view/home/HomeBox.py b/shell/view/home/HomeBox.py
new file mode 100644
index 0000000..e4409fd
--- /dev/null
+++ b/shell/view/home/HomeBox.py
@@ -0,0 +1,11 @@
+import hippo
+
+from view.home.activitiesdonut import ActivitiesDonut
+
+class HomeBox(hippo.CanvasBox):
+ def __init__(self, shell):
+ hippo.CanvasBox.__init__(self, background_color=0xe2e2e2ff,
+ yalign=2)
+
+ donut = ActivitiesDonut(shell, box_width=300, box_height=300)
+ self.append(donut)