2006-08-23 11:52:18 +02:00
|
|
|
import gtk
|
|
|
|
import goocanvas
|
2006-09-04 21:34:54 +02:00
|
|
|
import logging
|
2006-08-23 11:52:18 +02:00
|
|
|
|
2006-09-04 21:34:54 +02:00
|
|
|
import conf
|
2006-08-23 11:52:18 +02:00
|
|
|
from sugar.canvas.IconItem import IconItem
|
2006-08-23 21:03:17 +02:00
|
|
|
from sugar.canvas.IconColor import IconColor
|
2006-09-04 17:00:45 +02:00
|
|
|
from sugar.presence import PresenceService
|
2006-09-01 15:11:52 +02:00
|
|
|
from frame.Panel import Panel
|
2006-08-23 11:52:18 +02:00
|
|
|
|
|
|
|
class ActivityItem(IconItem):
|
|
|
|
def __init__(self, activity, size):
|
2006-08-25 17:24:39 +02:00
|
|
|
icon_name = activity.get_icon()
|
|
|
|
if not icon_name:
|
2006-09-02 10:54:34 +02:00
|
|
|
act_type = activity.get_type()
|
2006-08-28 14:04:51 +02:00
|
|
|
raise RuntimeError("Activity %s did not have an icon!" % act_type)
|
2006-08-28 12:44:46 +02:00
|
|
|
IconItem.__init__(self, icon_name=icon_name,
|
|
|
|
color=IconColor('white'), size=size)
|
2006-08-23 11:52:18 +02:00
|
|
|
self._activity = activity
|
|
|
|
|
2006-09-04 17:00:45 +02:00
|
|
|
def get_bundle_id(self):
|
2006-08-23 11:52:18 +02:00
|
|
|
return self._activity.get_id()
|
|
|
|
|
2006-09-04 17:00:45 +02:00
|
|
|
class InviteItem(IconItem):
|
|
|
|
def __init__(self, invite, size):
|
|
|
|
IconItem.__init__(self, icon_name=invite.get_icon(),
|
|
|
|
color=invite.get_color(), size=size)
|
|
|
|
self._invite = invite
|
|
|
|
|
|
|
|
def get_activity_id(self):
|
|
|
|
return self._invite.get_activity_id()
|
|
|
|
|
|
|
|
def get_bundle_id(self):
|
|
|
|
return self._invite.get_bundle_id()
|
|
|
|
|
2006-08-23 11:52:18 +02:00
|
|
|
class ActivityBar(goocanvas.Group):
|
2006-09-04 17:00:45 +02:00
|
|
|
def __init__(self, shell, invites, height):
|
2006-08-23 11:52:18 +02:00
|
|
|
goocanvas.Group.__init__(self)
|
|
|
|
|
|
|
|
self._shell = shell
|
|
|
|
self._height = height
|
|
|
|
|
|
|
|
registry = conf.get_activity_registry()
|
|
|
|
for activity in registry.list_activities():
|
|
|
|
if activity.get_show_launcher():
|
|
|
|
self.add_activity(activity)
|
|
|
|
|
2006-09-04 17:00:45 +02:00
|
|
|
for invite in invites:
|
|
|
|
self.add_invite(invite)
|
|
|
|
invites.connect('invite-added', self.__invite_added_cb)
|
|
|
|
|
|
|
|
def __activity_clicked_cb(self, icon):
|
|
|
|
self._shell.start_activity(icon.get_bundle_id())
|
|
|
|
|
|
|
|
def __invite_clicked_cb(self, icon):
|
|
|
|
self._shell.join_activity(icon.get_bundle_id(),
|
|
|
|
icon.get_activity_id())
|
|
|
|
|
|
|
|
def __invite_added_cb(self, invites, invite):
|
|
|
|
self.add_invite(invite)
|
|
|
|
|
2006-08-23 11:52:18 +02:00
|
|
|
def add_activity(self, activity):
|
2006-08-25 17:24:39 +02:00
|
|
|
# Need an icon to show up on the bar
|
|
|
|
if not activity.get_icon():
|
|
|
|
name = activity.get_name()
|
|
|
|
logging.info("Activity %s did not have an icon. Won't show it." % name)
|
|
|
|
return
|
|
|
|
|
2006-08-23 11:52:18 +02:00
|
|
|
item = ActivityItem(activity, self._height)
|
2006-09-04 17:00:45 +02:00
|
|
|
item.connect('clicked', self.__activity_clicked_cb)
|
|
|
|
|
|
|
|
icon_size = self._height
|
|
|
|
x = (icon_size + 6) * self.get_n_children()
|
|
|
|
item.set_property('x', x)
|
|
|
|
|
|
|
|
self.add_child(item)
|
|
|
|
|
|
|
|
def add_invite(self, invite):
|
|
|
|
item = InviteItem(invite, self._height)
|
|
|
|
item.connect('clicked', self.__invite_clicked_cb)
|
2006-08-23 11:52:18 +02:00
|
|
|
|
|
|
|
icon_size = self._height
|
|
|
|
x = (icon_size + 6) * self.get_n_children()
|
|
|
|
item.set_property('x', x)
|
|
|
|
|
|
|
|
self.add_child(item)
|
|
|
|
|
2006-09-01 15:11:52 +02:00
|
|
|
class BottomPanel(Panel):
|
2006-09-04 17:00:45 +02:00
|
|
|
def __init__(self, shell, invites):
|
2006-08-23 11:52:18 +02:00
|
|
|
Panel.__init__(self)
|
|
|
|
|
|
|
|
self._shell = shell
|
2006-09-04 17:00:45 +02:00
|
|
|
self._invites = invites
|
2006-08-23 11:52:18 +02:00
|
|
|
|
|
|
|
def construct(self):
|
|
|
|
Panel.construct(self)
|
|
|
|
|
2006-08-28 16:53:29 +02:00
|
|
|
root = self.get_root()
|
2006-08-23 11:52:18 +02:00
|
|
|
|
2006-09-04 17:00:45 +02:00
|
|
|
activity_bar = ActivityBar(self._shell, self._invites,
|
|
|
|
self.get_height())
|
2006-08-23 11:52:18 +02:00
|
|
|
root.add_child(activity_bar)
|