~ci-train-bot/indicator-keyboard/indicator-keyboard-ubuntu-yakkety-landing-061

« back to all changes in this revision

Viewing changes to lib/ibus-panel.vala

  • Committer: William Hua
  • Date: 2014-03-19 03:32:18 UTC
  • mto: (316.1.4 1291962)
  • mto: This revision was merged to the branch mainline in revision 319.
  • Revision ID: william.hua@canonical.com-20140319033218-fgyi0xh5ybxayvaa
Use private IBus implementation.

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 of the License.
 
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: William Hua <william.hua@canonical.com>
 
17
 */
 
18
 
 
19
[DBus (name="com.canonical.IBus.Panel.Private")]
 
20
public interface IBusPanel : Object {
 
21
 
 
22
        public abstract void activate_property (string name, uint state) throws IOError;
 
23
 
 
24
        public signal void properties_registered (Variant variant);
 
25
        public signal void property_updated (Variant variant);
 
26
}