Add some very minimal telepathy support

Original code from Will Thompson

https://bugzilla.gnome.org/show_bug.cgi?id=599193
This commit is contained in:
Dan Winship
2009-10-27 11:49:21 -04:00
parent 01138d55ca
commit c985c3cf78
2 changed files with 171 additions and 0 deletions

View File

@ -14,6 +14,7 @@ const St = imports.gi.St;
const Chrome = imports.ui.chrome;
const Environment = imports.ui.environment;
const Messaging = imports.ui.messaging;
const Overview = imports.ui.overview;
const Panel = imports.ui.panel;
const RunDialog = imports.ui.runDialog;
@ -32,6 +33,7 @@ let overview = null;
let runDialog = null;
let lookingGlass = null;
let wm = null;
let messaging = null;
let recorder = null;
let shellDBusService = null;
let modalCount = 0;
@ -101,6 +103,7 @@ function start() {
panel = new Panel.Panel();
sidebar = new Sidebar.Sidebar();
wm = new WindowManager.WindowManager();
messaging = new Messaging.Messaging();
global.screen.connect('toggle-recording', function() {
if (recorder == null) {