Bram Moolenaar | f15c8b6 | 2020-06-01 14:34:43 +0200 | [diff] [blame] | 1 | /* gui_xim.c */ |
Yegappan Lakshmanan | 7645da5 | 2021-12-04 14:02:30 +0000 | [diff] [blame] | 2 | int set_imactivatefunc_option(void); |
| 3 | int set_imstatusfunc_option(void); |
| 4 | void free_xim_stuff(void); |
Yegappan Lakshmanan | 6ae8fae | 2021-12-12 16:26:44 +0000 | [diff] [blame] | 5 | int set_ref_in_im_funcs(int copyID); |
Bram Moolenaar | f15c8b6 | 2020-06-01 14:34:43 +0200 | [diff] [blame] | 6 | void im_set_active(int active); |
| 7 | void xim_set_focus(int focus); |
| 8 | void im_set_position(int row, int col); |
| 9 | void xim_set_preedit(void); |
| 10 | int im_get_feedback_attr(int col); |
| 11 | void xim_init(void); |
| 12 | void im_shutdown(void); |
| 13 | int im_xim_isvalid_imactivate(void); |
| 14 | void xim_reset(void); |
| 15 | int xim_queue_key_press_event(GdkEventKey *event, int down); |
| 16 | int im_get_status(void); |
| 17 | int preedit_get_status(void); |
| 18 | int im_is_preediting(void); |
| 19 | void xim_set_status_area(void); |
| 20 | int xim_get_status_area_height(void); |
| 21 | /* vim: set ft=c : */ |