2009-01-20 08:46:12 -07:00
|
|
|
/*
|
|
|
|
Copyright 1985, 1987, 1990, 1998 The Open Group
|
|
|
|
Copyright 2008 Dan Nicholson
|
|
|
|
|
|
|
|
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 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 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.
|
|
|
|
|
|
|
|
Except as contained in this notice, the names of the authors or their
|
|
|
|
institutions shall not be used in advertising or otherwise to promote the
|
|
|
|
sale, use or other dealings in this Software without prior written
|
|
|
|
authorization from the authors.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _XKBCOMMON_H_
|
|
|
|
#define _XKBCOMMON_H_
|
|
|
|
|
|
|
|
#include <X11/X.h>
|
2009-03-19 18:16:13 -06:00
|
|
|
#include <X11/Xdefs.h>
|
2009-03-17 07:19:56 -06:00
|
|
|
#include <X11/Xfuncproto.h>
|
2009-01-20 08:46:12 -07:00
|
|
|
#include <X11/keysymdef.h>
|
2009-03-19 18:16:13 -06:00
|
|
|
#include <X11/extensions/XKBstrcommon.h>
|
2009-03-19 17:57:01 -06:00
|
|
|
#include <X11/extensions/XKBgeomcommon.h>
|
2009-03-19 18:16:13 -06:00
|
|
|
|
|
|
|
/* Common keyboard description structure */
|
|
|
|
typedef struct _XkbcDesc {
|
|
|
|
unsigned int defined;
|
|
|
|
unsigned short flags;
|
|
|
|
unsigned short device_spec;
|
|
|
|
KeyCode min_key_code;
|
|
|
|
KeyCode max_key_code;
|
|
|
|
|
|
|
|
XkbControlsPtr ctrls;
|
|
|
|
XkbServerMapPtr server;
|
|
|
|
XkbClientMapPtr map;
|
|
|
|
XkbIndicatorPtr indicators;
|
|
|
|
XkbNamesPtr names;
|
|
|
|
XkbCompatMapPtr compat;
|
|
|
|
XkbGeometryPtr geom;
|
|
|
|
} XkbcDescRec, *XkbcDescPtr;
|
2009-01-20 08:46:12 -07:00
|
|
|
|
2009-03-17 07:19:56 -06:00
|
|
|
_XFUNCPROTOBEGIN
|
|
|
|
|
2009-01-20 08:46:12 -07:00
|
|
|
extern char *
|
|
|
|
XkbcKeysymToString(KeySym ks);
|
|
|
|
|
|
|
|
extern KeySym
|
|
|
|
XkbcStringToKeysym(const char *s);
|
|
|
|
|
2009-03-19 17:57:01 -06:00
|
|
|
extern int
|
|
|
|
XkbcAllocCompatMap(XkbcDescPtr xkb, unsigned which, unsigned nSI);
|
|
|
|
|
|
|
|
extern void
|
|
|
|
XkbcFreeCompatMap(XkbcDescPtr xkb, unsigned which, Bool freeMap);
|
|
|
|
|
|
|
|
extern int
|
|
|
|
XkbcAllocNames(XkbcDescPtr xkb, unsigned which, int nTotalRG, int nTotalAliases);
|
|
|
|
|
|
|
|
extern void
|
|
|
|
XkbcFreeNames(XkbcDescPtr xkb, unsigned which, Bool freeMap);
|
|
|
|
|
|
|
|
extern int
|
|
|
|
XkbcAllocControls(XkbcDescPtr xkb, unsigned which);
|
|
|
|
|
|
|
|
extern void
|
|
|
|
XkbcFreeControls(XkbcDescPtr xkb, unsigned which, Bool freeMap);
|
|
|
|
|
|
|
|
extern int
|
|
|
|
XkbcAllocIndicatorMaps(XkbcDescPtr xkb);
|
|
|
|
|
|
|
|
extern void
|
|
|
|
XkbcFreeIndicatorMaps(XkbcDescPtr xkb);
|
|
|
|
|
|
|
|
extern XkbcDescRec *
|
|
|
|
XkbcAllocKeyboard(void);
|
|
|
|
|
|
|
|
extern int
|
|
|
|
XkbcAllocClientMap(XkbcDescPtr xkb, unsigned which, unsigned nTotalTypes);
|
|
|
|
|
|
|
|
extern int
|
|
|
|
XkbcAllocServerMap(XkbcDescPtr xkb, unsigned which, unsigned nNewActions);
|
|
|
|
|
|
|
|
extern void
|
|
|
|
XkbcFreeClientMap(XkbcDescPtr xkb, unsigned what, Bool freeMap);
|
|
|
|
|
|
|
|
extern void
|
|
|
|
XkbcFreeServerMap(XkbcDescPtr xkb, unsigned what, Bool freeMap);
|
|
|
|
|
|
|
|
extern void
|
|
|
|
XkbcFreeKeyboard(XkbcDescPtr xkb, unsigned which, Bool freeAll);
|
|
|
|
|
|
|
|
extern void
|
|
|
|
XkbcFreeGeomProperties(XkbGeometryPtr geom, int first, int count, Bool freeAll);
|
|
|
|
|
|
|
|
extern void
|
|
|
|
XkbcFreeGeomKeyAliases(XkbGeometryPtr geom, int first, int count, Bool freeAll);
|
|
|
|
|
|
|
|
extern void
|
|
|
|
XkbcFreeGeomColors(XkbGeometryPtr geom, int first, int count, Bool freeAll);
|
|
|
|
|
|
|
|
extern void
|
|
|
|
XkbcFreeGeomPoints(XkbOutlinePtr outline, int first, int count, Bool freeAll);
|
|
|
|
|
|
|
|
extern void
|
|
|
|
XkbcFreeGeomOutlines(XkbShapePtr shape, int first, int count, Bool freeAll);
|
|
|
|
|
|
|
|
extern void
|
|
|
|
XkbcFreeGeomShapes(XkbGeometryPtr geom, int first, int count, Bool freeAll);
|
|
|
|
|
|
|
|
extern void
|
|
|
|
XkbcFreeGeomOverlayKeys(XkbOverlayRowPtr row, int first, int count,
|
|
|
|
Bool freeAll);
|
|
|
|
|
|
|
|
extern void
|
|
|
|
XkbcFreeGeomOverlayRows(XkbOverlayPtr overlay, int first, int count,
|
|
|
|
Bool freeAll);
|
|
|
|
|
|
|
|
extern void
|
|
|
|
XkbcFreeGeomOverlays(XkbSectionPtr section, int first, int count, Bool freeAll);
|
|
|
|
|
|
|
|
extern void
|
|
|
|
XkbcFreeGeomKeys(XkbRowPtr row, int first, int count, Bool freeAll);
|
|
|
|
|
|
|
|
extern void
|
|
|
|
XkbcFreeGeomRows(XkbSectionPtr section, int first, int count, Bool freeAll);
|
|
|
|
|
|
|
|
extern void
|
|
|
|
XkbcFreeGeomSections(XkbGeometryPtr geom, int first, int count, Bool freeAll);
|
|
|
|
|
|
|
|
extern void
|
|
|
|
XkbcFreeGeomDoodads(XkbDoodadPtr doodads, int nDoodads, Bool freeAll);
|
|
|
|
|
|
|
|
extern void
|
|
|
|
XkbcFreeGeometry(XkbGeometryPtr geom, unsigned which, Bool freeMap);
|
|
|
|
|
2009-03-28 12:56:35 -06:00
|
|
|
extern int
|
|
|
|
XkbcAllocGeomProps(XkbGeometryPtr geom, int nProps);
|
|
|
|
|
|
|
|
extern int
|
|
|
|
XkbcAllocGeomColors(XkbGeometryPtr geom, int nColors);
|
|
|
|
|
|
|
|
extern int
|
|
|
|
XkbcAllocGeomKeyAliases(XkbGeometryPtr geom, int nKeyAliases);
|
|
|
|
|
|
|
|
extern int
|
|
|
|
XkbcAllocGeomShapes(XkbGeometryPtr geom, int nShapes);
|
|
|
|
|
|
|
|
extern int
|
|
|
|
XkbcAllocGeomSections(XkbGeometryPtr geom, int nSections);
|
|
|
|
|
|
|
|
extern int
|
|
|
|
XkbcAllocGeomOverlays(XkbSectionPtr section, int nOverlays);
|
|
|
|
|
|
|
|
extern int
|
|
|
|
XkbcAllocGeomOverlayRows(XkbOverlayPtr overlay, int nRows);
|
|
|
|
|
|
|
|
extern int
|
|
|
|
XkbcAllocGeomOverlayKeys(XkbOverlayRowPtr row, int nKeys);
|
|
|
|
|
|
|
|
extern int
|
|
|
|
XkbcAllocGeomDoodads(XkbGeometryPtr geom, int nDoodads);
|
|
|
|
|
|
|
|
extern int
|
|
|
|
XkbcAllocGeomSectionDoodads(XkbSectionPtr section, int nDoodads);
|
|
|
|
|
|
|
|
extern int
|
|
|
|
XkbcAllocGeomOutlines(XkbShapePtr shape, int nOL);
|
|
|
|
|
|
|
|
extern int
|
|
|
|
XkbcAllocGeomRows(XkbSectionPtr section, int nRows);
|
|
|
|
|
|
|
|
extern int
|
|
|
|
XkbcAllocGeomPoints(XkbOutlinePtr ol, int nPts);
|
|
|
|
|
|
|
|
extern int
|
|
|
|
XkbcAllocGeomKeys(XkbRowPtr row, int nKeys);
|
|
|
|
|
2009-03-19 17:57:01 -06:00
|
|
|
extern int
|
|
|
|
XkbcAllocGeometry(XkbcDescPtr xkb, XkbGeometrySizesPtr sizes);
|
|
|
|
|
2009-03-28 13:39:21 -06:00
|
|
|
extern XkbPropertyPtr
|
|
|
|
XkbcAddGeomProperty(XkbGeometryPtr geom, char *name, char *value);
|
|
|
|
|
|
|
|
extern XkbKeyAliasPtr
|
|
|
|
XkbcAddGeomKeyAlias(XkbGeometryPtr geom, char *aliasStr, char *realStr);
|
|
|
|
|
|
|
|
extern XkbColorPtr
|
|
|
|
XkbcAddGeomColor(XkbGeometryPtr geom, char *spec, unsigned int pixel);
|
|
|
|
|
|
|
|
extern XkbOutlinePtr
|
|
|
|
XkbcAddGeomOutline(XkbShapePtr shape, int sz_points);
|
|
|
|
|
|
|
|
extern XkbShapePtr
|
|
|
|
XkbcAddGeomShape(XkbGeometryPtr geom, Atom name, int sz_outlines);
|
|
|
|
|
|
|
|
extern XkbKeyPtr
|
|
|
|
XkbcAddGeomKey(XkbRowPtr row);
|
|
|
|
|
|
|
|
extern XkbRowPtr
|
|
|
|
XkbcAddGeomRow(XkbSectionPtr section, int sz_keys);
|
|
|
|
|
|
|
|
extern XkbSectionPtr
|
|
|
|
XkbcAddGeomSection(XkbGeometryPtr geom, Atom name,
|
|
|
|
int sz_rows, int sz_doodads, int sz_over);
|
|
|
|
|
|
|
|
extern XkbDoodadPtr
|
|
|
|
XkbcAddGeomDoodad(XkbGeometryPtr geom, XkbSectionPtr section, Atom name);
|
|
|
|
|
|
|
|
extern XkbOverlayKeyPtr
|
|
|
|
XkbcAddGeomOverlayKey(XkbOverlayPtr overlay, XkbOverlayRowPtr row,
|
|
|
|
char *over, char *under);
|
|
|
|
|
|
|
|
extern XkbOverlayRowPtr
|
|
|
|
XkbcAddGeomOverlayRow(XkbOverlayPtr overlay, int row_under, int sz_keys);
|
|
|
|
|
|
|
|
extern XkbOverlayPtr
|
|
|
|
XkbcAddGeomOverlay(XkbSectionPtr section, Atom name, int sz_rows);
|
|
|
|
|
2009-03-25 20:00:49 -06:00
|
|
|
extern void
|
|
|
|
XkbcInitAtoms(void);
|
|
|
|
|
|
|
|
extern char *
|
|
|
|
XkbcAtomGetString(Atom atom);
|
|
|
|
|
|
|
|
extern Atom
|
|
|
|
XkbcInternAtom(char *name, Bool onlyIfExists);
|
|
|
|
|
2009-03-28 07:32:08 -06:00
|
|
|
extern char *
|
2009-03-28 15:06:26 -06:00
|
|
|
XkbcAtomText(Atom atm);
|
2009-03-28 07:32:08 -06:00
|
|
|
|
2009-03-28 16:12:30 -06:00
|
|
|
extern char *
|
|
|
|
XkbcVModIndexText(XkbcDescPtr xkb, unsigned ndx);
|
|
|
|
|
|
|
|
extern char *
|
|
|
|
XkbcVModMaskText(XkbcDescPtr xkb, unsigned modMask, unsigned mask);
|
|
|
|
|
2009-03-28 16:32:51 -06:00
|
|
|
extern char *
|
|
|
|
XkbcModIndexText(unsigned ndx);
|
|
|
|
|
2009-03-28 07:32:08 -06:00
|
|
|
extern char *
|
2009-03-28 15:06:26 -06:00
|
|
|
XkbcModMaskText(unsigned mask, Bool cFormat);
|
|
|
|
|
|
|
|
extern char *
|
|
|
|
XkbcConfigText(unsigned config);
|
|
|
|
|
|
|
|
extern char *
|
|
|
|
XkbcGeomFPText(int val);
|
|
|
|
|
|
|
|
extern char *
|
|
|
|
XkbcActionTypeText(unsigned type);
|
|
|
|
|
|
|
|
extern char *
|
|
|
|
XkbcKeysymText(KeySym sym);
|
|
|
|
|
|
|
|
extern char *
|
|
|
|
XkbcKeyNameText(char *name);
|
|
|
|
|
|
|
|
extern char *
|
|
|
|
XkbcSIMatchText(unsigned type);
|
2009-03-28 07:32:08 -06:00
|
|
|
|
2009-03-17 07:19:56 -06:00
|
|
|
_XFUNCPROTOEND
|
|
|
|
|
2009-01-20 08:46:12 -07:00
|
|
|
#endif /* _XKBCOMMON_H_ */
|