aboutsummaryrefslogtreecommitdiff
path: root/lib/unity-session.vala
diff options
context:
space:
mode:
authorWilliam Hua <william.hua@canonical.com>2014-04-02 10:24:25 +1300
committerWilliam Hua <william.hua@canonical.com>2014-04-02 10:24:25 +1300
commit414d5d9f8a41805ecec5808ace466c37d03fa9f3 (patch)
tree8dc12f064501b1a8ad44a8e99515c19878102399 /lib/unity-session.vala
parent8c6fd2e9daff0d486ab71c50413dadff6d1c12d8 (diff)
downloadayatana-indicator-keyboard-414d5d9f8a41805ecec5808ace466c37d03fa9f3.tar.gz
ayatana-indicator-keyboard-414d5d9f8a41805ecec5808ace466c37d03fa9f3.tar.bz2
ayatana-indicator-keyboard-414d5d9f8a41805ecec5808ace466c37d03fa9f3.zip
Switch to non-IBus input source when screen is locked.
Diffstat (limited to 'lib/unity-session.vala')
-rw-r--r--lib/unity-session.vala24
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/unity-session.vala b/lib/unity-session.vala
new file mode 100644
index 00000000..04bf3349
--- /dev/null
+++ b/lib/unity-session.vala
@@ -0,0 +1,24 @@
+/*
+ * 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 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.Unity.Session")]
+public interface UnitySession : Object {
+
+ public signal void locked ();
+ public signal void unlocked ();
+}