~ubuntu-branches/ubuntu/trusty/indicator-sound/trusty-proposed

« back to all changes in this revision

Viewing changes to src/greeter-broadcast.vala

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Michael Terry, Ted Gould
  • Date: 2014-03-24 15:03:16 UTC
  • mfrom: (28.220.31)
  • Revision ID: package-import@ubuntu.com-20140324150316-5sccztn1uikiwocv
Tags: 12.10.2+14.04.20140324-0ubuntu1
[ Michael Terry ]
* Sync volume and mute settings with AccountsService. (LP: #840777)

[ Ted Gould ]
* Add an apport hook for debugging
* Synchronize process management across indicators
* Export currently running player to Accounts Service
* Create players on the phone greeter based on the accounts service
  data
* Allow the phone greeter player to control the running player in the
  session.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2014 © Canonical Ltd.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; version 3.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Authors:
 
17
 *      Ted Gould <ted@canonical.com>
 
18
 */
 
19
 
 
20
[DBus (name = "com.canonical.Unity.Greeter.Broadcast")]
 
21
public interface GreeterBroadcast : Object {
 
22
  // methods
 
23
  // unused public abstract async void RequestApplicationStart(string name, string appid) throws IOError;
 
24
  // unused public abstract async void RequestHomeShown(string name) throws IOError;
 
25
  public abstract async void RequestSoundPlayPause(string name) throws IOError;
 
26
  public abstract async void RequestSoundNext(string name) throws IOError;
 
27
  public abstract async void RequestSoundPrev(string name) throws IOError;
 
28
  // signals
 
29
  // unused public signal void StartApplication(string username, string appid);
 
30
  // unused public signal void ShowHome(string username);
 
31
  public signal void SoundPlayPause(string username);
 
32
  public signal void SoundNext(string username);
 
33
  public signal void SoundPrev(string username);
 
34
}