sugar-toolkit-gtk3/shell/home/HomeView.py

111 lines
3.2 KiB
Python
Raw Normal View History

2006-07-08 11:56:13 +02:00
import gtk
import goocanvas
2006-08-17 12:09:45 +02:00
import wnck
from sugar.canvas.IconItem import IconItem
from sugar.canvas.IconItem import IconColor
2006-08-17 11:47:41 +02:00
from sugar.canvas.DonutItem import DonutItem
2006-08-17 13:16:48 +02:00
from sugar.canvas.DonutItem import PieceItem
from sugar.canvas.DonutItem import PieceIcon
2006-08-17 11:47:41 +02:00
from Theme import Theme
2006-08-17 11:47:41 +02:00
class TasksItem(DonutItem):
def __init__(self, shell):
2006-08-17 13:16:48 +02:00
DonutItem.__init__(self, 250)
2006-08-17 12:09:45 +02:00
self._items = {}
shell.connect('activity_opened', self.__activity_opened_cb)
shell.connect('activity_closed', self.__activity_closed_cb)
2006-08-17 12:09:45 +02:00
def __activity_opened_cb(self, shell, activity):
self._add(activity)
2006-08-17 12:09:45 +02:00
def __activity_closed_cb(self, shell, activity):
self._remove(activity)
2006-08-17 12:09:45 +02:00
def _remove(self, activity):
item = self._items[activity.get_id()]
self.remove_piece(item)
del self._items[activity.get_id()]
2006-08-17 12:09:45 +02:00
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
2006-08-16 22:01:43 +02:00
class Background(goocanvas.Group):
def __init__(self):
goocanvas.Group.__init__(self)
self._theme = Theme()
self._theme.connect("theme-changed", self.__theme_changed_cb)
2006-08-16 22:01:43 +02:00
color = self._theme.get_home_colors()[1]
2006-08-23 14:06:45 +02:00
self._friends_rect = goocanvas.Rect(width=1200, height=900,
fill_color=color)
2006-08-23 14:06:45 +02:00
self.add_child(self._friends_rect)
color = self._theme.get_home_colors()[0]
2006-08-23 14:06:45 +02:00
self._home_rect = goocanvas.Rect(x=100, y=100, width=1000, height=700,
line_width=0, fill_color=color,
radius_x=30, radius_y=30)
2006-08-23 14:06:45 +02:00
self.add_child(self._home_rect)
2006-08-16 22:01:43 +02:00
item = goocanvas.Text(text="My Activities",
2006-08-23 11:52:18 +02:00
x=12, y=12, fill_color="black",
2006-08-16 22:01:43 +02:00
font="Sans 21")
self.add_child(item)
def __theme_changed_cb(self, theme, colors):
color = self._theme.get_home_colors()[0]
2006-08-23 14:06:45 +02:00
self._home_rect.set_property("fill-color", color)
color = self._theme.get_home_colors()[1]
2006-08-23 14:06:45 +02:00
self._friends_rect.set_property("fill-color", color)
class Model(goocanvas.CanvasModelSimple):
def __init__(self, shell):
goocanvas.CanvasModelSimple.__init__(self)
root = self.get_root_item()
2006-08-16 22:01:43 +02:00
background = Background()
root.add_child(background)
tasks = TasksItem(shell)
2006-08-17 11:47:41 +02:00
tasks.translate(600, 450)
root.add_child(tasks)
me = IconItem('stock-buddy', IconColor(), 150)
2006-08-19 13:39:13 +02:00
me.translate(600 - (me.get_property('width') / 2),
450 - (me.get_property('height') / 2))
root.add_child(me)
2006-08-19 01:29:42 +02:00
class HomeView(goocanvas.CanvasView):
2006-07-08 15:47:51 +02:00
def __init__(self, shell):
2006-08-19 01:29:42 +02:00
goocanvas.CanvasView.__init__(self)
self._shell = shell
2006-08-19 01:29:42 +02:00
self.connect("item_view_created", self.__item_view_created_cb)
canvas_model = Model(shell)
2006-08-19 01:29:42 +02:00
self.set_model(canvas_model)
def __item_view_created_cb(self, view, item_view, item):
2006-08-23 11:52:18 +02:00
if isinstance(item, PieceItem) or \
isinstance(item, PieceIcon):
2006-08-17 13:16:48 +02:00
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)
2006-08-17 13:16:48 +02:00
def __task_button_press_cb(self, view, target, event):
activity = view.get_item().get_data('activity')
activity.present()