sugar-toolkit-gtk3/shell/view/BuddyIcon.py

36 lines
970 B
Python
Raw Normal View History

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):
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
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 02:54:25 +02:00
def _popup_action_cb(self, popup, action):
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:
friends.make_friend(buddy)