mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice-gtk
synced 2025-12-26 14:18:38 +00:00
In case version script support is not available we can still able to filter symbols exported. This for instance will work with linkers not supporting --version-script (like system MacOS one). Use new version macros similar to Glib to detect also deprecated function. Tested that exported symbols remains the same from both Linux and Windows shared libraries. Signed-off-by: Frediano Ziglio <freddy77@gmail.com>
306 lines
8.5 KiB
C
306 lines
8.5 KiB
C
/*
|
|
* Copyright (C) 2008 Anthony Liguori <anthony@codemonkey.ws>
|
|
* Copyright (C) 2009-2010 Daniel P. Berrange <dan@berrange.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
*/
|
|
#include "config.h"
|
|
|
|
#include <gtk/gtk.h>
|
|
#include <gdk/gdk.h>
|
|
#include <gdk/gdkkeysyms.h>
|
|
#include "vncdisplaykeymap.h"
|
|
|
|
#include "spice-common.h"
|
|
|
|
#undef G_LOG_DOMAIN
|
|
#define G_LOG_DOMAIN "vnc-keymap"
|
|
#define VNC_DEBUG(message) SPICE_DEBUG(message);
|
|
|
|
/*
|
|
* This table is taken from QEMU x_keymap.c, under the terms:
|
|
*
|
|
* Copyright (c) 2003 Fabrice Bellard
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*/
|
|
|
|
|
|
/* keycode translation for sending ISO_Left_Send
|
|
* to vncserver
|
|
*/
|
|
static struct {
|
|
GdkKeymapKey *keys;
|
|
gint n_keys;
|
|
guint keyval;
|
|
} untranslated_keys[] = {{NULL, 0, GDK_KEY_Tab}};
|
|
|
|
static unsigned int ref_count_for_untranslated_keys = 0;
|
|
|
|
#ifdef GDK_WINDOWING_WAYLAND
|
|
#include <gdk/gdkwayland.h>
|
|
#endif
|
|
|
|
#ifdef GDK_WINDOWING_BROADWAY
|
|
#include <gdk/gdkbroadway.h>
|
|
#endif
|
|
|
|
#if defined(GDK_WINDOWING_X11) || defined(GDK_WINDOWING_WAYLAND)
|
|
/* Xorg Linux + evdev (offset evdev keycodes) */
|
|
#include "vncdisplaykeymap_xorgevdev2xtkbd.h"
|
|
#endif
|
|
|
|
#ifdef GDK_WINDOWING_X11
|
|
#include <gdk/gdkx.h>
|
|
#include <X11/XKBlib.h>
|
|
#include <stdbool.h>
|
|
#include <string.h>
|
|
|
|
/* Xorg Linux + kbd (offset + mangled XT keycodes) */
|
|
#include "vncdisplaykeymap_xorgkbd2xtkbd.h"
|
|
/* Xorg OS-X aka XQuartz (offset OS-X keycodes) */
|
|
#include "vncdisplaykeymap_xorgxquartz2xtkbd.h"
|
|
/* Xorg Cygwin aka XWin (offset + mangled XT keycodes) */
|
|
#include "vncdisplaykeymap_xorgxwin2xtkbd.h"
|
|
|
|
#endif
|
|
|
|
#ifdef GDK_WINDOWING_WIN32
|
|
#include <gdk/gdkwin32.h>
|
|
|
|
/* Win32 native virtual keycodes */
|
|
#include "vncdisplaykeymap_win322xtkbd.h"
|
|
#endif
|
|
|
|
#ifdef GDK_WINDOWING_QUARTZ
|
|
#include <gdk/gdkquartz.h>
|
|
|
|
/* OS-X native keycodes */
|
|
#include "vncdisplaykeymap_osx2xtkbd.h"
|
|
#endif
|
|
|
|
#ifdef GDK_WINDOWING_BROADWAY
|
|
/* X11 keysyms */
|
|
#include "vncdisplaykeymap_x112xtkbd.h"
|
|
#endif
|
|
|
|
#ifdef GDK_WINDOWING_X11
|
|
|
|
#define STRPREFIX(a,b) (strncmp((a),(b),strlen((b))) == 0)
|
|
|
|
static gboolean check_for_xwin(GdkDisplay *dpy)
|
|
{
|
|
char *vendor = ServerVendor(gdk_x11_display_get_xdisplay(dpy));
|
|
|
|
if (strstr(vendor, "Cygwin/X"))
|
|
return TRUE;
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
static gboolean check_for_xquartz(GdkDisplay *dpy)
|
|
{
|
|
int nextensions;
|
|
int i;
|
|
gboolean match = FALSE;
|
|
char **extensions = XListExtensions(gdk_x11_display_get_xdisplay(dpy),
|
|
&nextensions);
|
|
for (i = 0 ; extensions != NULL && i < nextensions ; i++) {
|
|
if (strcmp(extensions[i], "Apple-WM") == 0 ||
|
|
strcmp(extensions[i], "Apple-DRI") == 0)
|
|
match = TRUE;
|
|
}
|
|
if (extensions)
|
|
XFreeExtensionList(extensions);
|
|
|
|
return match;
|
|
}
|
|
#endif
|
|
|
|
const guint16 *vnc_display_keymap_gdk2xtkbd_table(GdkWindow *window,
|
|
size_t *maplen)
|
|
{
|
|
#ifdef GDK_WINDOWING_X11
|
|
if (GDK_IS_X11_WINDOW(window)) {
|
|
XkbDescPtr desc;
|
|
const gchar *keycodes = NULL;
|
|
GdkDisplay *dpy = gdk_window_get_display(window);
|
|
|
|
/* There is no easy way to determine what X11 server
|
|
* and platform & keyboard driver is in use. Thus we
|
|
* do best guess heuristics.
|
|
*
|
|
* This will need more work for people with other
|
|
* X servers..... patches welcomed.
|
|
*/
|
|
|
|
Display *xdisplay = gdk_x11_display_get_xdisplay(dpy);
|
|
desc = XkbGetMap(xdisplay,
|
|
XkbGBN_AllComponentsMask,
|
|
XkbUseCoreKbd);
|
|
if (desc) {
|
|
if (XkbGetNames(xdisplay, XkbKeycodesNameMask, desc) == Success) {
|
|
keycodes = gdk_x11_get_xatom_name(desc->names->keycodes);
|
|
if (!keycodes)
|
|
g_warning("could not lookup keycode name");
|
|
}
|
|
XkbFreeKeyboard(desc, XkbGBN_AllComponentsMask, True);
|
|
}
|
|
|
|
if (check_for_xwin(dpy)) {
|
|
VNC_DEBUG("Using xwin keycode mapping");
|
|
*maplen = G_N_ELEMENTS(keymap_xorgxwin2xtkbd);
|
|
return keymap_xorgxwin2xtkbd;
|
|
} else if (check_for_xquartz(dpy)) {
|
|
VNC_DEBUG("Using xquartz keycode mapping");
|
|
*maplen = G_N_ELEMENTS(keymap_xorgxquartz2xtkbd);
|
|
return keymap_xorgxquartz2xtkbd;
|
|
} else if ((keycodes && STRPREFIX(keycodes, "evdev")) ||
|
|
(XKeysymToKeycode(xdisplay, XK_Page_Up) == 0x70)) {
|
|
VNC_DEBUG("Using evdev keycode mapping");
|
|
*maplen = G_N_ELEMENTS(keymap_xorgevdev2xtkbd);
|
|
return keymap_xorgevdev2xtkbd;
|
|
} else if ((keycodes && STRPREFIX(keycodes, "xfree86")) ||
|
|
(XKeysymToKeycode(xdisplay, XK_Page_Up) == 0x63)) {
|
|
VNC_DEBUG("Using xfree86 keycode mapping");
|
|
*maplen = G_N_ELEMENTS(keymap_xorgkbd2xtkbd);
|
|
return keymap_xorgkbd2xtkbd;
|
|
} else {
|
|
g_warning("Unknown keycode mapping '%s'.\n"
|
|
"Please report to gtk-vnc-list@gnome.org\n"
|
|
"including the following information:\n"
|
|
"\n"
|
|
" - Operating system\n"
|
|
" - GDK build\n"
|
|
" - X11 Server\n"
|
|
" - xprop -root\n"
|
|
" - xdpyinfo\n",
|
|
keycodes);
|
|
return NULL;
|
|
}
|
|
}
|
|
#endif
|
|
|
|
#ifdef GDK_WINDOWING_WIN32
|
|
if (GDK_IS_WIN32_WINDOW(window)) {
|
|
VNC_DEBUG("Using Win32 virtual keycode mapping");
|
|
*maplen = G_N_ELEMENTS(keymap_win322xtkbd);
|
|
return keymap_win322xtkbd;
|
|
}
|
|
#endif
|
|
|
|
#ifdef GDK_WINDOWING_QUARTZ
|
|
if (GDK_IS_QUARTZ_WINDOW(window)) {
|
|
VNC_DEBUG("Using OS-X virtual keycode mapping");
|
|
*maplen = G_N_ELEMENTS(keymap_osx2xtkbd);
|
|
return keymap_osx2xtkbd;
|
|
}
|
|
#endif
|
|
|
|
#ifdef GDK_WINDOWING_WAYLAND
|
|
if (GDK_IS_WAYLAND_WINDOW(window)) {
|
|
VNC_DEBUG("Using Wayland Xorg/evdev virtual keycode mapping");
|
|
*maplen = G_N_ELEMENTS(keymap_xorgevdev2xtkbd);
|
|
return keymap_xorgevdev2xtkbd;
|
|
}
|
|
#endif
|
|
|
|
#ifdef GDK_WINDOWING_BROADWAY
|
|
if (GDK_IS_BROADWAY_WINDOW(window)) {
|
|
g_warning("experimental: using broadway, x11 virtual keysym mapping - with very limited support. See also https://bugzilla.gnome.org/show_bug.cgi?id=700105");
|
|
|
|
*maplen = G_N_ELEMENTS(keymap_x112xtkbd);
|
|
return keymap_x112xtkbd;
|
|
}
|
|
#endif
|
|
|
|
g_warning("Unsupported GDK Windowing platform.\n"
|
|
"Disabling extended keycode tables.\n"
|
|
"Please report to gtk-vnc-list@gnome.org\n"
|
|
"including the following information:\n"
|
|
"\n"
|
|
" - Operating system\n"
|
|
" - GDK Windowing system build\n");
|
|
return NULL;
|
|
}
|
|
|
|
guint16 vnc_display_keymap_gdk2xtkbd(const guint16 *keycode_map,
|
|
size_t keycode_maplen,
|
|
guint16 keycode)
|
|
{
|
|
if (!keycode_map)
|
|
return 0;
|
|
if (keycode >= keycode_maplen)
|
|
return 0;
|
|
return keycode_map[keycode];
|
|
}
|
|
|
|
/* Set the keymap entries */
|
|
void vnc_display_keyval_set_entries(void)
|
|
{
|
|
size_t i;
|
|
GdkKeymap *keymap = gdk_keymap_get_for_display(gdk_display_get_default());
|
|
|
|
if (ref_count_for_untranslated_keys == 0)
|
|
for (i = 0; i < sizeof(untranslated_keys) / sizeof(untranslated_keys[0]); i++)
|
|
gdk_keymap_get_entries_for_keyval(keymap,
|
|
untranslated_keys[i].keyval,
|
|
&untranslated_keys[i].keys,
|
|
&untranslated_keys[i].n_keys);
|
|
ref_count_for_untranslated_keys++;
|
|
}
|
|
|
|
/* Free the keymap entries */
|
|
void vnc_display_keyval_free_entries(void)
|
|
{
|
|
size_t i;
|
|
|
|
if (ref_count_for_untranslated_keys == 0)
|
|
return;
|
|
|
|
ref_count_for_untranslated_keys--;
|
|
if (ref_count_for_untranslated_keys == 0)
|
|
for (i = 0; i < sizeof(untranslated_keys) / sizeof(untranslated_keys[0]); i++)
|
|
g_free(untranslated_keys[i].keys);
|
|
|
|
}
|
|
|
|
/* Get the keyval from the keycode without the level. */
|
|
guint vnc_display_keyval_from_keycode(guint keycode, guint keyval)
|
|
{
|
|
size_t i;
|
|
for (i = 0; i < sizeof(untranslated_keys) / sizeof(untranslated_keys[0]); i++) {
|
|
if (keycode == untranslated_keys[i].keys[0].keycode) {
|
|
return untranslated_keys[i].keyval;
|
|
}
|
|
}
|
|
|
|
return keyval;
|
|
}
|
|
/*
|
|
* Local variables:
|
|
* c-indent-level: 8
|
|
* c-basic-offset: 8
|
|
* tab-width: 8
|
|
* End:
|
|
*/
|