diff options
author | William Hua <william.hua@canonical.com> | 2014-01-30 18:15:07 +0000 |
---|---|---|
committer | Tarmac <Unknown> | 2014-01-30 18:15:07 +0000 |
commit | 30cc82bcb9a9cff416ae0eadf46024c84d450659 (patch) | |
tree | b503d2b8cda02665b3e4fdcdfa4f6cd760996dd5 /lib/unity-greeter.vala | |
parent | 51e6bbedaf84074e96d9fb355edeb172212526cb (diff) | |
parent | 36b1e9f99cd85792a36b20047db2e1d09e0d53c4 (diff) | |
download | ayatana-indicator-keyboard-30cc82bcb9a9cff416ae0eadf46024c84d450659.tar.gz ayatana-indicator-keyboard-30cc82bcb9a9cff416ae0eadf46024c84d450659.tar.bz2 ayatana-indicator-keyboard-30cc82bcb9a9cff416ae0eadf46024c84d450659.zip |
Replace BAMF with Unity window stack API calls.
Approved by PS Jenkins bot, Charles Kerr.
Diffstat (limited to 'lib/unity-greeter.vala')
-rw-r--r-- | lib/unity-greeter.vala | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/unity-greeter.vala b/lib/unity-greeter.vala new file mode 100644 index 00000000..2cdfe05c --- /dev/null +++ b/lib/unity-greeter.vala @@ -0,0 +1,26 @@ +/* + * Copyright 2013 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 of the License. + * + * 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: William Hua <william.hua@canonical.com> + */ + +[DBus (name="com.canonical.UnityGreeter.List")] +public interface UnityGreeter : Object { + + public abstract string get_active_entry () throws IOError; + public abstract void set_active_entry (string entry_name) throws IOError; + + public signal void entry_selected (string entry_name); +} |