From 87cb115aa0155291d2473537a3fa2da1400c174f Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Thu, 20 Jul 2006 09:34:06 +0000 Subject: Abstract activity on the shell side into an ActivityHost object. Comment out/fix more ps borkage. --- (limited to 'shell/ActivityHost.py') diff --git a/shell/ActivityHost.py b/shell/ActivityHost.py new file mode 100644 index 0000000..c9d6dcb --- /dev/null +++ b/shell/ActivityHost.py @@ -0,0 +1,30 @@ +import gtk +import dbus + +from sugar.activity import Activity + +class ActivityHost: + def __init__(self, xid): + self._xid = xid + + bus = dbus.SessionBus() + service = Activity.ACTIVITY_SERVICE_NAME + "%s" % xid + path = Activity.ACTIVITY_SERVICE_PATH + "/%s" % xid + proxy_obj = bus.get_object(service, path) + + self._activity = dbus.Interface(proxy_obj, 'com.redhat.Sugar.Activity') + self._id = self._activity.get_id() + self._window = gtk.gdk.window_foreign_new(xid) + + def get_id(self): + return self._id + + def publish(self): + self._activity.publish() + + def get_shared(self): + return self._activity.get_shared() + + def show_dialog(self, dialog): + dialog.show() + dialog.window.set_transient_for(self._window) -- cgit v0.9.1