summaryrefslogtreecommitdiffstats
path: root/src/ibustypes.h
diff options
context:
space:
mode:
authorHuang Peng <shawn.p.huang@gmail.com>2009-02-05 10:39:56 +0800
committerHuang Peng <shawn.p.huang@gmail.com>2009-02-05 10:39:56 +0800
commitaedad1ea0a7fef604aa27f4b58433fd8f2ece29e (patch)
treeffcb531d8474bde18b90341bcd4eb639edd74525 /src/ibustypes.h
parent41ad46305a88637dd99f00a2d2a3f455505d357b (diff)
downloadibus-aedad1ea0a7fef604aa27f4b58433fd8f2ece29e.tar.gz
ibus-aedad1ea0a7fef604aa27f4b58433fd8f2ece29e.tar.xz
ibus-aedad1ea0a7fef604aa27f4b58433fd8f2ece29e.zip
re-implement ibus in c language.
Diffstat (limited to 'src/ibustypes.h')
-rw-r--r--src/ibustypes.h74
1 files changed, 74 insertions, 0 deletions
diff --git a/src/ibustypes.h b/src/ibustypes.h
new file mode 100644
index 0000000..a977db4
--- /dev/null
+++ b/src/ibustypes.h
@@ -0,0 +1,74 @@
+/* vim:set et sts=4: */
+/* ibus - The Input Bus
+ * Copyright (C) 2008-2009 Huang Peng <shawn.p.huang@gmail.com>
+ *
+ * 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.
+ */
+#ifndef __IBUS_TYPES_H_
+#define __IBUS_TYPES_H_
+
+typedef enum
+{
+ IBUS_SHIFT_MASK = 1 << 0,
+ IBUS_LOCK_MASK = 1 << 1,
+ IBUS_CONTROL_MASK = 1 << 2,
+ IBUS_MOD1_MASK = 1 << 3,
+ IBUS_MOD2_MASK = 1 << 4,
+ IBUS_MOD3_MASK = 1 << 5,
+ IBUS_MOD4_MASK = 1 << 6,
+ IBUS_MOD5_MASK = 1 << 7,
+ IBUS_BUTTON1_MASK = 1 << 8,
+ IBUS_BUTTON2_MASK = 1 << 9,
+ IBUS_BUTTON3_MASK = 1 << 10,
+ IBUS_BUTTON4_MASK = 1 << 11,
+ IBUS_BUTTON5_MASK = 1 << 12,
+
+ /* The next few modifiers are used by XKB, so we skip to the end.
+ * Bits 15 - 25 are currently unused. Bit 29 is used internally.
+ */
+
+ /* forard mask */
+ IBUS_FORWARD_MASK = 1 << 25,
+
+ IBUS_SUPER_MASK = 1 << 26,
+ IBUS_HYPER_MASK = 1 << 27,
+ IBUS_META_MASK = 1 << 28,
+
+ IBUS_RELEASE_MASK = 1 << 30,
+
+ IBUS_MODIFIER_MASK = 0x5c001fff
+} IBusModifierType;
+
+typedef enum {
+ IBUS_CAP_PREEDIT_TEXT = 1 << 0,
+ IBUS_CAP_AUXILIARY_TEXT = 1 << 1,
+ IBUS_CAP_LOOKUP_TABLE = 1 << 2,
+ IBUS_CAP_FOCUS = 1 << 3,
+ IBUS_CAP_PROPERTY = 1 << 4,
+} IBusCapabilite;
+
+typedef struct _IBusRectangle IBusRectangle;
+struct _IBusRectangle {
+ gint x;
+ gint y;
+ gint width;
+ gint height;
+};
+
+typedef void (* IBusFreeFunc) (gpointer );
+
+#endif
+