1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487
|
/* AT-SPI - Assistive Technology Service Provider Interface
*
* (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
*
* Copyright 2001, 2003 Sun Microsystems Inc.,
* Copyright 2001, 2002 Ximian, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
/* deviceeventcontroller-x11.c: X-specific DeviceEventController support */
#include <config.h>
#undef SPI_XKB_DEBUG
#undef SPI_DEBUG
#undef SPI_KEYEVENT_DEBUG
#include <string.h>
#include <ctype.h>
#include <stdio.h>
#include <sys/time.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/extensions/XTest.h>
#include <X11/XKBlib.h>
#define XK_MISCELLANY
#define XK_LATIN1
#include <X11/keysymdef.h>
#ifdef HAVE_XEVIE
#include <X11/Xproto.h>
#include <X11/X.h>
#include <X11/extensions/Xevie.h>
#endif /* HAVE_XEVIE */
#include <glib.h>
#include <dbus/dbus.h>
#include "paths.h"
#include "keymasks.h"
#include "de-types.h"
#include "de-marshaller.h"
#include "display.h"
#include "event-source.h"
#include "deviceeventcontroller.h"
#include "reentrant-list.h"
#include "introspection.h"
static void spi_dec_x11_emit_modifier_event (SpiDEController *controller,
guint prev_mask,
guint current_mask);
#define CHECK_RELEASE_DELAY 20
#define BIT(c, x) (c[x/8]&(1<<(x%8)))
static guint check_release_handler = 0;
static Accessibility_DeviceEvent pressed_event;
static void wait_for_release_event (XEvent *event, SpiDEController *controller);
static int spi_error_code = 0;
struct _SpiPoint {
gint x;
gint y;
};
typedef struct _SpiPoint SpiPoint;
static SpiPoint last_mouse_pos_static = {0, 0};
static SpiPoint *last_mouse_pos = &last_mouse_pos_static;
static unsigned int mouse_mask_state = 0;
static unsigned int mouse_button_mask =
Button1Mask | Button2Mask | Button3Mask | Button4Mask | Button5Mask;
static unsigned int key_modifier_mask =
Mod1Mask | Mod2Mask | Mod3Mask | Mod4Mask | Mod5Mask | ShiftMask | LockMask | ControlMask | SPI_KEYMASK_NUMLOCK;
static unsigned int _numlock_physical_mask = Mod2Mask; /* a guess, will be reset */
static XModifierKeymap* xmkeymap = NULL;
static int (*x_default_error_handler) (Display *display, XErrorEvent *error_event);
typedef struct {
Display *xevie_display;
unsigned int last_press_keycode;
unsigned int last_release_keycode;
struct timeval last_press_time;
struct timeval last_release_time;
int have_xkb;
int xkb_major_extension_opcode;
int xkb_base_event_code;
int xkb_base_error_code;
unsigned int xkb_latch_mask;
unsigned int pending_xkb_mod_relatch_mask;
XkbDescPtr xkb_desc;
KeyCode reserved_keycode;
KeySym reserved_keysym;
guint reserved_reset_timeout;
} DEControllerPrivateData;
static void spi_controller_register_with_devices (SpiDEController *controller);
static gboolean spi_device_event_controller_forward_key_event (SpiDEController *controller,
const XEvent *event);
static SpiDEController *saved_controller;
static unsigned int
keysym_mod_mask (KeySym keysym, KeyCode keycode)
{
/* we really should use XKB and look directly at the keymap */
/* this is very inelegant */
Display *display = spi_get_display ();
unsigned int mods_rtn = 0;
unsigned int retval = 0;
KeySym sym_rtn;
if (XkbLookupKeySym (display, keycode, 0, &mods_rtn, &sym_rtn) &&
(sym_rtn == keysym)) {
retval = 0;
}
else if (XkbLookupKeySym (display, keycode, ShiftMask, &mods_rtn, &sym_rtn) &&
(sym_rtn == keysym)) {
retval = ShiftMask;
}
else if (XkbLookupKeySym (display, keycode, Mod2Mask, &mods_rtn, &sym_rtn) &&
(sym_rtn == keysym)) {
retval = Mod2Mask;
}
else if (XkbLookupKeySym (display, keycode, Mod3Mask, &mods_rtn, &sym_rtn) &&
(sym_rtn == keysym)) {
retval = Mod3Mask;
}
else if (XkbLookupKeySym (display, keycode,
ShiftMask | Mod2Mask, &mods_rtn, &sym_rtn) &&
(sym_rtn == keysym)) {
retval = (Mod2Mask | ShiftMask);
}
else if (XkbLookupKeySym (display, keycode,
ShiftMask | Mod3Mask, &mods_rtn, &sym_rtn) &&
(sym_rtn == keysym)) {
retval = (Mod3Mask | ShiftMask);
}
else if (XkbLookupKeySym (display, keycode,
ShiftMask | Mod4Mask, &mods_rtn, &sym_rtn) &&
(sym_rtn == keysym)) {
retval = (Mod4Mask | ShiftMask);
}
else
retval = 0xFFFF;
return retval;
}
static gboolean
replace_map_keysym (DEControllerPrivateData *priv, KeyCode keycode, KeySym keysym)
{
#ifdef HAVE_XKB
Display *dpy = spi_get_display ();
XkbDescPtr desc;
if (!(desc = XkbGetMap (dpy, XkbAllMapComponentsMask, XkbUseCoreKbd)))
{
fprintf (stderr, "ERROR getting map\n");
}
XFlush (dpy);
XSync (dpy, False);
if (desc && desc->map)
{
gint offset = desc->map->key_sym_map[keycode].offset;
desc->map->syms[offset] = keysym;
}
else
{
fprintf (stderr, "Error changing key map: empty server structure\n");
}
XkbSetMap (dpy, XkbAllMapComponentsMask, desc);
/**
* FIXME: the use of XkbChangeMap, and the reuse of the priv->xkb_desc structure,
* would be far preferable.
* HOWEVER it does not seem to work using XFree 4.3.
**/
/* XkbChangeMap (dpy, priv->xkb_desc, priv->changes); */
XFlush (dpy);
XSync (dpy, False);
XkbFreeKeyboard (desc, 0, TRUE);
return TRUE;
#else
return FALSE;
#endif
}
static gboolean
spi_dec_reset_reserved (gpointer data)
{
DEControllerPrivateData *priv = data;
replace_map_keysym (priv, priv->reserved_keycode, priv->reserved_keysym);
priv->reserved_reset_timeout = 0;
return FALSE;
}
static gint
spi_dec_x11_get_keycode (SpiDEController *controller,
gint keysym,
gchar *key_str,
gboolean fix,
guint *modmask)
{
KeyCode keycode = 0;
if (key_str && key_str[0])
keysym = XStringToKeysym(key_str);
keycode = XKeysymToKeycode (spi_get_display (), (KeySym) keysym);
if (!keycode && fix)
{
DEControllerPrivateData *priv = controller->priv;
/* if there's no keycode available, fix it */
if (replace_map_keysym (priv, priv->reserved_keycode, keysym))
{
keycode = priv->reserved_keycode;
/*
* queue a timer to restore the old keycode. Ugly, but required
* due to races / asynchronous X delivery.
* Long-term fix is to extend the X keymap here instead of replace entries.
*/
priv->reserved_reset_timeout = g_timeout_add (500, spi_dec_reset_reserved, priv);
g_source_set_name_by_id (priv->reserved_reset_timeout, "[at-spi2-core] spi_dec_reset_reserved");
}
if (modmask)
*modmask = 0;
return keycode;
}
if (modmask)
*modmask = keysym_mod_mask (keysym, keycode);
return keycode;
}
static void
spi_dec_set_unlatch_pending (SpiDEController *controller, unsigned mask)
{
DEControllerPrivateData *priv = controller->priv;
#ifdef SPI_XKB_DEBUG
if (priv->xkb_latch_mask) fprintf (stderr, "unlatch pending! %x\n",
priv->xkb_latch_mask);
#endif
priv->pending_xkb_mod_relatch_mask |= priv->xkb_latch_mask;
}
static gboolean
spi_dec_button_update_and_emit (SpiDEController *controller,
guint mask_return)
{
Accessibility_DeviceEvent mouse_e;
gchar event_detail[3];
gboolean is_consumed = FALSE;
if ((mask_return & mouse_button_mask) !=
(mouse_mask_state & mouse_button_mask))
{
int button_number = 0;
gboolean is_down = False;
if (!(mask_return & Button1Mask) &&
(mouse_mask_state & Button1Mask))
{
mouse_mask_state &= ~Button1Mask;
button_number = 1;
}
else if ((mask_return & Button1Mask) &&
!(mouse_mask_state & Button1Mask))
{
mouse_mask_state |= Button1Mask;
button_number = 1;
is_down = True;
}
else if (!(mask_return & Button2Mask) &&
(mouse_mask_state & Button2Mask))
{
mouse_mask_state &= ~Button2Mask;
button_number = 2;
}
else if ((mask_return & Button2Mask) &&
!(mouse_mask_state & Button2Mask))
{
mouse_mask_state |= Button2Mask;
button_number = 2;
is_down = True;
}
else if (!(mask_return & Button3Mask) &&
(mouse_mask_state & Button3Mask))
{
mouse_mask_state &= ~Button3Mask;
button_number = 3;
}
else if ((mask_return & Button3Mask) &&
!(mouse_mask_state & Button3Mask))
{
mouse_mask_state |= Button3Mask;
button_number = 3;
is_down = True;
}
else if (!(mask_return & Button4Mask) &&
(mouse_mask_state & Button4Mask))
{
mouse_mask_state &= ~Button4Mask;
button_number = 4;
}
else if ((mask_return & Button4Mask) &&
!(mouse_mask_state & Button4Mask))
{
mouse_mask_state |= Button4Mask;
button_number = 4;
is_down = True;
}
else if (!(mask_return & Button5Mask) &&
(mouse_mask_state & Button5Mask))
{
mouse_mask_state &= ~Button5Mask;
button_number = 5;
}
else if ((mask_return & Button5Mask) &&
!(mouse_mask_state & Button5Mask))
{
mouse_mask_state |= Button5Mask;
button_number = 5;
is_down = True;
}
if (button_number) {
#ifdef SPI_DEBUG
fprintf (stderr, "Button %d %s\n",
button_number, (is_down) ? "Pressed" : "Released");
#endif
snprintf (event_detail, 3, "%d%c", button_number,
(is_down) ? 'p' : 'r');
/* TODO: FIXME distinguish between physical and
* logical buttons
*/
mouse_e.type = (is_down) ?
Accessibility_BUTTON_PRESSED_EVENT :
Accessibility_BUTTON_RELEASED_EVENT;
mouse_e.id = button_number;
mouse_e.hw_code = button_number;
mouse_e.modifiers = (dbus_uint16_t) mouse_mask_state;
mouse_e.timestamp = 0;
mouse_e.event_string = "";
mouse_e.is_text = FALSE;
is_consumed =
spi_controller_notify_mouselisteners (controller,
&mouse_e);
if (!is_consumed)
{
dbus_uint32_t x = last_mouse_pos->x, y = last_mouse_pos->y;
spi_dec_dbus_emit(controller, SPI_DBUS_INTERFACE_EVENT_MOUSE, "Button", event_detail, x, y);
}
else
spi_dec_set_unlatch_pending (controller, mask_return);
}
return TRUE;
}
else
{
return FALSE;
}
}
static guint
spi_dec_x11_mouse_check (SpiDEController *controller,
int *x, int *y, gboolean *moved)
{
int win_x_return,win_y_return;
unsigned int mask_return;
Window root_return, child_return;
Display *display = spi_get_display ();
if (display != NULL)
XQueryPointer(display, DefaultRootWindow (display),
&root_return, &child_return,
x, y,
&win_x_return, &win_y_return, &mask_return);
/*
* Since many clients grab the pointer, and X goes an automatic
* pointer grab on mouse-down, we often must detect mouse button events
* by polling rather than via a button grab.
* The while loop (rather than if) is used since it's possible that
* multiple buttons have changed state since we last checked.
*/
if (mask_return != mouse_mask_state)
{
while (spi_dec_button_update_and_emit (controller, mask_return));
}
if (*x != last_mouse_pos->x || *y != last_mouse_pos->y)
{
// TODO: combine these two signals?
dbus_uint32_t ix = *x, iy = *y;
spi_dec_dbus_emit(controller, SPI_DBUS_INTERFACE_EVENT_MOUSE, "Abs", "", ix, iy);
ix -= last_mouse_pos->x;
iy -= last_mouse_pos->y;
spi_dec_dbus_emit(controller, SPI_DBUS_INTERFACE_EVENT_MOUSE, "Rel", "", ix, iy);
last_mouse_pos->x = *x;
last_mouse_pos->y = *y;
*moved = True;
}
else
{
*moved = False;
}
return mask_return;
}
#ifdef WE_NEED_UGRAB_MOUSE
static int
spi_dec_ungrab_mouse (gpointer data)
{
Display *display = spi_get_display ();
if (display)
{
XUngrabButton (spi_get_display (), AnyButton, AnyModifier,
XDefaultRootWindow (spi_get_display ()));
}
return FALSE;
}
#endif
static void
spi_dec_init_mouse_listener (SpiDEController *dec)
{
#ifdef GRAB_BUTTON
Display *display = spi_get_display ();
if (display)
{
if (XGrabButton (display, AnyButton, AnyModifier,
spi_get_root_window (),
True, ButtonPressMask | ButtonReleaseMask,
GrabModeSync, GrabModeAsync, None, None) != Success) {
#ifdef SPI_DEBUG
fprintf (stderr, "WARNING: could not grab mouse buttons!\n");
#endif
;
}
XSync (display, False);
#ifdef SPI_DEBUG
fprintf (stderr, "mouse buttons grabbed\n");
#endif
}
#endif
}
static void
spi_dec_clear_unlatch_pending (SpiDEController *controller)
{
DEControllerPrivateData *priv = controller->priv;
priv->xkb_latch_mask = 0;
}
static void
spi_device_event_controller_forward_mouse_event (SpiDEController *controller,
XEvent *xevent)
{
Accessibility_DeviceEvent mouse_e;
gchar event_detail[3];
gboolean is_consumed = FALSE;
gboolean xkb_mod_unlatch_occurred;
XButtonEvent *xbutton_event = (XButtonEvent *) xevent;
dbus_uint32_t ix, iy;
int button = xbutton_event->button;
unsigned int mouse_button_state = xbutton_event->state;
switch (button)
{
case 1:
mouse_button_state |= Button1Mask;
break;
case 2:
mouse_button_state |= Button2Mask;
break;
case 3:
mouse_button_state |= Button3Mask;
break;
case 4:
mouse_button_state |= Button4Mask;
break;
case 5:
mouse_button_state |= Button5Mask;
break;
}
last_mouse_pos->x = ((XButtonEvent *) xevent)->x_root;
last_mouse_pos->y = ((XButtonEvent *) xevent)->y_root;
#ifdef SPI_DEBUG
fprintf (stderr, "mouse button %d %s (%x)\n",
xbutton_event->button,
(xevent->type == ButtonPress) ? "Press" : "Release",
mouse_button_state);
#endif
snprintf (event_detail, 3, "%d%c", button,
(xevent->type == ButtonPress) ? 'p' : 'r');
/* TODO: FIXME distinguish between physical and logical buttons */
mouse_e.type = (xevent->type == ButtonPress) ?
Accessibility_BUTTON_PRESSED_EVENT :
Accessibility_BUTTON_RELEASED_EVENT;
mouse_e.id = button;
mouse_e.hw_code = button;
mouse_e.modifiers = (dbus_uint16_t) xbutton_event->state;
mouse_e.timestamp = (dbus_uint32_t) xbutton_event->time;
mouse_e.event_string = "";
mouse_e.is_text = FALSE;
if ((mouse_button_state & mouse_button_mask) !=
(mouse_mask_state & mouse_button_mask))
{
if ((mouse_mask_state & key_modifier_mask) !=
(mouse_button_state & key_modifier_mask))
spi_dec_x11_emit_modifier_event (controller,
mouse_mask_state, mouse_button_state);
mouse_mask_state = mouse_button_state;
is_consumed =
spi_controller_notify_mouselisteners (controller, &mouse_e);
ix = last_mouse_pos->x;
iy = last_mouse_pos->y;
spi_dec_dbus_emit(controller, SPI_DBUS_INTERFACE_EVENT_MOUSE, "Button", event_detail, ix, iy);
}
xkb_mod_unlatch_occurred = (xevent->type == ButtonPress ||
xevent->type == ButtonRelease);
/* if client wants to consume this event, and XKB latch state was
* unset by this button event, we reset it
*/
if (is_consumed && xkb_mod_unlatch_occurred)
spi_dec_set_unlatch_pending (controller, mouse_mask_state);
XAllowEvents (spi_get_display (),
(is_consumed) ? SyncPointer : ReplayPointer,
CurrentTime);
}
static void
global_filter_fn (XEvent *xevent, void *data)
{
SpiDEController *controller;
DEControllerPrivateData *priv;
Display *display = spi_get_display ();
controller = SPI_DEVICE_EVENT_CONTROLLER (data);
priv = controller->priv;
if (xevent->type == MappingNotify)
xmkeymap = NULL;
if (xevent->type == KeyPress || xevent->type == KeyRelease)
{
if (priv->xevie_display == NULL)
{
gboolean is_consumed;
is_consumed =
spi_device_event_controller_forward_key_event (controller, xevent);
if (is_consumed)
{
int n_events;
int i;
XEvent next_event;
n_events = XPending (display);
#ifdef SPI_KEYEVENT_DEBUG
g_print ("Number of events pending: %d\n", n_events);
#endif
for (i = 0; i < n_events; i++)
{
XNextEvent (display, &next_event);
if (next_event.type != KeyPress &&
next_event.type != KeyRelease)
g_warning ("Unexpected event type %d in queue", next_event.type);
}
XAllowEvents (display, AsyncKeyboard, CurrentTime);
if (n_events)
XUngrabKeyboard (display, CurrentTime);
}
else
{
if (xevent->type == KeyPress)
wait_for_release_event (xevent, controller);
XAllowEvents (display, ReplayKeyboard, CurrentTime);
}
}
return;
}
if (xevent->type == ButtonPress || xevent->type == ButtonRelease)
{
spi_device_event_controller_forward_mouse_event (controller, xevent);
}
if (xevent->type == priv->xkb_base_event_code)
{
XkbAnyEvent * xkb_ev = (XkbAnyEvent *) xevent;
/* ugly but probably necessary...*/
XSynchronize (display, TRUE);
if (xkb_ev->xkb_type == XkbStateNotify)
{
XkbStateNotifyEvent *xkb_snev =
(XkbStateNotifyEvent *) xkb_ev;
/* check the mouse, to catch mouse events grabbed by
* another client; in case we should revert this XKB delatch
*/
if (!priv->pending_xkb_mod_relatch_mask)
{
int x, y;
gboolean moved;
spi_dec_x11_mouse_check (controller, &x, &y, &moved);
}
/* we check again, since the previous call may have
changed this flag */
if (priv->pending_xkb_mod_relatch_mask)
{
unsigned int feedback_mask;
#ifdef SPI_XKB_DEBUG
fprintf (stderr, "relatching %x\n",
priv->pending_xkb_mod_relatch_mask);
#endif
/* temporarily turn off the latch bell, if it's on */
XkbGetControls (display,
XkbAccessXFeedbackMask,
priv->xkb_desc);
feedback_mask = priv->xkb_desc->ctrls->ax_options;
if (feedback_mask & XkbAX_StickyKeysFBMask)
{
XkbControlsChangesRec changes = {XkbAccessXFeedbackMask,
0, False};
priv->xkb_desc->ctrls->ax_options
&= ~(XkbAX_StickyKeysFBMask);
XkbChangeControls (display, priv->xkb_desc, &changes);
}
/* TODO: account for lock as well as latch */
XkbLatchModifiers (display,
XkbUseCoreKbd,
priv->pending_xkb_mod_relatch_mask,
priv->pending_xkb_mod_relatch_mask);
if (feedback_mask & XkbAX_StickyKeysFBMask)
{
XkbControlsChangesRec changes = {XkbAccessXFeedbackMask,
0, False};
priv->xkb_desc->ctrls->ax_options = feedback_mask;
XkbChangeControls (display, priv->xkb_desc, &changes);
}
#ifdef SPI_XKB_DEBUG
fprintf (stderr, "relatched %x\n",
priv->pending_xkb_mod_relatch_mask);
#endif
priv->pending_xkb_mod_relatch_mask = 0;
}
else
{
priv->xkb_latch_mask = xkb_snev->latched_mods;
}
}
XSynchronize (display, FALSE);
}
return;
}
static int
_spi_controller_device_error_handler (Display *display, XErrorEvent *error)
{
if (error->error_code == BadAccess)
{
g_message ("Could not complete key grab: grab already in use.\n");
spi_error_code = BadAccess;
return 0;
}
else
{
return (*x_default_error_handler) (display, error);
}
}
static void
spi_controller_register_with_devices (SpiDEController *controller)
{
DEControllerPrivateData *priv;
int event_base, error_base, major_version, minor_version;
priv = controller->priv;
if (XTestQueryExtension (spi_get_display(), &event_base, &error_base, &major_version, &minor_version))
{
XTestGrabControl (spi_get_display (), True);
}
/* calls to device-specific implementations and routines go here */
/* register with: keyboard hardware code handler */
/* register with: (translated) keystroke handler */
priv->have_xkb = XkbQueryExtension (spi_get_display (),
&priv->xkb_major_extension_opcode,
&priv->xkb_base_event_code,
&priv->xkb_base_error_code, NULL, NULL);
if (priv->have_xkb)
{
gint i;
guint64 reserved = 0;
priv->xkb_desc = XkbGetMap (spi_get_display (), XkbKeySymsMask, XkbUseCoreKbd);
XkbSelectEvents (spi_get_display (),
XkbUseCoreKbd,
XkbStateNotifyMask, XkbStateNotifyMask);
_numlock_physical_mask = XkbKeysymToModifiers (spi_get_display (),
XK_Num_Lock);
for (i = priv->xkb_desc->max_key_code; i >= priv->xkb_desc->min_key_code; --i)
{
if (priv->xkb_desc->map->key_sym_map[i].kt_index[0] == XkbOneLevelIndex)
{
if (XkbKeycodeToKeysym (spi_get_display (), i, 0, 0) != 0)
{
/* don't use this one if there's a grab client! */
/* Runtime errors are generated from these functions,
* that are then quashed. Equivalent to:
* try
* {Blah}
* except
* {;}
*/
spi_x_error_trap ();
XGrabKey (spi_get_display (), i, 0,
spi_get_root_window (),
TRUE,
GrabModeSync, GrabModeSync);
XSync (spi_get_display (), TRUE);
XUngrabKey (spi_get_display (), i, 0,
spi_get_root_window ());
if (!spi_x_error_release ())
{
reserved = i;
break;
}
}
}
}
if (reserved)
{
priv->reserved_keycode = reserved;
priv->reserved_keysym = XkbKeycodeToKeysym (spi_get_display (), reserved, 0, 0);
}
else
{
priv->reserved_keycode = XKeysymToKeycode (spi_get_display (), XK_numbersign);
priv->reserved_keysym = XK_numbersign;
}
#ifdef SPI_RESERVED_DEBUG
unsigned sym = 0;
sym = XKeycodeToKeysym (spi_get_display (), reserved, 0);
fprintf (stderr, "%x\n", sym);
fprintf (stderr, "setting the reserved keycode to %d (%s)\n",
reserved,
XKeysymToString (XKeycodeToKeysym (spi_get_display (),
reserved, 0)));
#endif
}
spi_set_filter (global_filter_fn, controller);
spi_set_events (KeyPressMask | KeyReleaseMask);
x_default_error_handler = XSetErrorHandler (_spi_controller_device_error_handler);
}
static Accessibility_DeviceEvent
spi_keystroke_from_x_key_event (XKeyEvent *x_key_event)
{
Accessibility_DeviceEvent key_event;
KeySym keysym;
const int cbuf_bytes = 20;
char cbuf [21];
int nbytes;
nbytes = XLookupString (x_key_event, cbuf, cbuf_bytes, &keysym, NULL);
key_event.id = (dbus_int32_t)(keysym);
key_event.hw_code = (dbus_int16_t) x_key_event->keycode;
if (((XEvent *) x_key_event)->type == KeyPress)
{
key_event.type = Accessibility_KEY_PRESSED_EVENT;
}
else
{
key_event.type = Accessibility_KEY_RELEASED_EVENT;
}
key_event.modifiers = (dbus_uint16_t)(x_key_event->state);
key_event.is_text = FALSE;
switch (keysym)
{
case ' ':
key_event.event_string = g_strdup ("space");
break;
case XK_Tab:
key_event.event_string = g_strdup ("Tab");
break;
case XK_BackSpace:
key_event.event_string = g_strdup ("Backspace");
break;
case XK_Return:
key_event.event_string = g_strdup ("Return");
break;
case XK_Home:
key_event.event_string = g_strdup ("Home");
break;
case XK_Page_Down:
key_event.event_string = g_strdup ("Page_Down");
break;
case XK_Page_Up:
key_event.event_string = g_strdup ("Page_Up");
break;
case XK_F1:
key_event.event_string = g_strdup ("F1");
break;
case XK_F2:
key_event.event_string = g_strdup ("F2");
break;
case XK_F3:
key_event.event_string = g_strdup ("F3");
break;
case XK_F4:
key_event.event_string = g_strdup ("F4");
break;
case XK_F5:
key_event.event_string = g_strdup ("F5");
break;
case XK_F6:
key_event.event_string = g_strdup ("F6");
break;
case XK_F7:
key_event.event_string = g_strdup ("F7");
break;
case XK_F8:
key_event.event_string = g_strdup ("F8");
break;
case XK_F9:
key_event.event_string = g_strdup ("F9");
break;
case XK_F10:
key_event.event_string = g_strdup ("F10");
break;
case XK_F11:
key_event.event_string = g_strdup ("F11");
break;
case XK_F12:
key_event.event_string = g_strdup ("F12");
break;
case XK_End:
key_event.event_string = g_strdup ("End");
break;
case XK_Escape:
key_event.event_string = g_strdup ("Escape");
break;
case XK_Up:
key_event.event_string = g_strdup ("Up");
break;
case XK_Down:
key_event.event_string = g_strdup ("Down");
break;
case XK_Left:
key_event.event_string = g_strdup ("Left");
break;
case XK_Right:
key_event.event_string = g_strdup ("Right");
break;
default:
if (nbytes > 0)
{
gunichar c;
cbuf[nbytes] = '\0'; /* OK since length is cbuf_bytes+1 */
key_event.event_string = g_strdup (cbuf);
c = keysym2ucs (keysym);
if (c > 0 && !g_unichar_iscntrl (c))
{
key_event.is_text = TRUE;
/* incorrect for some composed chars? */
}
}
else
{
key_event.event_string = g_strdup ("");
}
}
key_event.timestamp = (dbus_uint32_t) x_key_event->time;
#ifdef SPI_KEYEVENT_DEBUG
{
char *pressed_str = "pressed";
char *released_str = "released";
char *state_ptr;
if (key_event.type == Accessibility_KEY_PRESSED_EVENT)
state_ptr = pressed_str;
else
state_ptr = released_str;
fprintf (stderr,
"Key %lu %s (%c), modifiers %d; string=%s [%x] %s\n",
(unsigned long) keysym,
state_ptr,
keysym ? (int) keysym : '*',
(int) x_key_event->state,
key_event.event_string,
key_event.event_string[0],
(key_event.is_text == TRUE) ? "(text)" : "(not text)");
}
#endif
#ifdef SPI_DEBUG
fprintf (stderr, "%s%c\n",
(x_key_event->state & Mod1Mask)?"Alt-":"",
((x_key_event->state & ShiftMask)^(x_key_event->state & LockMask))?
g_ascii_toupper (keysym) : g_ascii_tolower (keysym));
fprintf (stderr, "serial: %x Time: %x\n", x_key_event->serial, x_key_event->time);
#endif /* SPI_DEBUG */
return key_event;
}
static gboolean
spi_dec_x11_grab_key (SpiDEController *controller,
guint key_val,
Accessibility_ControllerEventMask mod_mask)
{
XGrabKey (spi_get_display (),
key_val,
mod_mask,
spi_get_root_window (),
True,
GrabModeSync,
GrabModeSync);
XSync (spi_get_display (), False);
return spi_clear_error_state ();
}
static void
spi_dec_x11_ungrab_key (SpiDEController *controller,
guint key_val,
Accessibility_ControllerEventMask mod_mask)
{
XUngrabKey (spi_get_display (),
key_val,
mod_mask,
spi_get_root_window ());
}
static unsigned int
xkb_get_slowkeys_delay (SpiDEController *controller)
{
unsigned int retval = 0;
DEControllerPrivateData *priv = controller->priv;
#ifdef HAVE_XKB
#ifdef XKB_HAS_GET_SLOW_KEYS_DELAY
retval = XkbGetSlowKeysDelay (spi_get_display (),
XkbUseCoreKbd, &bounce_delay);
#else
if (!(priv->xkb_desc == (XkbDescPtr) BadAlloc || priv->xkb_desc == NULL))
{
Status s = XkbGetControls (spi_get_display (),
XkbAllControlsMask, priv->xkb_desc);
if (s == Success)
{
if (priv->xkb_desc->ctrls->enabled_ctrls & XkbSlowKeysMask)
retval = priv->xkb_desc->ctrls->slow_keys_delay;
}
}
#endif
#endif
#ifdef SPI_XKB_DEBUG
fprintf (stderr, "SlowKeys delay: %d\n", (int) retval);
#endif
return retval;
}
static unsigned int
xkb_get_bouncekeys_delay (SpiDEController *controller)
{
unsigned int retval = 0;
DEControllerPrivateData *priv = controller->priv;
#ifdef HAVE_XKB
#ifdef XKB_HAS_GET_BOUNCE_KEYS_DELAY
retval = XkbGetBounceKeysDelay (spi_get_display (),
XkbUseCoreKbd, &bounce_delay);
#else
if (!(priv->xkb_desc == (XkbDescPtr) BadAlloc || priv->xkb_desc == NULL))
{
Status s = XkbGetControls (spi_get_display (),
XkbAllControlsMask, priv->xkb_desc);
if (s == Success)
{
if (priv->xkb_desc->ctrls->enabled_ctrls & XkbBounceKeysMask)
retval = priv->xkb_desc->ctrls->debounce_delay;
}
}
#endif
#endif
#ifdef SPI_XKB_DEBUG
fprintf (stderr, "BounceKeys delay: %d\n", (int) retval);
#endif
return retval;
}
static gboolean
spi_dec_x11_synth_keycode_press (SpiDEController *controller,
unsigned int keycode)
{
unsigned int time = CurrentTime;
unsigned int bounce_delay;
unsigned int elapsed_msec;
struct timeval tv;
DEControllerPrivateData *priv = controller->priv;
spi_x_error_trap ();
if (keycode == priv->last_release_keycode)
{
bounce_delay = xkb_get_bouncekeys_delay (controller);
if (bounce_delay)
{
gettimeofday (&tv, NULL);
elapsed_msec =
(tv.tv_sec - priv->last_release_time.tv_sec) * 1000
+ (tv.tv_usec - priv->last_release_time.tv_usec) / 1000;
#ifdef SPI_XKB_DEBUG
fprintf (stderr, "%d ms elapsed (%ld usec)\n", elapsed_msec,
(long) (tv.tv_usec - priv->last_release_time.tv_usec));
#endif
#ifdef THIS_IS_BROKEN
if (elapsed_msec < bounce_delay)
time = bounce_delay - elapsed_msec + 1;
#else
time = bounce_delay + 10;
/* fudge for broken XTest */
#endif
#ifdef SPI_XKB_DEBUG
fprintf (stderr, "waiting %d ms\n", time);
#endif
}
}
XTestFakeKeyEvent (spi_get_display (), keycode, True, time);
priv->last_press_keycode = keycode;
XFlush (spi_get_display ());
XSync (spi_get_display (), False);
gettimeofday (&priv->last_press_time, NULL);
return TRUE;
}
static gboolean
spi_dec_x11_synth_keycode_release (SpiDEController *controller,
unsigned int keycode)
{
unsigned int time = CurrentTime;
unsigned int slow_delay;
unsigned int elapsed_msec;
struct timeval tv;
DEControllerPrivateData *priv = controller->priv;
spi_x_error_trap ();
if (keycode == priv->last_press_keycode)
{
slow_delay = xkb_get_slowkeys_delay (controller);
if (slow_delay)
{
gettimeofday (&tv, NULL);
elapsed_msec =
(tv.tv_sec - priv->last_press_time.tv_sec) * 1000
+ (tv.tv_usec - priv->last_press_time.tv_usec) / 1000;
#ifdef SPI_XKB_DEBUG
fprintf (stderr, "%d ms elapsed (%ld usec)\n", elapsed_msec,
(long) (tv.tv_usec - priv->last_press_time.tv_usec));
#endif
#ifdef THIS_IS_BROKEN_DUNNO_WHY
if (elapsed_msec < slow_delay)
time = slow_delay - elapsed_msec + 1;
#else
time = slow_delay + 10;
/* our XTest seems broken, we have to add slop as above */
#endif
#ifdef SPI_XKB_DEBUG
fprintf (stderr, "waiting %d ms\n", time);
#endif
}
}
XTestFakeKeyEvent (spi_get_display (), keycode, False, time);
priv->last_release_keycode = keycode;
XSync (spi_get_display (), False);
gettimeofday (&priv->last_release_time, NULL);
return TRUE;
}
static gboolean
spi_dec_x11_lock_modifiers (SpiDEController *controller, unsigned modifiers)
{
DEControllerPrivateData *priv = controller->priv;
if (priv->have_xkb) {
return XkbLockModifiers (spi_get_display (), XkbUseCoreKbd,
modifiers, modifiers);
} else {
int mod_index;
if (xmkeymap==NULL)
xmkeymap = XGetModifierMapping(spi_get_display ());
for (mod_index=0;mod_index<8;mod_index++)
if (modifiers & (1<<mod_index))
spi_dec_x11_synth_keycode_press(controller, xmkeymap->modifiermap[mod_index]);
return TRUE;
}
}
static gboolean
spi_dec_x11_unlock_modifiers (SpiDEController *controller, unsigned modifiers)
{
DEControllerPrivateData *priv = controller->priv;
if (priv->have_xkb) {
return XkbLockModifiers (spi_get_display (), XkbUseCoreKbd,
modifiers, 0);
} else {
int mod_index;
if (xmkeymap==NULL)
xmkeymap = XGetModifierMapping(spi_get_display ());
for (mod_index=0;mod_index<8;mod_index++)
if (modifiers & (1<<mod_index))
spi_dec_x11_synth_keycode_release(controller, xmkeymap->modifiermap[mod_index]);
return TRUE;
}
}
static KeySym
keysym_for_unichar (SpiDEController *controller, gunichar unichar)
{
return (KeySym) ucs2keysym ((long) unichar);
}
static gboolean
spi_dec_x11_synth_keystring (SpiDEController *controller, guint synth_type, gint keycode, const char *keystring)
{
/* probably we need to create and inject an XIM handler eventually. */
/* for now, try to match the string to existing
* keycode+modifier states.
*/
KeySym *keysyms;
gint maxlen = 0;
gunichar unichar = 0;
gint i = 0;
gboolean retval = TRUE;
const gchar *c;
KeySym keysym;
if (!(keystring && *keystring && g_utf8_validate (keystring, -1, &c))) {
retval = FALSE;
}
else {
#ifdef SPI_DEBUG
fprintf (stderr, "[keystring synthesis attempted on %s]\n", keystring);
#endif
maxlen = strlen (keystring) + 1;
keysyms = g_new0 (KeySym, maxlen);
while (keystring && (unichar = g_utf8_get_char (keystring))) {
char bytes[6];
gint mbytes;
mbytes = g_unichar_to_utf8 (unichar, bytes);
bytes[mbytes] = '\0';
#ifdef SPI_DEBUG
fprintf (stderr, "[unichar %s]", bytes);
#endif
keysym = keysym_for_unichar (controller, unichar);
if (keysym == NoSymbol) {
#ifdef SPI_DEBUG
fprintf (stderr, "no keysym for %s", bytes);
#endif
retval = FALSE;
break;
}
keysyms[i++] = keysym;
keystring = g_utf8_next_char (keystring);
}
keysyms[i++] = 0;
XSynchronize (spi_get_display (), TRUE);
for (i = 0; keysyms[i]; ++i) {
if (!spi_dec_synth_keysym (controller, keysyms[i])) {
#ifdef SPI_DEBUG
fprintf (stderr, "could not synthesize %c\n",
(int) keysyms[i]);
#endif
retval = FALSE;
break;
}
}
XSynchronize (spi_get_display (), FALSE);
g_free (keysyms);
}
if (synth_type == Accessibility_KEY_SYM) {
keysym = keycode;
}
else {
keysym = XkbKeycodeToKeysym (spi_get_display (), keycode, 0, 0);
}
if (XkbKeysymToModifiers (spi_get_display (), keysym) == 0) {
spi_dec_clear_unlatch_pending (controller);
}
return retval;
}
#ifdef HAVE_XEVIE
static Bool
isEvent(Display *dpy, XEvent *event, char *arg)
{
return TRUE;
}
static gboolean
handle_io (GIOChannel *source,
GIOCondition condition,
gpointer data)
{
SpiDEController *controller = (SpiDEController *) data;
DEControllerPrivateData *priv = controller->priv;
gboolean is_consumed = FALSE;
XEvent ev;
while (XCheckIfEvent(priv->xevie_display, &ev, isEvent, NULL))
{
if (ev.type == KeyPress || ev.type == KeyRelease)
is_consumed = spi_device_event_controller_forward_key_event (controller, &ev);
if (! is_consumed)
XevieSendEvent(priv->xevie_display, &ev, XEVIE_UNMODIFIED);
}
return TRUE;
}
#endif /* HAVE_XEVIE */
static void
spi_dec_x11_init (SpiDEController *controller)
{
DEControllerPrivateData *priv = controller->priv;
spi_events_init (spi_get_display());
#ifdef HAVE_XEVIE
GIOChannel *ioc;
int fd;
#endif /* HAVE_XEVIE */
spi_events_init (spi_get_display ());
#ifdef HAVE_XEVIE
priv->xevie_display = XOpenDisplay(NULL);
if (XevieStart(priv->xevie_display) == TRUE)
{
#ifdef SPI_KEYEVENT_DEBUG
fprintf (stderr, "XevieStart() success \n");
#endif
XevieSelectInput(priv->xevie_display, KeyPressMask | KeyReleaseMask);
fd = ConnectionNumber(priv->xevie_display);
ioc = g_io_channel_unix_new (fd);
g_io_add_watch (ioc, G_IO_IN | G_IO_HUP, handle_io, controller);
g_io_channel_unref (ioc);
}
else
{
#ifdef SPI_KEYEVENT_DEBUG
fprintf (stderr, "XevieStart() failed, only one client is allowed to do event int exception\n");
#endif
}
#endif /* HAVE_XEVIE */
gettimeofday (&priv->last_press_time, NULL);
gettimeofday (&priv->last_release_time, NULL);
spi_controller_register_with_devices (controller);
spi_dec_init_mouse_listener (controller);
saved_controller = controller;
}
static void
spi_dec_x11_finalize (SpiDEController *controller)
{
DEControllerPrivateData *priv = controller->priv;
/* disconnect any special listeners, get rid of outstanding keygrabs */
XUngrabKey (spi_get_display (), AnyKey, AnyModifier, DefaultRootWindow (spi_get_display ()));
#ifdef HAVE_XEVIE
if (priv->xevie_display != NULL)
{
XevieEnd(priv->xevie_display);
#ifdef SPI_KEYEVENT_DEBUG
printf("XevieEnd(dpy) finished \n");
#endif
}
#endif
if (priv->xkb_desc)
XkbFreeKeyboard (priv->xkb_desc, 0, True);
/* TODO: Should free the keymap */
}
static gboolean
spi_device_event_controller_forward_key_event (SpiDEController *controller,
const XEvent *event)
{
DEControllerPrivateData *priv = controller->priv;
Accessibility_DeviceEvent key_event;
gboolean ret;
g_assert (event->type == KeyPress || event->type == KeyRelease);
key_event = spi_keystroke_from_x_key_event ((XKeyEvent *) event);
if (priv->xevie_display == NULL)
spi_controller_update_key_grabs (controller, &key_event);
/* relay to listeners, and decide whether to consume it or not */
ret = spi_controller_notify_keylisteners (controller, &key_event, TRUE);
g_free(key_event.event_string);
return ret;
}
static gboolean
is_key_released (long code)
{
char keys[32];
int down;
XQueryKeymap (spi_get_display (), keys);
down = BIT (keys, code);
return (down == 0);
}
static gboolean
check_release (gpointer data)
{
gboolean released;
Accessibility_DeviceEvent *event = (Accessibility_DeviceEvent *)data;
KeyCode code = event->hw_code;
released = is_key_released (code);
if (released)
{
check_release_handler = 0;
event->type = Accessibility_KEY_RELEASED_EVENT;
spi_controller_notify_keylisteners (saved_controller, event, TRUE);
}
return (released == 0);
}
static void
wait_for_release_event (XEvent *event,
SpiDEController *controller)
{
pressed_event = spi_keystroke_from_x_key_event ((XKeyEvent *) event);
check_release_handler = g_timeout_add (CHECK_RELEASE_DELAY, check_release, &pressed_event);
g_source_set_name_by_id (check_release_handler, "[at-spi2-core] check_release");
}
static void
spi_dec_x11_emit_modifier_event (SpiDEController *controller, guint prev_mask,
guint current_mask)
{
dbus_uint32_t d1, d2;
#ifdef SPI_XKB_DEBUG
fprintf (stderr, "MODIFIER CHANGE EVENT! %x to %x\n",
prev_mask, current_mask);
#endif
/* set bits for the virtual modifiers like NUMLOCK */
if (prev_mask & _numlock_physical_mask)
prev_mask |= SPI_KEYMASK_NUMLOCK;
if (current_mask & _numlock_physical_mask)
current_mask |= SPI_KEYMASK_NUMLOCK;
d1 = prev_mask & key_modifier_mask;
d2 = current_mask & key_modifier_mask;
spi_dec_dbus_emit(controller, SPI_DBUS_INTERFACE_EVENT_KEYBOARD, "Modifiers", "", d1, d2);
}
static void
spi_dec_x11_generate_mouse_event (SpiDEController *controller,
gint x,
gint y,
const char *eventName)
{
int button = 0;
gboolean err = FALSE;
Display *display = spi_get_display ();
switch (eventName[0])
{
case 'b':
switch (eventName[1])
{
/* TODO: check number of buttons before parsing */
case '1':
button = 1;
break;
case '2':
button = 2;
break;
case '3':
button = 3;
break;
case '4':
button = 4;
break;
case '5':
button = 5;
break;
default:
err = TRUE;
}
if (!err)
{
if (x != -1 && y != -1)
{
XTestFakeMotionEvent (display, DefaultScreen (display),
x, y, 0);
}
XTestFakeButtonEvent (display, button, !(eventName[2] == 'r'), 0);
if (eventName[2] == 'c')
XTestFakeButtonEvent (display, button, FALSE, 1);
else if (eventName[2] == 'd')
{
XTestFakeButtonEvent (display, button, FALSE, 1);
XTestFakeButtonEvent (display, button, TRUE, 2);
XTestFakeButtonEvent (display, button, FALSE, 3);
}
}
break;
case 'r': /* relative motion */
XTestFakeRelativeMotionEvent (display, x, y, 0);
break;
case 'a': /* absolute motion */
XTestFakeMotionEvent (display, DefaultScreen (display),
x, y, 0);
break;
}
}
void
spi_dec_setup_x11 (SpiDEControllerClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
klass->plat.get_keycode = spi_dec_x11_get_keycode;
klass->plat.mouse_check = spi_dec_x11_mouse_check;
klass->plat.synth_keycode_press = spi_dec_x11_synth_keycode_press;
klass->plat.synth_keycode_release = spi_dec_x11_synth_keycode_release;
klass->plat.lock_modifiers = spi_dec_x11_lock_modifiers;
klass->plat.unlock_modifiers = spi_dec_x11_unlock_modifiers;
klass->plat.synth_keystring = spi_dec_x11_synth_keystring;
klass->plat.grab_key = spi_dec_x11_grab_key;
klass->plat.ungrab_key = spi_dec_x11_ungrab_key;
klass->plat.emit_modifier_event = spi_dec_x11_emit_modifier_event;
klass->plat.generate_mouse_event = spi_dec_x11_generate_mouse_event;
klass->plat.init = spi_dec_x11_init;
klass->plat.finalize = spi_dec_x11_finalize;
g_type_class_add_private (object_class, sizeof (DEControllerPrivateData));
}
|