2006-09-16 14:45:09 +02:00
|
|
|
from sugar.canvas.MenuIcon import MenuIcon
|
2006-09-16 15:43:07 +02:00
|
|
|
from view.BuddyMenu import BuddyMenu
|
2006-09-14 19:37:40 +02:00
|
|
|
|
2006-09-16 14:45:09 +02:00
|
|
|
class BuddyIcon(MenuIcon):
|
2006-09-19 14:04:11 +02:00
|
|
|
def __init__(self, shell, menu_shell, friend):
|
|
|
|
MenuIcon.__init__(self, menu_shell, icon_name='stock-buddy',
|
2006-09-22 21:29:48 +02:00
|
|
|
color=friend.get_color(), size=112)
|
2006-09-14 19:37:40 +02:00
|
|
|
|
2006-09-15 14:24:26 +02:00
|
|
|
self._shell = shell
|
2006-09-14 19:37:40 +02:00
|
|
|
self._friend = friend
|
|
|
|
|
2006-09-14 21:15:48 +02:00
|
|
|
def set_popup_distance(self, distance):
|
|
|
|
self._popup_distance = distance
|
|
|
|
|
2006-09-16 14:45:09 +02:00
|
|
|
def create_menu(self):
|
2006-09-16 15:43:07 +02:00
|
|
|
menu = BuddyMenu(self._shell, self._friend)
|
2006-09-16 14:45:09 +02:00
|
|
|
menu.connect('action', self._popup_action_cb)
|
|
|
|
return menu
|
2006-09-15 01:01:26 +02:00
|
|
|
|
2006-09-15 02:54:25 +02:00
|
|
|
def _popup_action_cb(self, popup, action):
|
2006-09-16 15:01:38 +02:00
|
|
|
self.popdown()
|
2006-09-15 02:54:25 +02:00
|
|
|
|
2006-09-22 21:49:59 +02:00
|
|
|
friends = self._shell.get_model().get_friends()
|
2006-09-22 21:36:52 +02:00
|
|
|
if action == BuddyMenu.ACTION_REMOVE_FRIEND:
|
|
|
|
friends.remove(self._friend)
|
|
|
|
|
2006-09-15 02:54:25 +02:00
|
|
|
buddy = self._friend.get_buddy()
|
|
|
|
if buddy == None:
|
|
|
|
return
|
|
|
|
|
2006-09-16 15:43:07 +02:00
|
|
|
if action == BuddyMenu.ACTION_INVITE:
|
2006-09-22 21:49:59 +02:00
|
|
|
activity = self._shell.get_current_activity()
|
2006-09-15 02:54:25 +02:00
|
|
|
activity.invite(buddy)
|
2006-09-16 15:43:07 +02:00
|
|
|
elif action == BuddyMenu.ACTION_MAKE_FRIEND:
|
2006-09-15 15:28:18 +02:00
|
|
|
friends.make_friend(buddy)
|