Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1189)

Side by Side Diff: src/ibushotkey.h

Issue 1702015: Support engine specific hotkey. (Closed) Base URL: ssh://git@chromiumos-git/ibus.git
Patch Set: Created 10 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/ibusenginedesc.c ('k') | src/ibushotkey.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* vim:set et sts=4: */ 1 /* vim:set et sts=4: */
2 /* IBus - The Input Bus 2 /* IBus - The Input Bus
3 * Copyright (C) 2008-2010 Peng Huang <shawn.p.huang@gmail.com> 3 * Copyright (C) 2008-2010 Peng Huang <shawn.p.huang@gmail.com>
4 * Copyright (C) 2008-2010 Red Hat, Inc. 4 * Copyright (C) 2008-2010 Red Hat, Inc.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public 7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 * @see_also: ::trigger 153 * @see_also: ::trigger
154 */ 154 */
155 GQuark ibus_hotkey_profile_filter_key_event 155 GQuark ibus_hotkey_profile_filter_key_event
156 (IBusHotkeyProfile *profile, 156 (IBusHotkeyProfile *profile,
157 guint keyval, 157 guint keyval,
158 guint modifiers, 158 guint modifiers,
159 guint prev_keyval , 159 guint prev_keyval ,
160 guint prev_modifi ers, 160 guint prev_modifi ers,
161 gpointer user_data); 161 gpointer user_data);
162 162
163 /**
164 * ibus_hotkey_profile_lookup_hotkey:
165 * @profile: An IBusHotkeyProfile.
166 * @keyval: Keycode of the hotkey.
167 * @modifiers: Modifiers of the hotkey.
168 * @returns: The event associated to the hotkey or 0 if the hotkey is not in the
169 * profile.
170 */
171 GQuark ibus_hotkey_profile_lookup_hotkey
172 (IBusHotkeyProfile *profile,
173 guint keyval,
174 guint modifiers);
175
163 G_END_DECLS 176 G_END_DECLS
164 #endif 177 #endif
165
OLDNEW
« no previous file with comments | « src/ibusenginedesc.c ('k') | src/ibushotkey.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698