efl/src/modules/ecore_imf/ibus/ibus_module.c

124 lines
4.1 KiB
C

#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <stdio.h>
#include <Ecore.h>
#include <Ecore_IMF.h>
#include <ibus.h>
#include "ibus_imcontext.h"
#define IBUS_LOCALDIR ""
static const Ecore_IMF_Context_Info ibus_im_info = {
"ibus",
"IBus (Intelligent Input Bus)",
"*",
NULL,
0
};
static Ecore_IMF_Context_Class ibus_imf_class = {
ecore_imf_context_ibus_add, /* add */
ecore_imf_context_ibus_del, /* del */
ecore_imf_context_ibus_client_window_set, /* client_window_set */
ecore_imf_context_ibus_client_canvas_set, /* client_canvas_set */
NULL, /* input_panel_show */
NULL, /* input_panel_hide */
ecore_imf_context_ibus_preedit_string_get, /* get_preedit_string */
ecore_imf_context_ibus_focus_in, /* focus_in */
ecore_imf_context_ibus_focus_out, /* focus_out */
ecore_imf_context_ibus_reset, /* reset */
NULL, /* cursor_position_set */
ecore_imf_context_ibus_use_preedit_set, /* use_preedit_set */
NULL, /* input_mode_set */
ecore_imf_context_ibus_filter_event, /* filter_event */
ecore_imf_context_ibus_preedit_string_with_attributes_get, /* preedit_string_with_attribute_get */
NULL, /* prediction_allow_set */
NULL, /* autocapital_type_set */
NULL, /* control panel show */
NULL, /* control panel hide */
NULL, /* input_panel_layout_set */
NULL, /* ecore_imf_context_ibus_input_panel_layout_get, */
NULL, /* ecore_imf_context_ibus_input_panel_language_set, */
NULL, /* ecore_imf_context_ibus_input_panel_language_get, */
ecore_imf_context_ibus_cursor_location_set, /* cursor_location_set */
NULL, /* input_panel_imdata_set */
NULL, /* input_panel_imdata_get */
NULL, /* input_panel_return_key_type_set */
NULL, /* input_panel_return_key_disabled_set */
NULL, /* input_panel_caps_lock_mode_set */
NULL, // input_panel_geometry_get
NULL, // input_panel_state_get
NULL, // input_panel_event_callback_add
NULL, // input_panel_event_callback_del
NULL, // input_panel_language_locale_get
NULL, // candidate_panel_geometry_get
NULL, // input_hint_set
NULL, // bidi_direction_set
NULL, // keyboard_mode_get
NULL, // prediction_hint_set
NULL, // mime_type_accept_set
NULL // input_panel_position_set
};
static Ecore_IMF_Context *im_module_create(void);
static Ecore_IMF_Context *im_module_exit(void);
static Eina_Bool
im_module_init(void)
{
const char *s;
if (!getenv("DISPLAY")) return EINA_FALSE;
if ((s = getenv("ELM_DISPLAY")))
{
if (strcmp(s, "x11")) return EINA_FALSE;
}
ecore_main_loop_glib_integrate();
ibus_init();
ecore_imf_module_register(&ibus_im_info, im_module_create, im_module_exit);
return EINA_TRUE;
}
static void im_module_shutdown(void)
{
ecore_imf_context_ibus_shutdown();
}
static Ecore_IMF_Context *
im_module_exit(void)
{
return NULL;
}
static Ecore_IMF_Context *
im_module_create(void)
{
Ecore_IMF_Context *ctx = NULL;
IBusIMContext *ctxd = NULL;
ctxd = ecore_imf_context_ibus_new();
if (!ctxd)
{
return NULL;
}
ctx = ecore_imf_context_new(&ibus_imf_class);
if (!ctx)
{
free(ctxd);
return NULL;
}
ecore_imf_context_data_set(ctx, ctxd);
return ctx;
}
EINA_MODULE_INIT(im_module_init);
EINA_MODULE_SHUTDOWN(im_module_shutdown);