2006-08-19 11:12:25 +02:00
|
|
|
import random
|
|
|
|
|
2006-10-03 16:31:32 +02:00
|
|
|
import hippo
|
2006-08-19 02:00:04 +02:00
|
|
|
|
2006-10-03 16:31:32 +02:00
|
|
|
from sugar.graphics.spreadlayout import SpreadLayout
|
2006-09-15 13:23:21 +02:00
|
|
|
from view.home.MyIcon import MyIcon
|
2006-09-25 05:15:53 +02:00
|
|
|
from view.BuddyActivityView import BuddyActivityView
|
2006-09-14 15:12:34 +02:00
|
|
|
|
2006-10-03 16:31:32 +02:00
|
|
|
class FriendsBox(hippo.CanvasBox, hippo.CanvasItem):
|
|
|
|
__gtype_name__ = 'SugarFriendsBox'
|
2006-09-19 14:04:11 +02:00
|
|
|
def __init__(self, shell, menu_shell):
|
2006-10-03 16:31:32 +02:00
|
|
|
hippo.CanvasBox.__init__(self, background_color=0xe2e2e2ff)
|
2006-09-14 15:12:34 +02:00
|
|
|
|
2006-09-15 14:24:26 +02:00
|
|
|
self._shell = shell
|
2006-09-19 14:04:11 +02:00
|
|
|
self._menu_shell = menu_shell
|
2006-10-03 16:31:32 +02:00
|
|
|
self._layout = SpreadLayout()
|
2006-09-15 15:28:18 +02:00
|
|
|
self._friends = {}
|
2006-09-14 15:12:34 +02:00
|
|
|
|
2006-10-04 15:26:41 +02:00
|
|
|
self._my_icon = MyIcon(112)
|
|
|
|
self.append(self._my_icon, hippo.PACK_FIXED)
|
2006-09-14 15:12:34 +02:00
|
|
|
|
2006-09-15 14:24:26 +02:00
|
|
|
friends = self._shell.get_model().get_friends()
|
|
|
|
|
|
|
|
for friend in friends:
|
2006-09-14 15:12:34 +02:00
|
|
|
self.add_friend(friend)
|
|
|
|
|
2006-09-15 14:24:26 +02:00
|
|
|
friends.connect('friend-added', self._friend_added_cb)
|
2006-09-15 15:28:18 +02:00
|
|
|
friends.connect('friend-removed', self._friend_removed_cb)
|
2006-09-14 15:12:34 +02:00
|
|
|
|
2006-09-15 15:28:18 +02:00
|
|
|
def add_friend(self, buddy_info):
|
2006-09-25 05:15:53 +02:00
|
|
|
icon = BuddyActivityView(self._shell, self._menu_shell, buddy_info)
|
2006-10-03 16:31:32 +02:00
|
|
|
self.append(icon, hippo.PACK_FIXED)
|
2006-09-14 15:12:34 +02:00
|
|
|
|
2006-09-15 15:28:18 +02:00
|
|
|
self._friends[buddy_info.get_name()] = icon
|
|
|
|
|
|
|
|
def _friend_added_cb(self, data_model, buddy_info):
|
|
|
|
self.add_friend(buddy_info)
|
|
|
|
|
|
|
|
def _friend_removed_cb(self, data_model, name):
|
2006-10-03 16:31:32 +02:00
|
|
|
self.remove(self._friends[name])
|
2006-09-15 15:28:18 +02:00
|
|
|
del self._friends[name]
|
2006-10-03 16:31:32 +02:00
|
|
|
|
|
|
|
def do_allocate(self, width, height):
|
|
|
|
hippo.CanvasBox.do_allocate(self, width, height)
|
2006-10-04 15:26:41 +02:00
|
|
|
|
2006-10-03 16:31:32 +02:00
|
|
|
self._layout.layout(self)
|
2006-10-04 15:26:41 +02:00
|
|
|
|
|
|
|
[icon_width, icon_height] = self._my_icon.get_allocation()
|
|
|
|
self.move(self._my_icon, (width - icon_width) / 2,
|
|
|
|
(height - icon_height) / 2)
|