|
SCIMBridge 0.4.x
|
00001 /* 00002 * SCIM Bridge 00003 * 00004 * Copyright (c) 2006 Ryo Dairiki <ryo-dairiki@users.sourceforge.net> 00005 * 00006 * 00007 * This library is free software; you can redistribute it and/or 00008 * modify it under the terms of the GNU Lesser General Public 00009 * License as published by the Free Software Foundation and 00010 * appearing in the file LICENSE.LGPL included in the package of this file. 00011 * You can also redistribute it and/or modify it under the terms of 00012 * the GNU General Public License as published by the Free Software Foundation and 00013 * appearing in the file LICENSE.GPL included in the package of this file. 00014 * 00015 * This library is distributed in the hope that it will be useful, 00016 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00017 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00018 */ 00019 00020 #include <stdint.h> 00021 00027 #ifndef SCIMBRIDGEIMCONTEXT_H_ 00028 #define SCIMBRIDGEIMCONTEXT_H_ 00029 00030 enum _scim_bridge_preedit_mode_t 00031 { 00032 PREEDIT_FLOATING, 00033 PREEDIT_HANGING, 00034 PREEDIT_EMBEDDED, 00035 PREEDIT_ANY, 00036 }; 00037 00041 typedef enum _scim_bridge_preedit_mode_t scim_bridge_preedit_mode_t; 00042 00047 typedef int scim_bridge_imcontext_id_t; 00048 #endif /*SCIMBRIDGEIMCONTEXT_H_*/
1.7.3