sugar-toolkit-gtk3/shell/view/frame/ActivitiesBox.py

115 lines
4.0 KiB
Python
Raw Normal View History

2007-06-24 14:45:05 +02:00
# Copyright (C) 2006-2007 Red Hat, Inc.
2006-10-15 01:24:45 +02:00
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
import hippo
import logging
2006-08-23 11:52:18 +02:00
from sugar.graphics.palette import Palette
2007-02-23 13:09:33 +01:00
from sugar.graphics.xocolor import XoColor
2007-02-21 13:01:20 +01:00
from sugar.graphics.iconbutton import IconButton
from sugar.graphics.tray import HTray
from sugar.graphics import style
from sugar import profile
from sugar import activity
2006-08-23 11:52:18 +02:00
2007-07-06 16:51:18 +02:00
from frameinvoker import FrameCanvasInvoker
from activitybutton import ActivityButton
2006-08-23 11:52:18 +02:00
2007-02-21 13:01:20 +01:00
class InviteButton(IconButton):
def __init__(self, activity_model, invite):
2007-08-27 16:26:57 +02:00
IconButton.__init__(self, file_name=activity_model.get_icon())
2006-10-23 21:28:19 +02:00
self.props.xo_color = activity_model.get_color()
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()
def get_invite(self):
return self._invite
2006-09-09 14:37:11 +02:00
class ActivitiesBox(hippo.CanvasBox):
2007-07-01 12:55:10 +02:00
def __init__(self, shell):
hippo.CanvasBox.__init__(self, orientation=hippo.ORIENTATION_HORIZONTAL)
self._shell = shell
self._shell_model = self._shell.get_model()
self._invite_to_item = {}
self._invites = self._shell_model.get_invites()
self.tray = HTray()
2007-08-29 14:04:46 +02:00
self.append(hippo.CanvasWidget(widget=self.tray), hippo.PACK_EXPAND)
self.tray.show()
registry = activity.get_registry()
2007-08-27 21:47:58 +02:00
registry.get_activities_async(reply_handler=self._get_activities_cb)
registry.connect('activity-added', self._activity_added_cb)
2007-01-27 12:54:56 +01:00
for invite in self._invites:
self.add_invite(invite)
self._invites.connect('invite-added', self._invite_added_cb)
self._invites.connect('invite-removed', self._invite_removed_cb)
2007-08-27 21:47:58 +02:00
def _get_activities_cb(self, activity_list):
for activity_info in activity_list:
if activity_info.show_launcher:
self.add_activity(activity_info)
def _activity_clicked_cb(self, icon):
self._shell.start_activity(icon.get_bundle_id())
def _invite_clicked_cb(self, icon):
self._invites.remove_invite(icon.get_invite())
self._shell.join_activity(icon.get_bundle_id(),
icon.get_activity_id())
def _invite_added_cb(self, invites, invite):
self.add_invite(invite)
def _invite_removed_cb(self, invites, invite):
self.remove_invite(invite)
def _activity_removed_cb(self, item):
2007-08-29 14:04:46 +02:00
self.tray.remove_item(item)
def _activity_added_cb(self, activity_registry, activity_info):
self.add_activity(activity_info)
2007-01-27 12:54:56 +01:00
def add_activity(self, activity_info):
item = ActivityButton(activity_info)
item.connect('clicked', self._activity_clicked_cb)
item.connect('remove_activity', self._activity_removed_cb)
self.tray.add_item(item, -1)
item.show()
def add_invite(self, invite):
mesh = self._shell_model.get_mesh()
activity_model = mesh.get_activity(invite.get_activity_id())
if activity:
item = InviteButton(activity_model, invite)
item.connect('activated', self._invite_clicked_cb)
self.append(item, 0)
self._invite_to_item[invite] = item
def remove_invite(self, invite):
self.remove(self._invite_to_item[invite])
del self._invite_to_item[invite]