summaryrefslogtreecommitdiff
path: root/src/XISetDevFocus.c
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2009-03-12 16:25:02 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2009-03-20 15:34:01 +1000
commit20629761be39493b650f48e120d5c970bca5e796 (patch)
treefb39161edf31f454831334cc3d1915b6c1df0dd5 /src/XISetDevFocus.c
parent190035dbb9e74668f7965967a9529fec51d42d14 (diff)
Add XISetDeviceFocus and XIGetDeviceFocus
Diffstat (limited to 'src/XISetDevFocus.c')
-rw-r--r--src/XISetDevFocus.c53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/XISetDevFocus.c b/src/XISetDevFocus.c
new file mode 100644
index 0000000..fe08c1f
--- /dev/null
+++ b/src/XISetDevFocus.c
@@ -0,0 +1,53 @@
+/*
+ * Copyright © 2009 Red Hat, Inc.
+ *
+ * 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 (including the next
+ * paragraph) 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.
+ *
+ */
+
+#include <stdint.h>
+#include <X11/Xlibint.h>
+#include <X11/extensions/XI2proto.h>
+#include <X11/extensions/XInput2.h>
+#include <X11/extensions/extutil.h>
+#include "XIint.h"
+
+Status
+XISetDeviceFocus(Display *dpy, int deviceid, Window focus, Time time)
+{
+ xXISetDeviceFocusReq *req;
+
+ XExtDisplayInfo *extinfo = XInput_find_display(dpy);
+ if (_XiCheckExtInit(dpy, Dont_Check, extinfo) == -1)
+ return (NoSuchExtension);
+
+ GetReq(XISetDeviceFocus, req);
+ req->reqType = extinfo->codes->major_opcode;
+ req->ReqType = X_XISetDeviceFocus;
+ req->deviceid = deviceid;
+ req->focus = focus;
+ req->time = time;
+
+ UnlockDisplay(dpy);
+ SyncHandle();
+ return Success;
+
+}
+