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
|
|
|
|
|
2007-06-04 19:35:05 +02:00
|
|
|
from gettext import gettext as _
|
2007-03-15 16:21:37 +01:00
|
|
|
from sets import Set
|
2006-12-14 16:45:52 +01:00
|
|
|
import logging
|
2007-06-04 19:35:05 +02:00
|
|
|
import tempfile
|
|
|
|
import os
|
|
|
|
import time
|
2007-12-13 13:13:33 +01:00
|
|
|
import shutil
|
2006-12-14 16:45:52 +01:00
|
|
|
|
2006-07-12 22:17:57 +02:00
|
|
|
import gobject
|
2007-06-04 19:35:05 +02:00
|
|
|
import gtk
|
2006-07-27 10:35:59 +02:00
|
|
|
import wnck
|
2007-10-06 11:15:36 +02:00
|
|
|
import dbus
|
2006-07-06 23:34:23 +02:00
|
|
|
|
2007-02-22 00:07:08 +01:00
|
|
|
from sugar.activity.activityhandle import ActivityHandle
|
2007-08-09 18:10:16 +02:00
|
|
|
from sugar import activity
|
2007-05-27 20:24:10 +02:00
|
|
|
from sugar.activity import activityfactory
|
2007-06-04 19:35:05 +02:00
|
|
|
from sugar.datastore import datastore
|
|
|
|
from sugar import profile
|
2007-10-06 00:01:38 +02:00
|
|
|
from sugar import env
|
2007-05-27 20:24:10 +02:00
|
|
|
|
2006-09-15 13:23:21 +02:00
|
|
|
from view.ActivityHost import ActivityHost
|
2007-01-25 12:22:37 +01:00
|
|
|
from view.frame.frame import Frame
|
2007-01-18 15:04:56 +01:00
|
|
|
from view.keyhandler import KeyHandler
|
2007-05-27 20:24:10 +02:00
|
|
|
from view.home.HomeWindow import HomeWindow
|
2007-07-02 14:34:41 +02:00
|
|
|
from model.shellmodel import ShellModel
|
2007-06-14 14:49:30 +02:00
|
|
|
|
2007-10-06 11:15:36 +02:00
|
|
|
# #3903 - this constant can be removed and assumed to be 1 when dbus-python
|
|
|
|
# 0.82.3 is the only version used
|
|
|
|
if dbus.version >= (0, 82, 3):
|
|
|
|
DBUS_PYTHON_TIMEOUT_UNITS_PER_SECOND = 1
|
|
|
|
else:
|
|
|
|
DBUS_PYTHON_TIMEOUT_UNITS_PER_SECOND = 1000
|
|
|
|
|
2006-08-10 00:54:54 +02:00
|
|
|
class Shell(gobject.GObject):
|
2006-12-04 20:12:24 +01:00
|
|
|
def __init__(self, model):
|
|
|
|
gobject.GObject.__init__(self)
|
|
|
|
|
2007-03-15 16:21:37 +01:00
|
|
|
self._activities_starting = Set()
|
2006-12-04 20:12:24 +01:00
|
|
|
self._model = model
|
|
|
|
self._hosts = {}
|
|
|
|
self._screen = wnck.screen_get_default()
|
|
|
|
self._current_host = None
|
2007-08-08 15:30:45 +02:00
|
|
|
self._pending_host = None
|
2007-01-13 23:08:21 +01:00
|
|
|
self._screen_rotation = 0
|
2007-10-29 15:49:17 +01:00
|
|
|
self._zoom_level = ShellModel.ZOOM_HOME
|
2006-12-04 20:12:24 +01:00
|
|
|
|
2007-03-12 20:18:55 +01:00
|
|
|
self._key_handler = KeyHandler(self)
|
2007-03-12 22:29:11 +01:00
|
|
|
|
2007-03-12 20:18:55 +01:00
|
|
|
self._frame = Frame(self)
|
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
self._home_window = HomeWindow(self)
|
|
|
|
self._home_window.show()
|
2007-03-12 22:29:11 +01:00
|
|
|
|
2006-12-24 14:35:02 +01:00
|
|
|
home_model = self._model.get_home()
|
2007-06-01 11:03:18 +02:00
|
|
|
home_model.connect('activity-started', self._activity_started_cb)
|
2006-12-24 14:35:02 +01:00
|
|
|
home_model.connect('activity-removed', self._activity_removed_cb)
|
2006-12-24 15:39:00 +01:00
|
|
|
home_model.connect('active-activity-changed',
|
|
|
|
self._active_activity_changed_cb)
|
2007-08-08 15:30:45 +02:00
|
|
|
home_model.connect('pending-activity-changed',
|
|
|
|
self._pending_activity_changed_cb)
|
2006-12-04 20:12:24 +01:00
|
|
|
|
2007-10-29 15:49:17 +01:00
|
|
|
self._model.connect('notify::zoom-level', self._zoom_level_changed_cb)
|
|
|
|
|
2007-06-29 19:05:10 +02:00
|
|
|
gobject.idle_add(self._start_journal_idle)
|
|
|
|
|
|
|
|
def _start_journal_idle(self):
|
2007-10-06 00:01:38 +02:00
|
|
|
# Mount the datastore in internal flash
|
2007-12-13 13:13:33 +01:00
|
|
|
ds_path = env.get_profile_path('datastore')
|
|
|
|
try:
|
|
|
|
datastore.mount(ds_path, [], timeout=120 * \
|
|
|
|
DBUS_PYTHON_TIMEOUT_UNITS_PER_SECOND)
|
|
|
|
except:
|
|
|
|
# Don't explode if there's corruption; move the data out of the way
|
|
|
|
# and attempt to create a store from scratch.
|
|
|
|
shutil.move(ds_path, os.path.abspath(ds_path) + str(time.time()))
|
|
|
|
datastore.mount(ds_path, [], timeout=120 * \
|
|
|
|
DBUS_PYTHON_TIMEOUT_UNITS_PER_SECOND)
|
2007-10-01 16:50:17 +02:00
|
|
|
|
|
|
|
# Checking for the bundle existence will also ensure
|
|
|
|
# that the shell service is started up.
|
2007-10-06 00:01:38 +02:00
|
|
|
registry = activity.get_registry()
|
2007-10-01 16:50:17 +02:00
|
|
|
if registry.get_activity('org.laptop.JournalActivity'):
|
|
|
|
self.start_activity('org.laptop.JournalActivity')
|
2007-06-29 19:05:10 +02:00
|
|
|
|
2007-06-01 11:03:18 +02:00
|
|
|
def _activity_started_cb(self, home_model, home_activity):
|
2006-12-24 14:35:02 +01:00
|
|
|
activity_host = ActivityHost(home_activity)
|
|
|
|
self._hosts[activity_host.get_xid()] = activity_host
|
2007-03-15 16:21:37 +01:00
|
|
|
if home_activity.get_type() in self._activities_starting:
|
|
|
|
self._activities_starting.remove(home_activity.get_type())
|
2006-12-04 20:12:24 +01:00
|
|
|
|
2006-12-24 14:35:02 +01:00
|
|
|
def _activity_removed_cb(self, home_model, home_activity):
|
2007-03-15 16:21:37 +01:00
|
|
|
if home_activity.get_type() in self._activities_starting:
|
|
|
|
self._activities_starting.remove(home_activity.get_type())
|
2006-12-24 15:39:00 +01:00
|
|
|
xid = home_activity.get_xid()
|
|
|
|
if self._hosts.has_key(xid):
|
|
|
|
self._hosts[xid].destroy()
|
|
|
|
del self._hosts[xid]
|
2006-12-04 20:12:24 +01:00
|
|
|
|
2006-12-24 15:39:00 +01:00
|
|
|
def _active_activity_changed_cb(self, home_model, home_activity):
|
2006-12-24 15:58:53 +01:00
|
|
|
if home_activity:
|
|
|
|
host = self._hosts[home_activity.get_xid()]
|
|
|
|
else:
|
|
|
|
host = None
|
2006-12-04 20:12:24 +01:00
|
|
|
|
|
|
|
if self._current_host:
|
|
|
|
self._current_host.set_active(False)
|
|
|
|
|
|
|
|
self._current_host = host
|
|
|
|
|
2007-08-08 15:30:45 +02:00
|
|
|
def _pending_activity_changed_cb(self, home_model, home_activity):
|
|
|
|
if home_activity:
|
|
|
|
self._pending_host = self._hosts[home_activity.get_xid()]
|
|
|
|
else:
|
|
|
|
self._pending_host = None
|
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def get_model(self):
|
|
|
|
return self._model
|
|
|
|
|
2007-01-18 15:04:56 +01:00
|
|
|
def get_frame(self):
|
|
|
|
return self._frame
|
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def join_activity(self, bundle_id, activity_id):
|
2007-08-09 18:10:16 +02:00
|
|
|
activity_host = self.get_activity(activity_id)
|
|
|
|
if activity_host:
|
|
|
|
activity_host.present()
|
2007-01-07 06:04:30 +01:00
|
|
|
return
|
|
|
|
|
|
|
|
# Get the service name for this activity, if
|
|
|
|
# we have a bundle on the system capable of handling
|
|
|
|
# this activity type
|
2007-08-09 18:10:16 +02:00
|
|
|
registry = activity.get_registry()
|
|
|
|
bundle = registry.get_activity(bundle_id)
|
2007-01-07 06:04:30 +01:00
|
|
|
if not bundle:
|
|
|
|
logging.error("Couldn't find activity for type %s" % bundle_id)
|
|
|
|
return
|
|
|
|
|
2007-02-22 00:07:08 +01:00
|
|
|
handle = ActivityHandle(activity_id)
|
2007-06-29 19:05:10 +02:00
|
|
|
activityfactory.create(bundle_id, handle)
|
2007-02-21 20:56:14 +01:00
|
|
|
|
2007-06-29 19:05:10 +02:00
|
|
|
def notify_launch(self, bundle_id, activity_id):
|
|
|
|
# Zoom to Home for launch feedback
|
2007-07-02 14:34:41 +02:00
|
|
|
self.set_zoom_level(ShellModel.ZOOM_HOME)
|
2007-06-29 19:05:10 +02:00
|
|
|
|
|
|
|
home_model = self._model.get_home()
|
|
|
|
home_model.notify_activity_launch(activity_id, bundle_id)
|
|
|
|
|
|
|
|
def notify_launch_failure(self, activity_id):
|
2007-06-29 22:11:28 +02:00
|
|
|
home_model = self._model.get_home()
|
2007-06-29 19:05:10 +02:00
|
|
|
home_model.notify_activity_launch_failed(activity_id)
|
2007-01-07 06:04:30 +01:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def start_activity(self, activity_type):
|
2007-03-15 16:21:37 +01:00
|
|
|
if activity_type in self._activities_starting:
|
|
|
|
logging.debug("This activity is still launching.")
|
|
|
|
return
|
|
|
|
|
|
|
|
self._activities_starting.add(activity_type)
|
2007-06-29 19:05:10 +02:00
|
|
|
activityfactory.create(activity_type)
|
2007-01-08 23:05:55 +01:00
|
|
|
|
2007-10-23 15:19:17 +02:00
|
|
|
def take_activity_screenshot(self):
|
2007-10-23 15:49:19 +02:00
|
|
|
if self._model.get_zoom_level() != ShellModel.ZOOM_ACTIVITY:
|
|
|
|
return
|
|
|
|
if self.get_frame().visible:
|
|
|
|
return
|
|
|
|
|
2007-10-23 15:19:17 +02:00
|
|
|
home_model = self._model.get_home()
|
2007-10-23 15:49:19 +02:00
|
|
|
activity = home_model.get_active_activity()
|
2007-11-13 16:20:34 +01:00
|
|
|
if activity is not None:
|
|
|
|
service = activity.get_service()
|
|
|
|
if service is not None:
|
|
|
|
try:
|
|
|
|
service.TakeScreenshot(timeout=2.0)
|
|
|
|
except dbus.DBusException, e:
|
|
|
|
logging.debug('Error raised by TakeScreenshot(): %s', e)
|
2007-10-23 15:19:17 +02:00
|
|
|
|
2007-07-02 14:53:50 +02:00
|
|
|
def set_zoom_level(self, level):
|
2007-10-29 15:49:17 +01:00
|
|
|
if level == self._zoom_level:
|
2007-07-02 15:49:29 +02:00
|
|
|
return
|
|
|
|
|
2007-10-23 15:49:19 +02:00
|
|
|
self.take_activity_screenshot()
|
2007-10-23 15:19:17 +02:00
|
|
|
|
2007-07-02 14:53:50 +02:00
|
|
|
if level == ShellModel.ZOOM_ACTIVITY:
|
2007-08-08 15:30:45 +02:00
|
|
|
if self._pending_host is not None:
|
|
|
|
self._pending_host.present()
|
2006-12-04 20:12:24 +01:00
|
|
|
self._screen.toggle_showing_desktop(False)
|
|
|
|
else:
|
2007-07-02 14:53:50 +02:00
|
|
|
self._model.set_zoom_level(level)
|
2006-12-04 20:12:24 +01:00
|
|
|
self._screen.toggle_showing_desktop(True)
|
2007-07-02 14:53:50 +02:00
|
|
|
self._home_window.set_zoom_level(level)
|
2006-12-04 20:12:24 +01:00
|
|
|
|
2007-10-29 15:49:17 +01:00
|
|
|
def _zoom_level_changed_cb(self, model, pspec):
|
|
|
|
new_level = model.props.zoom_level
|
|
|
|
|
|
|
|
if new_level == ShellModel.ZOOM_HOME:
|
2007-11-24 15:58:53 +01:00
|
|
|
self._frame.show(Frame.MODE_NON_INTERACTIVE)
|
2007-10-29 15:49:17 +01:00
|
|
|
|
|
|
|
if self._zoom_level == ShellModel.ZOOM_HOME:
|
|
|
|
self._frame.hide()
|
|
|
|
|
|
|
|
self._zoom_level = new_level
|
|
|
|
|
2007-10-23 15:19:17 +02:00
|
|
|
def toggle_activity_fullscreen(self):
|
|
|
|
if self._model.get_zoom_level() == ShellModel.ZOOM_ACTIVITY:
|
|
|
|
self.get_current_activity().toggle_fullscreen()
|
|
|
|
|
|
|
|
def activate_previous_activity(self):
|
|
|
|
home_model = self._model.get_home()
|
|
|
|
activity = home_model.get_previous_activity()
|
|
|
|
if activity:
|
|
|
|
self.take_activity_screenshot()
|
|
|
|
activity.get_window().activate(1)
|
|
|
|
|
|
|
|
def activate_next_activity(self):
|
|
|
|
home_model = self._model.get_home()
|
|
|
|
activity = home_model.get_next_activity()
|
|
|
|
if activity:
|
|
|
|
self.take_activity_screenshot()
|
|
|
|
activity.get_window().activate(1)
|
|
|
|
|
|
|
|
def close_current_activity(self):
|
2007-11-09 10:43:24 +01:00
|
|
|
if self._model.get_zoom_level() != ShellModel.ZOOM_ACTIVITY:
|
|
|
|
return
|
|
|
|
|
|
|
|
home_model = self._model.get_home()
|
|
|
|
activity = home_model.get_active_activity()
|
|
|
|
if activity.get_type() == 'org.laptop.JournalActivity':
|
|
|
|
return
|
|
|
|
|
2007-10-23 15:19:17 +02:00
|
|
|
self.take_activity_screenshot()
|
2007-11-09 10:43:24 +01:00
|
|
|
self.get_current_activity().close()
|
2007-10-23 15:19:17 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def get_current_activity(self):
|
2006-12-24 15:39:00 +01:00
|
|
|
return self._current_host
|
2006-12-04 20:12:24 +01:00
|
|
|
|
2006-12-24 12:19:24 +01:00
|
|
|
def get_activity(self, activity_id):
|
2006-12-04 20:12:24 +01:00
|
|
|
for host in self._hosts.values():
|
|
|
|
if host.get_id() == activity_id:
|
|
|
|
return host
|
|
|
|
return None
|
|
|
|
|
|
|
|
def toggle_chat_visibility(self):
|
|
|
|
act = self.get_current_activity()
|
|
|
|
if not act:
|
|
|
|
return
|
|
|
|
is_visible = self._frame.is_visible()
|
|
|
|
if act.is_chat_visible():
|
|
|
|
frame_was_visible = act.chat_hide()
|
|
|
|
if not frame_was_visible:
|
|
|
|
self._frame.do_slide_out()
|
|
|
|
else:
|
|
|
|
if not is_visible:
|
|
|
|
self._frame.do_slide_in()
|
|
|
|
act.chat_show(is_visible)
|
2007-06-04 19:35:05 +02:00
|
|
|
|
|
|
|
def take_screenshot(self):
|
|
|
|
file_path = os.path.join(tempfile.gettempdir(), '%i' % time.time())
|
|
|
|
|
|
|
|
window = gtk.gdk.get_default_root_window()
|
2007-06-15 18:03:17 +02:00
|
|
|
width, height = window.get_size()
|
|
|
|
x_orig, y_orig = window.get_origin()
|
2007-06-04 19:35:05 +02:00
|
|
|
|
|
|
|
screenshot = gtk.gdk.Pixbuf(gtk.gdk.COLORSPACE_RGB, has_alpha=False,
|
|
|
|
bits_per_sample=8, width=width, height=height)
|
|
|
|
screenshot.get_from_drawable(window, window.get_colormap(), x_orig, y_orig, 0, 0,
|
2007-06-15 18:03:17 +02:00
|
|
|
width, height)
|
2007-06-04 19:35:05 +02:00
|
|
|
screenshot.save(file_path, "png")
|
2007-07-20 19:50:49 +02:00
|
|
|
try:
|
|
|
|
jobject = datastore.create()
|
|
|
|
try:
|
|
|
|
jobject.metadata['title'] = _('Screenshot')
|
|
|
|
jobject.metadata['keep'] = '0'
|
|
|
|
jobject.metadata['buddies'] = ''
|
|
|
|
jobject.metadata['preview'] = ''
|
|
|
|
jobject.metadata['icon-color'] = profile.get_color().to_string()
|
|
|
|
jobject.metadata['mime_type'] = 'image/png'
|
|
|
|
jobject.file_path = file_path
|
|
|
|
datastore.write(jobject)
|
|
|
|
finally:
|
2007-07-24 11:14:52 +02:00
|
|
|
jobject.destroy()
|
|
|
|
del jobject
|
2007-07-20 19:50:49 +02:00
|
|
|
finally:
|
|
|
|
os.remove(file_path)
|
2007-06-04 19:35:05 +02:00
|
|
|
|