LEFT | RIGHT |
(Both sides are equal) |
1 /* -*- mode: C; c-basic-offset: 4; indent-tabs-mode: nil; -*- */ | 1 /* -*- mode: C; c-basic-offset: 4; indent-tabs-mode: nil; -*- */ |
2 /* vim:set et sts=4: */ | 2 /* vim:set et sts=4: */ |
3 /* bus - The Input Bus | 3 /* bus - The Input Bus |
4 * Copyright (C) 2008-2010 Peng Huang <shawn.p.huang@gmail.com> | 4 * Copyright (C) 2008-2010 Peng Huang <shawn.p.huang@gmail.com> |
5 * Copyright (C) 2008-2010 Red Hat, Inc. | 5 * Copyright (C) 2008-2010 Red Hat, Inc. |
6 * | 6 * |
7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
8 * modify it under the terms of the GNU Lesser General Public | 8 * modify it under the terms of the GNU Lesser General Public |
9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 IBusKeymap *bus_ibus_impl_get_keymap (BusIBusImpl *ibus); | 77 IBusKeymap *bus_ibus_impl_get_keymap (BusIBusImpl *ibus); |
78 BusRegistry *bus_ibus_impl_get_registry (BusIBusImpl *ibus); | 78 BusRegistry *bus_ibus_impl_get_registry (BusIBusImpl *ibus); |
79 gboolean bus_ibus_impl_is_use_sys_layout (BusIBusImpl *ibus); | 79 gboolean bus_ibus_impl_is_use_sys_layout (BusIBusImpl *ibus); |
80 gboolean bus_ibus_impl_is_embed_preedit_text | 80 gboolean bus_ibus_impl_is_embed_preedit_text |
81 (BusIBusImpl *ibus); | 81 (BusIBusImpl *ibus); |
82 BusInputContext *bus_ibus_impl_get_focused_input_context | 82 BusInputContext *bus_ibus_impl_get_focused_input_context |
83 (BusIBusImpl *ibus); | 83 (BusIBusImpl *ibus); |
84 | 84 |
85 G_END_DECLS | 85 G_END_DECLS |
86 #endif | 86 #endif |
LEFT | RIGHT |