a3f62ee68f
(Still not fully hooked up to buddies)
136 lines
3.7 KiB
Python
136 lines
3.7 KiB
Python
import gtk
|
|
import goocanvas
|
|
import wnck
|
|
|
|
from sugar.canvas.IconItem import IconItem
|
|
from sugar.canvas.IconItem import IconColor
|
|
from sugar.canvas.DonutItem import DonutItem
|
|
from sugar.canvas.DonutItem import PieceItem
|
|
from sugar.canvas.DonutItem import PieceIcon
|
|
|
|
class TasksItem(DonutItem):
|
|
def __init__(self, shell):
|
|
DonutItem.__init__(self, 250)
|
|
|
|
self._items = {}
|
|
|
|
shell.connect('activity_opened', self.__activity_opened_cb)
|
|
shell.connect('activity_closed', self.__activity_closed_cb)
|
|
|
|
def __activity_opened_cb(self, shell, activity):
|
|
self._add(activity)
|
|
|
|
def __activity_closed_cb(self, shell, activity):
|
|
self._remove(activity)
|
|
|
|
def _remove(self, activity):
|
|
item = self._items[activity.get_id()]
|
|
self.remove_piece(item)
|
|
del self._items[activity.get_id()]
|
|
|
|
def _add(self, activity):
|
|
icon_name = activity.get_icon_name()
|
|
item = self.add_piece(100 / 8, icon_name, IconColor())
|
|
|
|
# FIXME This really sucks. Fix goocanvas event handling.
|
|
item.set_data('activity', activity)
|
|
item.get_icon().set_data('activity', activity)
|
|
|
|
self._items[activity.get_id()] = item
|
|
|
|
class ActivityItem(IconItem):
|
|
ICON_SIZE = 30
|
|
|
|
def __init__(self, activity):
|
|
IconItem.__init__(self, activity.get_icon(),
|
|
IconColor('white'),
|
|
ActivityItem.ICON_SIZE)
|
|
self._activity = activity
|
|
|
|
def get_activity_id(self):
|
|
return self._activity.get_id()
|
|
|
|
class ActivityBar(goocanvas.Group):
|
|
def __init__(self, shell):
|
|
goocanvas.Group.__init__(self)
|
|
|
|
self._shell = shell
|
|
|
|
registry = shell.get_registry()
|
|
for activity in registry.list_activities():
|
|
if activity.get_show_launcher():
|
|
self.add_activity(activity)
|
|
|
|
def add_activity(self, activity):
|
|
item = ActivityItem(activity)
|
|
x = (ActivityItem.ICON_SIZE + 6) * self.get_n_children()
|
|
item.set_property('x', x)
|
|
self.add_child(item)
|
|
|
|
class Background(goocanvas.Group):
|
|
def __init__(self):
|
|
goocanvas.Group.__init__(self)
|
|
|
|
item = goocanvas.Rect(width=1200, height=900,
|
|
fill_color="#4f4f4f")
|
|
self.add_child(item)
|
|
|
|
item = goocanvas.Rect(x=50, y=50, width=1100, height=800,
|
|
line_width=0, fill_color="#d8d8d8",
|
|
radius_x=30, radius_y=30)
|
|
self.add_child(item)
|
|
|
|
item = goocanvas.Text(text="My Activities",
|
|
x=60, y=10, fill_color="white",
|
|
font="Sans 21")
|
|
self.add_child(item)
|
|
|
|
class Model(goocanvas.CanvasModelSimple):
|
|
def __init__(self, shell):
|
|
goocanvas.CanvasModelSimple.__init__(self)
|
|
|
|
root = self.get_root_item()
|
|
|
|
background = Background()
|
|
root.add_child(background)
|
|
|
|
activity_bar = ActivityBar(shell)
|
|
activity_bar.translate(50, 860)
|
|
root.add_child(activity_bar)
|
|
|
|
tasks = TasksItem(shell)
|
|
tasks.translate(600, 450)
|
|
root.add_child(tasks)
|
|
|
|
me = IconItem('stock-buddy', IconColor(), 150)
|
|
me.translate(600 - (me.get_property('width') / 2),
|
|
450 - (me.get_property('height') / 2))
|
|
root.add_child(me)
|
|
|
|
class HomeView(goocanvas.CanvasView):
|
|
def __init__(self, shell):
|
|
goocanvas.CanvasView.__init__(self)
|
|
self._shell = shell
|
|
|
|
self.connect("item_view_created", self.__item_view_created_cb)
|
|
|
|
canvas_model = Model(shell)
|
|
self.set_model(canvas_model)
|
|
|
|
def __item_view_created_cb(self, view, item_view, item):
|
|
if isinstance(item, ActivityItem):
|
|
item_view.connect("button_press_event",
|
|
self.__activity_button_press_cb,
|
|
item.get_activity_id())
|
|
elif isinstance(item, PieceItem) or \
|
|
isinstance(item, PieceIcon):
|
|
item_view.connect("button_press_event",
|
|
self.__task_button_press_cb)
|
|
|
|
def __activity_button_press_cb(self, view, target, event, activity_id):
|
|
self._shell.start_activity(activity_id)
|
|
|
|
def __task_button_press_cb(self, view, target, event):
|
|
activity = view.get_item().get_data('activity')
|
|
activity.present()
|