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
|
/*
* Copyright © 2011-2012 Gerd Kohlberger <lowfi@chello.at>
* Copyright © 2011-2015 marmuta <marmvta@gmail.com>
*
* This file is part of Onboard.
*
* Onboard is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* Onboard 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "osk_module.h"
#include <gdk/gdkx.h>
#include <X11/Xatom.h>
#include <X11/extensions/XInput2.h>
#define XI_PROP_PRODUCT_ID "Device Product ID"
static unsigned int
translate_event_type (unsigned int xi_type);
static unsigned int
translate_state (XIModifierState *mods_state,
XIButtonState *button_state,
XIGroupState *group_state);
static unsigned int gdk_button_masks[] = {GDK_BUTTON1_MASK,
GDK_BUTTON2_MASK,
GDK_BUTTON3_MASK,
GDK_BUTTON4_MASK,
GDK_BUTTON5_MASK};
//------------------------------------------------------------------------
// DeviceEvent
// -----------------------------------------------------------------------
#define OSK_DEVICE_ADDED_EVENT 1100
#define OSK_DEVICE_REMOVED_EVENT 1101
#define OSK_SLAVE_ATTACHED_EVENT 1102
#define OSK_SLAVE_DETACHED_EVENT 1103
typedef struct {
PyObject_HEAD
Display* display;
Window xid_event;
unsigned int xi_type;
unsigned int type;
unsigned int device_id;
unsigned int source_id;
double x;
double y;
double x_root;
double y_root;
unsigned int button;
unsigned int state;
unsigned int keyval;
unsigned int sequence;
unsigned int time;
PyObject* source_device;
} OskDeviceEvent;
OSK_REGISTER_TYPE_WITH_MEMBERS (OskDeviceEvent, osk_device_event, "DeviceEvent")
static int
osk_device_event_init (OskDeviceEvent* self, PyObject *args, PyObject *kwds)
{
self->xid_event = None;
self->device_id = 0;
self->source_id = 0;
self->source_device = Py_None;
Py_INCREF(self->source_device);
return 0;
}
static void
osk_device_event_dealloc (OskDeviceEvent* self)
{
Py_DECREF(self->source_device);
OSK_FINISH_DEALLOC (self);
}
static OskDeviceEvent*
new_device_event (void)
{
OskDeviceEvent *ev = PyObject_New(OskDeviceEvent, &osk_device_event_type);
if (ev)
{
osk_device_event_type.tp_init((PyObject*) ev, NULL, NULL);
return ev;
}
return NULL;
}
static PyObject *
osk_device_event_copy (OskDeviceEvent* self, PyObject *args)
{
OskDeviceEvent *ev = new_device_event();
if (ev)
{
ev->display = self->display;
ev->xid_event = self->xid_event;
ev->xi_type = self->xi_type;
ev->type = self->type;
ev->device_id = self->device_id;
ev->source_id = self->source_id;
ev->x = self->x;
ev->y = self->y;
ev->x_root = self->x_root;
ev->y_root = self->y_root;
ev->button = self->button;
ev->state = self->state;
ev->keyval = self->keyval;
ev->sequence = self->sequence;
ev->time = self->time;
Py_DECREF(ev->source_device);
ev->source_device = self->source_device;
Py_INCREF(ev->source_device);
}
return (PyObject*) ev;
}
static PyObject *
osk_device_event_get_time (OskDeviceEvent* self, PyObject *args)
{
return PyLong_FromUnsignedLong(self->time);
}
static PyObject *
osk_device_event_set_source_device (OskDeviceEvent* self, PyObject* value)
{
Py_DECREF(self->source_device);
self->source_device = value;
Py_INCREF(self->source_device);
Py_RETURN_NONE;
}
static PyObject *
osk_device_event_get_source_device (OskDeviceEvent* self, PyObject *args)
{
Py_INCREF(self->source_device);
return self->source_device;
}
static PyMethodDef osk_device_event_methods[] = {
{ "__copy__",
(PyCFunction) osk_device_event_copy, METH_NOARGS, NULL },
{ "get_time",
(PyCFunction) osk_device_event_get_time, METH_NOARGS, NULL },
{ "get_source_device",
(PyCFunction) osk_device_event_get_source_device, METH_NOARGS, NULL },
{ "set_source_device",
(PyCFunction) osk_device_event_set_source_device, METH_O, NULL },
{ NULL, NULL, 0, NULL }
};
static PyMemberDef osk_device_event_members[] = {
{"xid_event", T_UINT, offsetof(OskDeviceEvent, xid_event), READONLY, NULL },
{"xi_type", T_UINT, offsetof(OskDeviceEvent, xi_type), RESTRICTED, NULL },
{"type", T_UINT, offsetof(OskDeviceEvent, type), RESTRICTED, NULL },
{"device_id", T_UINT, offsetof(OskDeviceEvent, device_id), READONLY, NULL },
{"source_id", T_UINT, offsetof(OskDeviceEvent, source_id), READONLY, NULL },
{"x", T_DOUBLE, offsetof(OskDeviceEvent, x), RESTRICTED, NULL },
{"y", T_DOUBLE, offsetof(OskDeviceEvent, y), RESTRICTED, NULL },
{"x_root", T_DOUBLE, offsetof(OskDeviceEvent, x_root), RESTRICTED, NULL },
{"y_root", T_DOUBLE, offsetof(OskDeviceEvent, y_root), RESTRICTED, NULL },
{"button", T_UINT, offsetof(OskDeviceEvent, button), RESTRICTED, NULL },
{"state", T_UINT, offsetof(OskDeviceEvent, state), RESTRICTED, NULL },
{"keyval", T_UINT, offsetof(OskDeviceEvent, keyval), READONLY, NULL },
{"sequence", T_UINT, offsetof(OskDeviceEvent, sequence), RESTRICTED, NULL },
{"time", T_UINT, offsetof(OskDeviceEvent, time), READONLY, NULL },
{NULL}
};
static PyGetSetDef osk_device_event_getsetters[] = {
{NULL}
};
//------------------------------------------------------------------------
// Devices
// -----------------------------------------------------------------------
typedef struct {
PyObject_HEAD
Display *dpy;
int xi2_opcode;
Atom atom_product_id;
GQueue *event_queue;
PyObject *event_handler;
int button_states[G_N_ELEMENTS(gdk_button_masks)];
} OskDevices;
static GdkFilterReturn osk_devices_event_filter (GdkXEvent *gdk_xevent,
GdkEvent *gdk_event,
OskDevices *dev);
static int osk_devices_select (OskDevices *dev,
Window win,
int id,
unsigned char *mask,
unsigned int mask_len);
static gboolean idle_process_event_queue (OskDevices* dev);
static void free_event_queue_element(gpointer data);
OSK_REGISTER_TYPE (OskDevices, osk_devices, "Devices")
static char *init_kwlist[] = {
"event_handler",
NULL
};
static int
osk_devices_init (OskDevices *dev, PyObject *args, PyObject *kwds)
{
int event, error;
int major = 2;
int minor = 2;
Status status;
/* set display before anything else! */
GdkDisplay* display = gdk_display_get_default ();
if (!GDK_IS_X11_DISPLAY (display)) // Wayland, MIR?
{
PyErr_SetString (OSK_EXCEPTION, "not an X display");
return -1;
}
dev->dpy = GDK_DISPLAY_XDISPLAY (display);
memset(dev->button_states, 0, sizeof(dev->button_states));
if (!XQueryExtension (dev->dpy, "XInputExtension",
&dev->xi2_opcode, &event, &error))
{
PyErr_SetString (OSK_EXCEPTION, "failed to initialize XInput extension");
return -1;
}
// XIQueryVersion fails with X error BadValue if this isn't
// the client's very first call. Someone, probably GTK is
// successfully calling it before us, so just ignore the
// error and move on.
gdk_error_trap_push ();
status = XIQueryVersion (dev->dpy, &major, &minor);
gdk_error_trap_pop_ignored ();
if (status == BadRequest)
{
PyErr_SetString (OSK_EXCEPTION, "XInput2 not available");
return -1;
}
if (major * 1000 + minor < 2002)
{
PyErr_Format(OSK_EXCEPTION, "XInput 2.2 is not supported (found %d.%d).",
major, minor);
return -1;
}
if (!PyArg_ParseTupleAndKeywords (args, kwds,
"|O", init_kwlist,
&dev->event_handler))
{
return -1;
}
if (dev->event_handler)
{
unsigned char mask[2] = { 0, 0 };
dev->event_queue = g_queue_new();
if (!dev->event_queue)
return -1;
Py_INCREF (dev->event_handler);
XISetMask (mask, XI_HierarchyChanged);
osk_devices_select (dev, 0, XIAllDevices, mask, sizeof (mask));
gdk_window_add_filter (NULL,
(GdkFilterFunc) osk_devices_event_filter,
dev);
}
dev->atom_product_id = XInternAtom(dev->dpy, XI_PROP_PRODUCT_ID, False);
return 0;
}
static void
osk_devices_dealloc (OskDevices *dev)
{
if (dev->event_handler)
{
unsigned char mask[2] = { 0, 0 };
osk_devices_select (dev, 0, XIAllDevices, mask, sizeof (mask));
gdk_window_remove_filter (NULL,
(GdkFilterFunc) osk_devices_event_filter,
dev);
Py_DECREF (dev->event_handler);
if (dev->event_queue)
{
g_queue_free_full(dev->event_queue, free_event_queue_element);
dev->event_queue = NULL;
}
}
OSK_FINISH_DEALLOC (dev);
}
static void
queue_event (OskDevices* dev, OskDeviceEvent* event, Bool discard_pending)
{
GQueue* queue = dev->event_queue;
if (queue)
{
if (g_queue_is_empty(queue))
g_idle_add ((GSourceFunc) idle_process_event_queue, dev);
// Discard pending elements of the same type, e.g. to clear
// motion event congestion (LP: #1210665).
if (discard_pending)
{
GList *element = g_queue_peek_head_link (queue);
for(;element;)
{
GList* next = element->next;
OskDeviceEvent* e = (OskDeviceEvent*)element->data;
if (e->device_id == event->device_id &&
e->type == event->type)
{
//printf("deleting %d %d\n", e->type, event->type);
g_queue_delete_link(queue, element);
Py_DECREF(e);
}
element = next;
}
}
// Enqueue the event.
Py_INCREF(event);
g_queue_push_head(queue, event);
}
}
static gboolean idle_process_event_queue (OskDevices* dev)
{
PyGILState_STATE state = PyGILState_Ensure ();
PyObject *result;
GQueue* queue = dev->event_queue;
for (;;)
{
PyObject* arglist;
OskDeviceEvent* event = g_queue_pop_tail (queue);
if (!event)
break;
arglist = Py_BuildValue("(O)", event);
if (arglist)
{
Py_INCREF(dev->event_handler);
result = PyObject_CallObject(dev->event_handler, arglist);
if (result)
Py_DECREF (result);
else
PyErr_Print ();
Py_DECREF (dev->event_handler);
Py_DECREF (arglist);
}
Py_DECREF (event);
}
PyGILState_Release (state);
return False;
}
static void free_event_queue_element(gpointer data)
{
Py_DECREF(data);
}
static void
osk_devices_call_event_handler_device (OskDevices *dev,
int type,
Display *display,
int device_id,
int source_id
)
{
OskDeviceEvent *ev = new_device_event();
if (ev)
{
ev->display = display;
ev->xi_type = type;
ev->type = translate_event_type(type);
ev->device_id = device_id;
ev->source_id = source_id;
queue_event (dev, ev, False);
Py_DECREF(ev);
}
}
static void
osk_devices_call_event_handler_pointer (OskDevices *dev,
int type,
Display *display,
Window xid_event,
int device_id,
int source_id,
double x,
double y,
double x_root,
double y_root,
unsigned int button,
unsigned int state,
unsigned int sequence,
unsigned int time
)
{
OskDeviceEvent *ev = new_device_event();
if (ev)
{
ev->display = display;
ev->xid_event = xid_event;
ev->xi_type = type;
ev->type = translate_event_type(type);
ev->device_id = device_id;
ev->source_id = source_id;
ev->x = x;
ev->y = y;
ev->x_root = x_root;
ev->y_root = y_root;
ev->button = button;
ev->state = state;
ev->sequence = sequence;
ev->time = time;
queue_event (dev, ev, type == XI_Motion);
Py_DECREF(ev);
}
}
static void
osk_devices_call_event_handler_key (OskDevices *dev,
int type,
Display* display,
int device_id,
int source_id,
int keyval
)
{
OskDeviceEvent *ev = new_device_event();
if (ev)
{
ev->display = display;
ev->xi_type = type;
ev->type = translate_event_type(type);
ev->device_id = device_id;
ev->source_id = source_id;
ev->keyval = keyval;
queue_event (dev, ev, False);
Py_DECREF(ev);
}
}
static int
osk_devices_select (OskDevices *dev,
Window win,
int id,
unsigned char *mask,
unsigned int mask_len)
{
XIEventMask events;
events.deviceid = id;
events.mask = mask;
events.mask_len = mask_len;
if (win == 0)
win = DefaultRootWindow (dev->dpy);
gdk_error_trap_push ();
XISelectEvents (dev->dpy, win, &events, 1);
gdk_flush ();
return gdk_error_trap_pop () ? -1 : 0;
}
/*
* Translate XInput event type to GDK event type.
* */
static unsigned int
translate_event_type (unsigned int xi_type)
{
unsigned int type;
switch (xi_type)
{
case XI_Motion:
case XI_RawMotion:
type = GDK_MOTION_NOTIFY; break;
case XI_ButtonPress:
case XI_RawButtonPress:
type = GDK_BUTTON_PRESS; break;
case XI_ButtonRelease:
case XI_RawButtonRelease:
type = GDK_BUTTON_RELEASE; break;
case XI_Enter:
type = GDK_ENTER_NOTIFY; break;
case XI_Leave:
type = GDK_LEAVE_NOTIFY; break;
case XI_TouchBegin:
case XI_RawTouchBegin:
type = GDK_TOUCH_BEGIN; break;
case XI_TouchUpdate:
case XI_RawTouchUpdate:
type = GDK_TOUCH_UPDATE; break;
case XI_TouchEnd:
case XI_RawTouchEnd:
type = GDK_TOUCH_END; break;
default: type = 0; break;
}
return type;
}
/*
* Translate XInput state to GDK event state.
* */
static unsigned int
translate_state (XIModifierState *mods_state,
XIButtonState *button_state,
XIGroupState *group_state)
{
unsigned int state = 0;
if (mods_state)
state = mods_state->effective;
if (button_state)
{
int n = MIN (G_N_ELEMENTS(gdk_button_masks), button_state->mask_len * 8);
int i;
for (i = 0; i < n; i++)
if (XIMaskIsSet (button_state->mask, i))
state |= gdk_button_masks[i];
}
if (group_state)
state |= (group_state->effective) << 13;
return state;
}
static int
osk_devices_translate_keycode (int keycode,
XIGroupState *group,
XIModifierState *mods)
{
unsigned int keyval = 0;
gdk_keymap_translate_keyboard_state (gdk_keymap_get_default (),
keycode,
mods->effective,
group->effective,
&keyval, NULL, NULL, NULL);
return (int) keyval;
}
/*
* Get Gdk event state of the master pointer.
*
* The master aggregates currently pressed buttons and key presses from all
* slave devices.
*
* Why we need aggregate button presses:
* Francesco uses one pointing device for button presses and a different one
* for motion events. The motion slave doesn't know about the button
* slave's state. We can either aggregate the button state over all slaves
* ourselves or rely on the master to do it for us.
*/
static unsigned int
get_master_state (OskDevices* dev)
{
Window win = DefaultRootWindow (dev->dpy);
Window root;
Window child;
double root_x;
double root_y;
double win_x;
double win_y;
XIButtonState buttons;
XIModifierState mods;
XIGroupState group;
unsigned int state = 0;
int master_id = 0;
XIGetClientPointer(dev->dpy, None, &master_id);
gdk_error_trap_push ();
XIQueryPointer(dev->dpy,
master_id,
win,
&root,
&child,
&root_x,
&root_y,
&win_x,
&win_y,
&buttons,
&mods,
&group);
if (!gdk_error_trap_pop ())
{
state = translate_state (&mods, &buttons, &group);
}
return state;
}
/*
* Get current GDK event state.
*/
static unsigned int
get_current_state (OskDevices* dev)
{
int i;
// Get out-of-sync master state, for key state mainly.
// Button state will be out-dated immediately before or after
// button press/release events.
unsigned int state = get_master_state (dev);
// override button state with what we collected in-sync
// -> no spurious stuck keys due to erroneous state in
// motion events.
for (i = 0; i < G_N_ELEMENTS(gdk_button_masks); i++)
{
int mask = gdk_button_masks[i];
state &= ~mask;
if (dev->button_states[i] > 0)
state |= mask;
}
return state;
}
/*
* Keep track of button state changes in sync with the events we receive.
*/
static void
update_state (int evtype, XIDeviceEvent* event, OskDevices* dev)
{
int button = event->detail;
if (button >= 1 && button < G_N_ELEMENTS(dev->button_states))
{
int* count = dev->button_states + (button-1);
if (evtype == XI_ButtonPress)
(*count)++;
if (evtype == XI_ButtonRelease)
{
(*count)--;
// some protection at least against initially pressed buttons
if (*count < 0)
*count = 0;
}
}
}
/*
* Handler for pointer and touch events.
*/
static Bool
handle_pointing_event (int evtype, XIEvent* xievent, OskDevices* dev)
{
switch (evtype)
{
case XI_Motion:
case XI_ButtonPress:
case XI_ButtonRelease:
case XI_TouchBegin:
case XI_TouchUpdate:
case XI_TouchEnd:
{
XIDeviceEvent *event = (XIDeviceEvent*) xievent;
unsigned int button = 0;
unsigned int sequence = 0;
unsigned int state;
if (evtype == XI_ButtonPress ||
evtype == XI_ButtonRelease)
button = event->detail;
if (evtype == XI_TouchBegin ||
evtype == XI_TouchUpdate ||
evtype == XI_TouchEnd)
sequence = event->detail;
update_state(evtype, event, dev);
state = get_current_state (dev);
osk_devices_call_event_handler_pointer (dev,
evtype,
event->display,
event->event,
event->deviceid,
event->sourceid,
event->event_x,
event->event_y,
event->root_x,
event->root_y,
button,
state,
sequence,
event->time);
return True; // handled
}
}
return False;
}
/*
* Handler for enter and leave events.
* No enter leave events are generated for slave devices, we have
* to rely on the master pointer here.
*/
static Bool
handle_enter_event (int evtype, XIEvent* xievent, OskDevices* dev)
{
switch (evtype)
{
case XI_Enter:
case XI_Leave:
{
XIEnterEvent *event = (XIEnterEvent*) xievent;
unsigned int button = 0;
unsigned int sequence = 0;
unsigned int state = get_master_state (dev);
osk_devices_call_event_handler_pointer (dev,
evtype,
event->display,
event->event,
event->deviceid,
event->sourceid,
event->event_x,
event->event_y,
event->root_x,
event->root_y,
button,
state,
sequence,
event->time);
return True; // handled
}
}
return False;
}
static GdkFilterReturn
osk_devices_event_filter (GdkXEvent *gdk_xevent,
GdkEvent *gdk_event,
OskDevices *dev)
{
XGenericEventCookie *cookie = &((XEvent *) gdk_xevent)->xcookie;
if (cookie->type == GenericEvent && cookie->extension == dev->xi2_opcode)
{
int evtype = cookie->evtype;
XIEvent *event = cookie->data;
//XIDeviceEvent *e = cookie->data;
//printf("device %d evtype %d type %d detail %d win %d\n", e->deviceid, evtype, e->type, e->detail, (int)e->event);
if (handle_pointing_event(evtype, event, dev))
return GDK_FILTER_CONTINUE;
if (handle_enter_event(evtype, event, dev))
return GDK_FILTER_CONTINUE;
switch (evtype)
{
case XI_HierarchyChanged:
{
XIHierarchyEvent *event = cookie->data;
if (event->flags & (XISlaveAdded |
XISlaveRemoved |
XISlaveAttached |
XISlaveDetached))
{
XIHierarchyInfo *info;
int i;
for (i = 0; i < event->num_info; i++)
{
info = &event->info[i];
if (info->flags & XISlaveAdded)
{
osk_devices_call_event_handler_device (dev,
OSK_DEVICE_ADDED_EVENT,
event->display,
info->deviceid,
0);
}
else if (info->flags & XISlaveRemoved)
{
osk_devices_call_event_handler_device (dev,
OSK_DEVICE_REMOVED_EVENT,
event->display,
info->deviceid,
0);
}
else if (info->flags & XISlaveAttached)
{
osk_devices_call_event_handler_device (dev,
OSK_SLAVE_ATTACHED_EVENT,
event->display,
info->deviceid,
0);
}
else if (info->flags & XISlaveDetached)
{
osk_devices_call_event_handler_device (dev,
OSK_SLAVE_DETACHED_EVENT,
event->display,
info->deviceid,
0);
}
}
}
break;
}
case XI_DeviceChanged:
{
XIDeviceChangedEvent *event = cookie->data;
if (event->reason == XISlaveSwitch)
osk_devices_call_event_handler_device (dev,
evtype,
event->display,
event->deviceid,
event->sourceid);
break;
}
case XI_KeyPress:
{
XIDeviceEvent *event = cookie->data;
int keyval;
if (!(event->flags & XIKeyRepeat))
{
keyval = osk_devices_translate_keycode (event->detail,
&event->group,
&event->mods);
if (keyval)
osk_devices_call_event_handler_key (dev,
evtype,
event->display,
event->deviceid,
event->sourceid,
keyval);
}
break;
}
case XI_KeyRelease:
{
XIDeviceEvent *event = cookie->data;
int keyval;
keyval = osk_devices_translate_keycode (event->detail,
&event->group,
&event->mods);
if (keyval)
osk_devices_call_event_handler_key (dev,
evtype,
event->display,
event->deviceid,
event->sourceid,
keyval);
break;
}
}
}
return GDK_FILTER_CONTINUE;
}
static Bool
osk_devices_get_product_id (OskDevices *dev,
int id,
unsigned int *vendor_id,
unsigned int *product_id)
{
Status rc;
Atom act_type;
int act_format;
unsigned long nitems, bytes;
unsigned char *data;
*vendor_id = 0;
*product_id = 0;
gdk_error_trap_push ();
rc = XIGetProperty (dev->dpy, id, dev->atom_product_id,
0, 2, False, XA_INTEGER,
&act_type, &act_format, &nitems, &bytes, &data);
gdk_error_trap_pop_ignored ();
if (rc == Success && nitems == 2 && act_format == 32)
{
guint32 *data32 = (guint32 *) data;
*vendor_id = *data32;
*product_id = *(data32 + 1);
XFree (data);
return True;
}
return False;
}
static int
get_touch_mode (XIAnyClassInfo **classes, int num_classes)
{
int i;
for (i = 0; i < num_classes; i++)
{
XITouchClassInfo *class = (XITouchClassInfo*) classes[i];
if (class->type == XITouchClass)
{
if (class->num_touches)
{
if (class->mode == XIDirectTouch ||
class->mode == XIDependentTouch)
{
return class->mode;
}
}
}
}
return 0;
}
/**
* osk_devices_get_info:
* @id: Id of an input device (int)
*
* Get a list of all input devices on the system. Each list item
* is a device info tuple, see osk_devices_get_info().
*
* Returns: A list of device info tuples.
*/
static PyObject *
osk_devices_list (PyObject *self, PyObject *args)
{
OskDevices *dev = (OskDevices *) self;
XIDeviceInfo *devices;
int i, n_devices;
PyObject *list;
devices = XIQueryDevice (dev->dpy, XIAllDevices, &n_devices);
list = PyList_New ((Py_ssize_t) n_devices);
if (!list)
goto error;
for (i = 0; i < n_devices; i++)
{
PyObject *value;
unsigned int vid, pid;
XIDeviceInfo *device = devices + i;
osk_devices_get_product_id (dev, device->deviceid, &vid, &pid);
value = Py_BuildValue ("(siiiBiii)",
device->name,
device->deviceid,
device->use,
device->attachment,
device->enabled,
vid, pid,
get_touch_mode(device->classes,
device->num_classes));
if (!value)
goto error;
if (PyList_SetItem (list, i, value) < 0)
{
Py_DECREF (value);
goto error;
}
}
XIFreeDeviceInfo (devices);
return list;
error:
PyErr_SetString (OSK_EXCEPTION, "failed to get device list");
Py_XDECREF (list);
XIFreeDeviceInfo (devices);
return NULL;
}
/**
* osk_devices_get_info:
* @id: Id of an input device (int)
*
* Get information about an input device. The device info is returned
* as a tuple.
*
* 0: name (string)
* 1: id (int)
* 2: type/use (int)
* 3: attachment/master id (int)
* 4: enabled (bool)
* 5: vendor id (int)
* 6: product id (int)
*
* Returns: A device info tuple.
*/
static PyObject *
osk_devices_get_info (PyObject *self, PyObject *args)
{
OskDevices *dev = (OskDevices *) self;
XIDeviceInfo *devices;
PyObject *value;
int id, n_devices;
unsigned int vid, pid;
if (!PyArg_ParseTuple (args, "i", &id))
return NULL;
gdk_error_trap_push ();
devices = XIQueryDevice (dev->dpy, id, &n_devices);
gdk_flush ();
if (gdk_error_trap_pop ())
{
PyErr_SetString (OSK_EXCEPTION, "invalid device id");
return NULL;
}
osk_devices_get_product_id (dev, id, &vid, &pid);
value = Py_BuildValue ("(siiiBii)",
devices[0].name,
devices[0].deviceid,
devices[0].use,
devices[0].attachment,
devices[0].enabled,
vid, pid);
XIFreeDeviceInfo (devices);
return value;
}
/**
* osk_devices_attach:
* @id: Id of the device to attach (int)
* @master: Id of a master device (int)
*
* Attaches the device with @id to @master.
*
*/
static PyObject *
osk_devices_attach (PyObject *self, PyObject *args)
{
OskDevices *dev = (OskDevices *) self;
XIAttachSlaveInfo info;
int id, master;
if (!PyArg_ParseTuple (args, "ii", &id, &master))
return NULL;
info.type = XIAttachSlave;
info.deviceid = id;
info.new_master = master;
gdk_error_trap_push ();
XIChangeHierarchy (dev->dpy, (XIAnyHierarchyChangeInfo *) &info, 1);
gdk_flush ();
if (gdk_error_trap_pop ())
{
PyErr_SetString (OSK_EXCEPTION, "failed to attach device");
return NULL;
}
Py_RETURN_NONE;
}
/**
* osk_devices_detach:
* @id: Id of the device to detach (int)
*
* Detaches an input device for its master. Detached devices
* stop sending "core events".
*
*/
static PyObject *
osk_devices_detach (PyObject *self, PyObject *args)
{
OskDevices *dev = (OskDevices *) self;
XIDetachSlaveInfo info;
int id;
if (!PyArg_ParseTuple (args, "i", &id))
return NULL;
info.type = XIDetachSlave;
info.deviceid = id;
gdk_error_trap_push ();
XIChangeHierarchy (dev->dpy, (XIAnyHierarchyChangeInfo *) &info, 1);
gdk_flush ();
if (gdk_error_trap_pop ())
{
PyErr_SetString (OSK_EXCEPTION, "failed to detach device");
return NULL;
}
Py_RETURN_NONE;
}
/**
* osk_devices_grab_device:
* @id: Id of the device to attach (int)
*
* Grabs the device with @id.
*
*/
static PyObject *
osk_devices_grab_device (PyObject *self, PyObject *args)
{
OskDevices *dev = (OskDevices *) self;
int id;
int _win;
Window win;
unsigned char mask[1] = {0};
XIEventMask events;
Status status;
gint error;
if (!PyArg_ParseTuple (args, "ii", &id, &_win))
return NULL;
win = (Window)_win;
if (!win)
win = DefaultRootWindow (dev->dpy);
events.deviceid = id;
events.mask = mask;
events.mask_len = sizeof(mask);
gdk_error_trap_push ();
status = XIGrabDevice(dev->dpy, id, win, CurrentTime, None,
XIGrabModeSync, XIGrabModeAsync,
True, &events);
error = gdk_error_trap_pop ();
if (status != Success || error)
{
PyErr_Format (OSK_EXCEPTION, "failed to grab device (0x%x, 0x%x)",
status, error);
return NULL;
}
Py_RETURN_NONE;
}
/**
* osk_devices_ungrab_device:
* @id: Id of the device to ungrab (int)
*
* Ungrabs the device with @id.
*
*/
static PyObject *
osk_devices_ungrab_device (PyObject *self, PyObject *args)
{
OskDevices *dev = (OskDevices *) self;
int id;
Status status;
gint error;
if (!PyArg_ParseTuple (args, "i", &id))
return NULL;
gdk_error_trap_push ();
status = XIUngrabDevice(dev->dpy, id, CurrentTime);
error = gdk_error_trap_pop ();
if (status != Success || error)
{
PyErr_Format (OSK_EXCEPTION, "failed to ungrab device (0x%x, 0x%x)",
status, error);
return NULL;
}
Py_RETURN_NONE;
}
/**
* osk_devices_select_events:
* @id: Id of the device to select events for (int)
* @event_mask: Bit mask of XI events to select (long)
*
* Selects XInput events for a device. The device will send the selected
* events to the #event_handler. If the calling instance was constructed
* without the #event_handler keyword, this function is a no-op.
*/
static PyObject *
osk_devices_select_events (PyObject *self, PyObject *args)
{
OskDevices *dev = (OskDevices *) self;
unsigned char mask[4] = { 0, 0, 0, 0};
int device_id;
unsigned long event_mask;
int _win;
Window win;
if (!PyArg_ParseTuple (args, "iil", &_win, &device_id, &event_mask))
return NULL;
win = (Window) _win;
if (dev->event_handler)
{
int i;
int nbits = MIN(sizeof(event_mask), sizeof(mask)) * 8;
for (i = 0; i < nbits; i++)
{
if (event_mask & 1<<i)
XISetMask (mask, i);
}
if (osk_devices_select (dev, win, device_id, mask, sizeof (mask)) < 0)
{
PyErr_SetString (OSK_EXCEPTION, "failed to open device");
return NULL;
}
}
Py_RETURN_NONE;
}
/**
* osk_devices_unselect_events:
* @id: Id of the device to close (int)
*
* "Closes" a device. If the calling instance was constructed
* without the #event_handler keyword or the device was not
* previously opened, this function is a no-op.
*
*/
static PyObject *
osk_devices_unselect_events (PyObject *self, PyObject *args)
{
OskDevices *dev = (OskDevices *) self;
unsigned char mask[1] = { 0 };
int device_id;
int _win;
Window win;
if (!PyArg_ParseTuple (args, "ii", &_win, &device_id))
return NULL;
win = (Window) _win;
if (dev->event_handler)
{
if (osk_devices_select (dev, win, device_id, mask, sizeof (mask)) < 0)
{
PyErr_SetString (OSK_EXCEPTION, "failed to close device");
return NULL;
}
}
Py_RETURN_NONE;
}
static PyObject *
osk_devices_get_client_pointer (PyObject *self, PyObject *args)
{
OskDevices *dev = (OskDevices *) self;
int device_id = 0;
XIGetClientPointer(dev->dpy, None, &device_id);
return PyLong_FromLong(device_id);
}
static PyMethodDef osk_devices_methods[] = {
{ "list", osk_devices_list, METH_NOARGS, NULL },
{ "get_info", osk_devices_get_info, METH_VARARGS, NULL },
{ "attach", osk_devices_attach, METH_VARARGS, NULL },
{ "detach", osk_devices_detach, METH_VARARGS, NULL },
{ "grab_device", osk_devices_grab_device, METH_VARARGS, NULL },
{ "ungrab_device", osk_devices_ungrab_device, METH_VARARGS, NULL },
{ "select_events", osk_devices_select_events, METH_VARARGS, NULL },
{ "unselect_events", osk_devices_unselect_events, METH_VARARGS, NULL },
{ "get_client_pointer", osk_devices_get_client_pointer, METH_NOARGS, NULL },
{ NULL, NULL, 0, NULL }
};
|