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

« back to all changes in this revision

Viewing changes to src/greeter-broadcast.vala

  • Committer: Package Import Robot
  • Author(s): Didier Roche
  • Date: 2014-03-25 11:15:16 UTC
  • mfrom: (28.220.32)
  • Revision ID: package-import@ubuntu.com-20140325111516-ii39cglx38anz0bb
Tags: 12.10.2+14.04.20140324.is.12.10.2+14.04.20140320-0ubuntu1
Revert to previous indicator-sound to avoid pulling click on the
desktop

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
 
}