1 /* 2 * Copyright © 2013 Ran Benita 3 * 4 * Permission is hereby granted, free of charge, to any person obtaining a 5 * copy of this software and associated documentation files (the "Software"), 6 * to deal in the Software without restriction, including without limitation 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 8 * and/or sell copies of the Software, and to permit persons to whom the 9 * Software is furnished to do so, subject to the following conditions: 10 * 11 * The above copyright notice and this permission notice (including the next 12 * paragraph) shall be included in all copies or substantial portions of the 13 * Software. 14 * 15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 21 * DEALINGS IN THE SOFTWARE. 22 */ 23 24 #ifndef _XKBCOMMON_X11_PRIV_H 25 #define _XKBCOMMON_X11_PRIV_H 26 27 #include <xcb/xkb.h> 28 29 #include "keymap.h" 30 #include "xkbcommon/xkbcommon-x11.h" 31 32 /* Get a strdup'd name of an X atom. */ 33 bool 34 get_atom_name(xcb_connection_t *conn, xcb_atom_t atom, char **out); 35 36 /* 37 * Make a xkb_atom_t's from X atoms (prefer to send as many as possible 38 * at once, to avoid many roundtrips). 39 * 40 * TODO: We can make this more flexible, such that @to doesn't have to 41 * be sequential. Then we can convert most adopt_atom() calls to 42 * adopt_atoms(). 43 * Atom caching would also likely be useful for avoiding quite a 44 * few requests. 45 */ 46 bool 47 adopt_atoms(struct xkb_context *ctx, xcb_connection_t *conn, 48 const xcb_atom_t *from, xkb_atom_t *to, size_t count); 49 50 bool 51 adopt_atom(struct xkb_context *ctx, xcb_connection_t *conn, xcb_atom_t atom, 52 xkb_atom_t *out); 53 54 #endif 55