summaryrefslogtreecommitdiff
path: root/src/xwidget.c
diff options
context:
space:
mode:
authorPo Lu <luangruo@yahoo.com>2021-12-30 09:24:30 +0800
committerPo Lu <luangruo@yahoo.com>2021-12-30 09:24:30 +0800
commit14f074f95e2b57ddcd4b449fbdc04169290d0647 (patch)
tree9821a3daf4dff43d6d6fedaa2e719a46284ec382 /src/xwidget.c
parentfb4f2aa0389d7d10dfcc1b6d8601c2d5e80730f0 (diff)
downloademacs-14f074f95e2b57ddcd4b449fbdc04169290d0647.tar.gz
emacs-14f074f95e2b57ddcd4b449fbdc04169290d0647.tar.bz2
emacs-14f074f95e2b57ddcd4b449fbdc04169290d0647.zip
Translate crossing event mode when sending them to xwidgets
* src/xwidget.c (xi_translate_notify_detail): Use XI constants instead. (xwidget_motion_or_crossing): Translate XI entry event mode.
Diffstat (limited to 'src/xwidget.c')
-rw-r--r--src/xwidget.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/xwidget.c b/src/xwidget.c
index 30e9c2895d4..5aeb2beae2d 100644
--- a/src/xwidget.c
+++ b/src/xwidget.c
@@ -1235,15 +1235,15 @@ xi_translate_notify_detail (int detail)
{
switch (detail)
{
- case NotifyInferior:
+ case XINotifyInferior:
return GDK_NOTIFY_INFERIOR;
- case NotifyAncestor:
+ case XINotifyAncestor:
return GDK_NOTIFY_ANCESTOR;
- case NotifyVirtual:
+ case XINotifyVirtual:
return GDK_NOTIFY_VIRTUAL;
- case NotifyNonlinear:
+ case XINotifyNonlinear:
return GDK_NOTIFY_NONLINEAR;
- case NotifyNonlinearVirtual:
+ case XINotifyNonlinearVirtual:
return GDK_NOTIFY_NONLINEAR_VIRTUAL;
default:
emacs_abort ();
@@ -1328,6 +1328,7 @@ xwidget_motion_or_crossing (struct xwidget_view *view, const XEvent *event)
xg_event->crossing.y_root = (gdouble) xev->root_y;
xg_event->crossing.time = xev->time;
xg_event->crossing.focus = xev->focus;
+ xg_event->crossing.mode = xev->mode;
xg_event->crossing.detail = xi_translate_notify_detail (xev->detail);
xg_event->crossing.state = xev->mods.effective;