mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
vulkan/window/xcb: implement keyboard support
This commit is contained in:
parent
8c53bcd404
commit
7127e88389
2 changed files with 84 additions and 11 deletions
|
@ -144,7 +144,10 @@ if not vulkan_dep.found() and get_option('vulkan').enabled()
|
||||||
endif
|
endif
|
||||||
|
|
||||||
xcb_dep = dependency('xcb', version : '>=1.10', required : get_option('x11'))
|
xcb_dep = dependency('xcb', version : '>=1.10', required : get_option('x11'))
|
||||||
if xcb_dep.found() and cc.has_header('vulkan/vulkan_xcb.h', dependencies : vulkan_dep)
|
xkbcommon_dep = dependency('xkbcommon', required : get_option('x11'))
|
||||||
|
xkbcommon_x11_dep = dependency('xkbcommon-x11', required : get_option('x11'))
|
||||||
|
|
||||||
|
if xcb_dep.found() and xkbcommon_dep.found() and xkbcommon_x11_dep.found() and cc.has_header('vulkan/vulkan_xcb.h', dependencies : vulkan_dep)
|
||||||
vulkan_sources += [
|
vulkan_sources += [
|
||||||
'xcb/gstvkdisplay_xcb.c',
|
'xcb/gstvkdisplay_xcb.c',
|
||||||
'xcb/gstvkwindow_xcb.c',
|
'xcb/gstvkwindow_xcb.c',
|
||||||
|
@ -154,10 +157,10 @@ if xcb_dep.found() and cc.has_header('vulkan/vulkan_xcb.h', dependencies : vulka
|
||||||
'xcb/gstvkdisplay_xcb.h'
|
'xcb/gstvkdisplay_xcb.h'
|
||||||
]
|
]
|
||||||
|
|
||||||
optional_deps += xcb_dep
|
optional_deps += [xcb_dep, xkbcommon_dep, xkbcommon_x11_dep]
|
||||||
vulkan_windowing = true
|
vulkan_windowing = true
|
||||||
vulkan_conf.set10('GST_VULKAN_HAVE_WINDOW_XCB', 1)
|
vulkan_conf.set10('GST_VULKAN_HAVE_WINDOW_XCB', 1)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
wayland_client_dep = dependency('wayland-client', version : '>=1.4', required : get_option('wayland'))
|
wayland_client_dep = dependency('wayland-client', version : '>=1.4', required : get_option('wayland'))
|
||||||
if wayland_client_dep.found() and cc.has_header('vulkan/vulkan_wayland.h', dependencies : vulkan_dep)
|
if wayland_client_dep.found() and cc.has_header('vulkan/vulkan_wayland.h', dependencies : vulkan_dep)
|
||||||
|
|
|
@ -28,6 +28,9 @@
|
||||||
#include "gstvkwindow_xcb.h"
|
#include "gstvkwindow_xcb.h"
|
||||||
#include "gstvkdisplay_xcb.h"
|
#include "gstvkdisplay_xcb.h"
|
||||||
|
|
||||||
|
#include <xkbcommon/xkbcommon.h>
|
||||||
|
#include <xkbcommon/xkbcommon-x11.h>
|
||||||
|
|
||||||
#define GET_PRIV(o) gst_vulkan_window_xcb_get_instance_private (o)
|
#define GET_PRIV(o) gst_vulkan_window_xcb_get_instance_private (o)
|
||||||
|
|
||||||
#define GST_CAT_DEFAULT gst_vulkan_window_xcb_debug
|
#define GST_CAT_DEFAULT gst_vulkan_window_xcb_debug
|
||||||
|
@ -60,6 +63,12 @@ struct _GstVulkanWindowXCBPrivate
|
||||||
|
|
||||||
xcb_intern_atom_reply_t *atom_wm_delete_window;
|
xcb_intern_atom_reply_t *atom_wm_delete_window;
|
||||||
gboolean handle_events;
|
gboolean handle_events;
|
||||||
|
|
||||||
|
guint8 first_xkb_event;
|
||||||
|
gint32 kbd_device_id;
|
||||||
|
struct xkb_context *xkb_ctx;
|
||||||
|
struct xkb_keymap *xkb_keymap;
|
||||||
|
struct xkb_state *xkb_state;
|
||||||
};
|
};
|
||||||
|
|
||||||
#define gst_vulkan_window_xcb_parent_class parent_class
|
#define gst_vulkan_window_xcb_parent_class parent_class
|
||||||
|
@ -157,6 +166,44 @@ gst_vulkan_window_xcb_hide (GstVulkanWindow * window)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static gboolean
|
||||||
|
init_keyboard (GstVulkanWindowXCB * window_xcb)
|
||||||
|
{
|
||||||
|
GstVulkanWindowXCBPrivate *priv = GET_PRIV (window_xcb);
|
||||||
|
GstVulkanWindow *window = GST_VULKAN_WINDOW (window_xcb);
|
||||||
|
GstVulkanDisplayXCB *display_xcb = GST_VULKAN_DISPLAY_XCB (window->display);
|
||||||
|
xcb_connection_t *connection =
|
||||||
|
GST_VULKAN_DISPLAY_XCB_CONNECTION (display_xcb);
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
ret = xkb_x11_setup_xkb_extension (connection,
|
||||||
|
XKB_X11_MIN_MAJOR_XKB_VERSION,
|
||||||
|
XKB_X11_MIN_MINOR_XKB_VERSION,
|
||||||
|
XKB_X11_SETUP_XKB_EXTENSION_NO_FLAGS,
|
||||||
|
NULL, NULL, &priv->first_xkb_event, NULL);
|
||||||
|
if (!ret) {
|
||||||
|
GST_ERROR_OBJECT (window_xcb, "Couldn't setup XKB extension\n");
|
||||||
|
return FALSE;;
|
||||||
|
}
|
||||||
|
|
||||||
|
priv->xkb_ctx = xkb_context_new (0);
|
||||||
|
if (!priv->xkb_ctx)
|
||||||
|
return FALSE;
|
||||||
|
|
||||||
|
priv->kbd_device_id = xkb_x11_get_core_keyboard_device_id (connection);
|
||||||
|
|
||||||
|
priv->xkb_keymap = xkb_x11_keymap_new_from_device (priv->xkb_ctx,
|
||||||
|
connection, priv->kbd_device_id, XKB_KEYMAP_COMPILE_NO_FLAGS);
|
||||||
|
if (!priv->xkb_keymap)
|
||||||
|
return FALSE;
|
||||||
|
priv->xkb_state = xkb_x11_state_new_from_device (priv->xkb_keymap,
|
||||||
|
connection, priv->kbd_device_id);
|
||||||
|
if (!priv->xkb_state)
|
||||||
|
return FALSE;
|
||||||
|
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
gst_vulkan_window_xcb_create_window (GstVulkanWindowXCB * window_xcb)
|
gst_vulkan_window_xcb_create_window (GstVulkanWindowXCB * window_xcb)
|
||||||
{
|
{
|
||||||
|
@ -208,6 +255,8 @@ gst_vulkan_window_xcb_create_window (GstVulkanWindowXCB * window_xcb)
|
||||||
g_free (reply);
|
g_free (reply);
|
||||||
g_free (reply2);
|
g_free (reply2);
|
||||||
|
|
||||||
|
init_keyboard (window_xcb);
|
||||||
|
|
||||||
gst_vulkan_window_xcb_show (GST_VULKAN_WINDOW (window_xcb));
|
gst_vulkan_window_xcb_show (GST_VULKAN_WINDOW (window_xcb));
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
@ -323,6 +372,16 @@ gst_vulkan_window_xcb_close (GstVulkanWindow * window)
|
||||||
GST_DEBUG ("display receiver closed");
|
GST_DEBUG ("display receiver closed");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (priv->xkb_state)
|
||||||
|
xkb_state_unref (priv->xkb_state);
|
||||||
|
priv->xkb_state = NULL;
|
||||||
|
if (priv->xkb_keymap)
|
||||||
|
xkb_keymap_unref (priv->xkb_keymap);
|
||||||
|
priv->xkb_keymap = NULL;
|
||||||
|
if (priv->xkb_ctx)
|
||||||
|
xkb_context_unref (priv->xkb_ctx);
|
||||||
|
priv->xkb_ctx = NULL;
|
||||||
|
|
||||||
GST_VULKAN_WINDOW_CLASS (parent_class)->close (window);
|
GST_VULKAN_WINDOW_CLASS (parent_class)->close (window);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -335,6 +394,7 @@ gboolean
|
||||||
gst_vulkan_window_xcb_handle_event (GstVulkanWindowXCB * window_xcb,
|
gst_vulkan_window_xcb_handle_event (GstVulkanWindowXCB * window_xcb,
|
||||||
xcb_generic_event_t * event)
|
xcb_generic_event_t * event)
|
||||||
{
|
{
|
||||||
|
GstVulkanWindowXCBPrivate *priv = GET_PRIV (window_xcb);
|
||||||
GstVulkanDisplayXCB *display_xcb =
|
GstVulkanDisplayXCB *display_xcb =
|
||||||
GST_VULKAN_DISPLAY_XCB (window_xcb->parent.display);
|
GST_VULKAN_DISPLAY_XCB (window_xcb->parent.display);
|
||||||
xcb_connection_t *connection =
|
xcb_connection_t *connection =
|
||||||
|
@ -384,26 +444,36 @@ gst_vulkan_window_xcb_handle_event (GstVulkanWindowXCB * window_xcb,
|
||||||
gst_vulkan_window_redraw (GST_VULKAN_WINDOW (window_xcb));
|
gst_vulkan_window_redraw (GST_VULKAN_WINDOW (window_xcb));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
#if 0
|
|
||||||
case XCB_KEY_PRESS:
|
case XCB_KEY_PRESS:
|
||||||
case XCB_KEY_RELEASE:{
|
case XCB_KEY_RELEASE:{
|
||||||
xcb_key_press_event_t *kp = (xcb_key_press_event_t *) event;
|
xcb_key_press_event_t *kp = (xcb_key_press_event_t *) event;
|
||||||
const gchar *event_type_str;
|
int nsyms;
|
||||||
gchar *key_str;
|
const xkb_keysym_t *syms;
|
||||||
KeySym keysym;
|
const char *event_type_str;
|
||||||
|
|
||||||
keysym = XkbKeycodeToKeysym (connection, kp->detail, 0, 0);
|
if (!priv->xkb_state)
|
||||||
key_str = XKeysymToString (keysym);
|
/* no xkb support. What year is this?! */
|
||||||
|
break;
|
||||||
|
|
||||||
|
nsyms = xkb_state_key_get_syms (priv->xkb_state, kp->detail, &syms);
|
||||||
|
|
||||||
if (event_code == XCB_KEY_PRESS)
|
if (event_code == XCB_KEY_PRESS)
|
||||||
event_type_str = "key-press";
|
event_type_str = "key-press";
|
||||||
else
|
else
|
||||||
event_type_str = "key-release";
|
event_type_str = "key-release";
|
||||||
|
|
||||||
gst_vulkan_window_send_key_event (window, event_type_str, key_str);
|
/* TODO: compose states, keymap changes */
|
||||||
|
if (nsyms <= 0)
|
||||||
|
break;
|
||||||
|
|
||||||
|
for (int i = 0; i < nsyms; i++) {
|
||||||
|
char s[64];
|
||||||
|
xkb_keysym_get_name (syms[i], s, sizeof (s));
|
||||||
|
gst_vulkan_window_send_key_event (GST_VULKAN_WINDOW (window_xcb),
|
||||||
|
event_type_str, s);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
case XCB_BUTTON_PRESS:
|
case XCB_BUTTON_PRESS:
|
||||||
case XCB_BUTTON_RELEASE:{
|
case XCB_BUTTON_RELEASE:{
|
||||||
xcb_button_press_event_t *bp = (xcb_button_press_event_t *) event;
|
xcb_button_press_event_t *bp = (xcb_button_press_event_t *) event;
|
||||||
|
|
Loading…
Reference in a new issue