2006-08-19 11:12:25 +02:00
|
|
|
import random
|
|
|
|
|
2006-08-19 02:00:04 +02:00
|
|
|
import goocanvas
|
|
|
|
|
2006-08-19 11:12:25 +02:00
|
|
|
from sugar.canvas.IconItem import IconItem
|
2006-09-09 02:34:47 +02:00
|
|
|
from home.IconLayout import IconLayout
|
|
|
|
from home.MyIcon import MyIcon
|
2006-08-23 14:06:45 +02:00
|
|
|
|
2006-08-26 14:59:19 +02:00
|
|
|
class FriendIcon(IconItem):
|
|
|
|
def __init__(self, friend):
|
2006-08-28 12:44:46 +02:00
|
|
|
IconItem.__init__(self, icon_name='stock-buddy',
|
2006-08-29 16:07:23 +02:00
|
|
|
color=friend.get_color(), size=96)
|
2006-08-26 14:59:19 +02:00
|
|
|
self._friend = friend
|
|
|
|
|
|
|
|
def get_friend(self):
|
|
|
|
return self._friend
|
|
|
|
|
2006-08-29 11:48:20 +02:00
|
|
|
class FriendsGroup(goocanvas.Group):
|
2006-09-09 02:34:47 +02:00
|
|
|
def __init__(self, shell, friends):
|
2006-08-29 11:48:20 +02:00
|
|
|
goocanvas.Group.__init__(self)
|
2006-08-26 14:59:19 +02:00
|
|
|
|
2006-09-04 14:30:44 +02:00
|
|
|
self._shell = shell
|
2006-09-09 02:34:47 +02:00
|
|
|
self._icon_layout = IconLayout(1200, 900)
|
2006-08-30 11:46:14 +02:00
|
|
|
self._friends = friends
|
2006-08-29 16:07:23 +02:00
|
|
|
|
2006-09-09 02:34:47 +02:00
|
|
|
me = MyIcon(100)
|
|
|
|
me.translate(600 - (me.get_property('size') / 2),
|
|
|
|
450 - (me.get_property('size') / 2))
|
|
|
|
self.add_child(me)
|
|
|
|
|
2006-08-30 12:22:01 +02:00
|
|
|
for friend in self._friends:
|
|
|
|
self.add_friend(friend)
|
2006-08-19 11:12:25 +02:00
|
|
|
|
2006-08-30 12:22:01 +02:00
|
|
|
friends.connect('friend-added', self.__friend_added_cb)
|
2006-08-19 11:12:25 +02:00
|
|
|
|
2006-09-04 14:30:44 +02:00
|
|
|
def __friend_clicked_cb(self, icon):
|
|
|
|
activity = self._shell.get_current_activity()
|
|
|
|
buddy = icon.get_friend().get_buddy()
|
|
|
|
if buddy != None:
|
|
|
|
activity.invite(buddy)
|
|
|
|
|
2006-08-19 11:12:25 +02:00
|
|
|
def add_friend(self, friend):
|
2006-08-26 14:59:19 +02:00
|
|
|
icon = FriendIcon(friend)
|
2006-09-04 14:30:44 +02:00
|
|
|
icon.connect('clicked', self.__friend_clicked_cb)
|
2006-08-29 11:48:20 +02:00
|
|
|
self.add_child(icon)
|
2006-08-29 16:07:23 +02:00
|
|
|
self._icon_layout.add_icon(icon)
|
2006-08-19 11:12:25 +02:00
|
|
|
|
|
|
|
def __friend_added_cb(self, data_model, friend):
|
2006-08-26 14:59:19 +02:00
|
|
|
self.add_friend(friend)
|