/usr/include/ibus-1.0/ibuskeymap.h is in libibus-1.0-dev 1.4.1-3ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 | /* -*- mode: C; c-basic-offset: 4; indent-tabs-mode: nil; -*- */
/* vim:set et sts=4: */
/* IBus - The Input Bus
* Copyright (C) 2008-2010 Peng Huang <shawn.p.huang@gmail.com>
* Copyright (C) 2008-2010 Red Hat, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#if !defined (__IBUS_H_INSIDE__) && !defined (IBUS_COMPILATION)
#error "Only <ibus.h> can be included directly"
#endif
/**
* SECTION: ibuskeymap
* @short_description: Keyboard mapping handling.
* @title: IBusKeymap
* @stability: Stable
*
* An IBusKeymap defines the mapping between keyboard scancodes and
* keyboard symbols such as numbers, alphabets, and punctuation marks.
*
* Some input methods assume certain keyboard layout
* (such as Chewing and Wubi requires an US-QWERTY layout),
* and expect key symbols to be arranged in that order.
* These input methods should new an IBusKeymap
* instance and define the keyboard layout.
* Then ibus_keymap_lookup_keysym() can
* convert scancodes back to the key symbols.
*
* @see_also: #IBusComponent, #IBusEngineDesc
*
*/
#ifndef __IBUS_KEYMAP_H_
#define __IBUS_KEYMAP_H_
#include "ibusobject.h"
/*
* Type macros.
*/
/* define IBusKeymap macros */
#define IBUS_TYPE_KEYMAP \
(ibus_keymap_get_type ())
#define IBUS_KEYMAP(obj) \
(G_TYPE_CHECK_INSTANCE_CAST ((obj), IBUS_TYPE_KEYMAP, IBusKeymap))
#define IBUS_KEYMAP_CLASS(klass) \
(G_TYPE_CHECK_CLASS_CAST ((klass), IBUS_TYPE_KEYMAP, IBusKeymapClass))
#define IBUS_IS_KEYMAP(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), IBUS_TYPE_KEYMAP))
#define IBUS_IS_KEYMAP_CLASS(klass) \
(G_TYPE_CHECK_CLASS_TYPE ((klass), IBUS_TYPE_KEYMAP))
#define IBUS_KEYMAP_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_CLASS ((obj), IBUS_TYPE_KEYMAP, IBusKeymapClass))
G_BEGIN_DECLS
typedef struct _IBusKeymap IBusKeymap;
typedef struct _IBusKeymapClass IBusKeymapClass;
/**
* KEYMAP:
*
* Data structure for storing keymap.
* keymap[.][i]
* i:
* 0 - without modifer
* 1 - shift
* 2 - caplock
* 3 - shift caplock
* 4 - altgr
* 5 - shift altgr
* 6 - numlock
*/
/* typedef guint KEYMAP[256][7]; */
/**
* IBusKeymap:
* @name: The name of the keymap, such as 'us', 'jp'.
* @keymap: Keymap table. IME developers normally don have to touch this.
*
* A keymap object in IBus.
*/
struct _IBusKeymap {
/*< private >*/
IBusObject parent;
/* members */
/*< public >*/
gchar *name;
guint keymap[256][7];
};
struct _IBusKeymapClass {
IBusObjectClass parent;
};
GType ibus_keymap_get_type (void);
/**
* ibus_keymap_new:
* @name: The keymap file to be loaded, such as 'us', 'jp'.
* @returns: An IBusKeymap associated with the giving name; or NULL if failed.
*
* Get an IBusKeymap associated with the giving name.
*
* This function loads the keymap file specified in @name
* in the IBUS_DATA_DIR/keymaps directory.
*
* Deprecated: This function has been deprecated and should
* not be used in newly written code. Please use ibus_keymap_get().
*/
IBusKeymap *ibus_keymap_new (const gchar *name)
G_GNUC_DEPRECATED;
/**
* ibus_keymap_get:
* @name: The keymap file to be loaded, such as 'us', 'jp'.
* @returns: An IBusKeymap associated with the giving name; or NULL if failed.
*
* Get an IBusKeymap associated with the giving name.
*
* This function loads the keymap file specified in @name
* in the IBUS_DATA_DIR/keymaps directory.
*/
IBusKeymap *ibus_keymap_get (const gchar *name);
/**
* ibus_keymap_lookup_keysym:
* @keymap: An IBusKeymap.
* @keycode: A scancode to be converted.
* @state: Modifier flags(such as Ctrl, Shift).
* @returns: Corresponding keysym.
*
* Convert the scancode to keysym, given the keymap.
*/
guint ibus_keymap_lookup_keysym (IBusKeymap *keymap,
guint16 keycode,
guint32 state);
G_END_DECLS
#endif
|