aboutsummaryrefslogtreecommitdiff
path: root/src/greeter-broadcast.vala
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2014-02-27 09:26:42 -0600
committerTed Gould <ted@gould.cx>2014-02-27 09:26:42 -0600
commit948e2a727ebd214752a7b9ecc863ed613cc110d2 (patch)
tree1aa47e2e4ac2326bf1ad7c24bf968c2bcde851da /src/greeter-broadcast.vala
parente9216681e8644d91d8efc2aff76810d9172e48a6 (diff)
downloadayatana-indicator-sound-948e2a727ebd214752a7b9ecc863ed613cc110d2.tar.gz
ayatana-indicator-sound-948e2a727ebd214752a7b9ecc863ed613cc110d2.tar.bz2
ayatana-indicator-sound-948e2a727ebd214752a7b9ecc863ed613cc110d2.zip
Adding the greeter broadcast DBus API
Diffstat (limited to 'src/greeter-broadcast.vala')
-rw-r--r--src/greeter-broadcast.vala34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/greeter-broadcast.vala b/src/greeter-broadcast.vala
new file mode 100644
index 0000000..e1a2793
--- /dev/null
+++ b/src/greeter-broadcast.vala
@@ -0,0 +1,34 @@
+/*
+ * Copyright 2014 © Canonical Ltd.
+ *
+ * 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; version 3.
+ *
+ * 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, see <http://www.gnu.org/licenses/>.
+ *
+ * Authors:
+ * Ted Gould <ted@canonical.com>
+ */
+
+[DBus (name = "com.canonical.Unity.Greeter.Broadcast")]
+public interface GreeterBroadcast : Object {
+ // methods
+ public abstract async void RequestApplicationStart(string name, string appid) throws IOError;
+ public abstract async void RequestHomeShown(string name) throws IOError;
+ public abstract async void RequestSoundPlayPause(string name) throws IOError;
+ public abstract async void RequestSoundNext(string name) throws IOError;
+ public abstract async void RequestSoundPrev(string name) throws IOError;
+ // signals
+ public signal void StartApplication(string username, string appid);
+ public signal void ShowHome(string username);
+ public signal void SoundPlayPause(string username);
+ public signal void SoundNext(string username);
+ public signal void SoundPrev(string username);
+}