1c27c18e8Smrg/* 2c27c18e8Smrg * Copyright © 2009 Red Hat, Inc. 3c27c18e8Smrg * 4c27c18e8Smrg * Permission is hereby granted, free of charge, to any person obtaining a 5c27c18e8Smrg * copy of this software and associated documentation files (the "Software"), 6c27c18e8Smrg * to deal in the Software without restriction, including without limitation 7c27c18e8Smrg * the rights to use, copy, modify, merge, publish, distribute, sublicense, 8c27c18e8Smrg * and/or sell copies of the Software, and to permit persons to whom the 9c27c18e8Smrg * Software is furnished to do so, subject to the following conditions: 10c27c18e8Smrg * 11c27c18e8Smrg * The above copyright notice and this permission notice (including the next 12c27c18e8Smrg * paragraph) shall be included in all copies or substantial portions of the 13c27c18e8Smrg * Software. 14c27c18e8Smrg * 15c27c18e8Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16c27c18e8Smrg * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17c27c18e8Smrg * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 18c27c18e8Smrg * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19c27c18e8Smrg * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 20c27c18e8Smrg * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 21c27c18e8Smrg * DEALINGS IN THE SOFTWARE. 22c27c18e8Smrg * 23c27c18e8Smrg */ 24c27c18e8Smrg 25f1ee322dSmrg#if HAVE_CONFIG_H 26f1ee322dSmrg#include <config.h> 27f1ee322dSmrg#endif 28f1ee322dSmrg 29c27c18e8Smrg#include <stdint.h> 30c27c18e8Smrg#include <X11/Xlibint.h> 31c27c18e8Smrg#include <X11/extensions/XI2proto.h> 32c27c18e8Smrg#include <X11/extensions/XInput2.h> 33c27c18e8Smrg#include <X11/extensions/extutil.h> 34c27c18e8Smrg#include "XIint.h" 35c27c18e8Smrg 36c27c18e8SmrgStatus 37c27c18e8SmrgXISetFocus(Display *dpy, int deviceid, Window focus, Time time) 38c27c18e8Smrg{ 39c27c18e8Smrg xXISetFocusReq *req; 40c27c18e8Smrg 41c27c18e8Smrg XExtDisplayInfo *extinfo = XInput_find_display(dpy); 42c27c18e8Smrg 43c27c18e8Smrg LockDisplay(dpy); 44b789ec8aSmrg if (_XiCheckExtInit(dpy, XInput_2_0, extinfo) == -1) 45c27c18e8Smrg return (NoSuchExtension); 46c27c18e8Smrg 47c27c18e8Smrg GetReq(XISetFocus, req); 48c27c18e8Smrg req->reqType = extinfo->codes->major_opcode; 49c27c18e8Smrg req->ReqType = X_XISetFocus; 50c27c18e8Smrg req->deviceid = deviceid; 51c27c18e8Smrg req->focus = focus; 52c27c18e8Smrg req->time = time; 53c27c18e8Smrg 54c27c18e8Smrg UnlockDisplay(dpy); 55c27c18e8Smrg SyncHandle(); 56c27c18e8Smrg return Success; 57c27c18e8Smrg 58c27c18e8Smrg} 59c27c18e8Smrg 60