imwayland: Handle enter and leave events

Before this patch, imwayland would assume that text-input enter and leave events follow the general (wl_keyboard) focus, and was unable to handle the situation where they would not be provided at the same time.
This commit is contained in:
Dorota Czaplejewicz
2018-10-16 16:29:08 +00:00
parent 220f77d8c1
commit c477201afc

View File

@ -42,6 +42,10 @@ struct _GtkIMContextWaylandGlobal
GtkIMContext *current; GtkIMContext *current;
/* The input-method.enter event may happen before or after GTK focus-in,
* so the context may not exist at the time. Same for leave and focus-out. */
gboolean focused;
guint serial; guint serial;
}; };
@ -116,6 +120,13 @@ static const GtkIMContextInfo *info_list[] =
#define MODULE_ENTRY(type, function) type _gtk_immodule_wayland_ ## function #define MODULE_ENTRY(type, function) type _gtk_immodule_wayland_ ## function
#endif #endif
static void
enable (GtkIMContextWayland *context_wayland);
static void
disable (GtkIMContextWayland *context_wayland);
static void static void
notify_external_change (GtkIMContextWayland *context) notify_external_change (GtkIMContextWayland *context)
{ {
@ -132,13 +143,23 @@ static void
text_input_enter (void *data, text_input_enter (void *data,
struct zwp_text_input_v3 *text_input, struct zwp_text_input_v3 *text_input,
struct wl_surface *surface) struct wl_surface *surface)
{} {
global->focused = TRUE;
if (global->current)
enable (GTK_IM_CONTEXT_WAYLAND (global->current));
}
static void static void
text_input_leave (void *data, text_input_leave (void *data,
struct zwp_text_input_v3 *text_input, struct zwp_text_input_v3 *text_input,
struct wl_surface *surface) struct wl_surface *surface)
{} {
global->focused = FALSE;
if (global->current)
disable (GTK_IM_CONTEXT_WAYLAND (global->current));
}
static void static void
text_input_preedit (void *data, text_input_preedit (void *data,
@ -466,12 +487,6 @@ commit_state (GtkIMContextWayland *context)
context->surrounding_change = ZWP_TEXT_INPUT_V3_CHANGE_CAUSE_INPUT_METHOD; context->surrounding_change = ZWP_TEXT_INPUT_V3_CHANGE_CAUSE_INPUT_METHOD;
} }
static void
enable_text_input (GtkIMContextWayland *context)
{
zwp_text_input_v3_enable (global->text_input);
}
static void static void
gtk_im_context_wayland_finalize (GObject *object) gtk_im_context_wayland_finalize (GObject *object)
{ {
@ -512,14 +527,15 @@ released_cb (GtkGestureMultiPress *gesture,
g_object_get (context, "input-hints", &hints, NULL); g_object_get (context, "input-hints", &hints, NULL);
if (n_press == 1 && if (global->focused &&
n_press == 1 &&
(hints & GTK_INPUT_HINT_INHIBIT_OSK) == 0 && (hints & GTK_INPUT_HINT_INHIBIT_OSK) == 0 &&
!gtk_drag_check_threshold (context->widget, !gtk_drag_check_threshold (context->widget,
context->press_x, context->press_x,
context->press_y, context->press_y,
x, y)) x, y))
{ {
enable_text_input (GTK_IM_CONTEXT_WAYLAND (context)); zwp_text_input_v3_enable (global->text_input);
g_signal_emit_by_name (global->current, "retrieve-surrounding", &result); g_signal_emit_by_name (global->current, "retrieve-surrounding", &result);
commit_state (context); commit_state (context);
} }
@ -623,18 +639,10 @@ gtk_im_context_wayland_filter_keypress (GtkIMContext *context,
} }
static void static void
gtk_im_context_wayland_focus_in (GtkIMContext *context) enable (GtkIMContextWayland *context_wayland)
{ {
GtkIMContextWayland *context_wayland = GTK_IM_CONTEXT_WAYLAND (context);
gboolean result; gboolean result;
zwp_text_input_v3_enable (global->text_input);
if (global->current == context)
return;
if (!global->text_input)
return;
global->current = context;
enable_text_input (context_wayland);
g_signal_emit_by_name (global->current, "retrieve-surrounding", &result); g_signal_emit_by_name (global->current, "retrieve-surrounding", &result);
notify_content_type (context_wayland); notify_content_type (context_wayland);
notify_cursor_location (context_wayland); notify_cursor_location (context_wayland);
@ -642,15 +650,8 @@ gtk_im_context_wayland_focus_in (GtkIMContext *context)
} }
static void static void
gtk_im_context_wayland_focus_out (GtkIMContext *context) disable (GtkIMContextWayland *context_wayland)
{ {
GtkIMContextWayland *context_wayland;
if (global->current != context)
return;
context_wayland = GTK_IM_CONTEXT_WAYLAND (context);
zwp_text_input_v3_disable (global->text_input); zwp_text_input_v3_disable (global->text_input);
commit_state (context_wayland); commit_state (context_wayland);
@ -660,6 +661,34 @@ gtk_im_context_wayland_focus_out (GtkIMContext *context)
text_input_preedit (global, global->text_input, NULL, 0, 0); text_input_preedit (global, global->text_input, NULL, 0, 0);
text_input_preedit_apply (global); text_input_preedit_apply (global);
} }
}
static void
gtk_im_context_wayland_focus_in (GtkIMContext *context)
{
GtkIMContextWayland *context_wayland = GTK_IM_CONTEXT_WAYLAND (context);
if (global->current == context)
return;
if (!global->text_input)
return;
global->current = context;
if (global->focused)
enable (context_wayland);
}
static void
gtk_im_context_wayland_focus_out (GtkIMContext *context)
{
GtkIMContextWayland *context_wayland = GTK_IM_CONTEXT_WAYLAND (context);
if (global->current != context)
return;
if (global->focused)
disable (context_wayland);
global->current = NULL; global->current = NULL;
} }