⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xkblib.h

📁 远程桌面连接工具
💻 H
📖 第 1 页 / 共 3 页
字号:
/* $XConsortium: XKBlib.h /main/17 1996/03/01 14:30:14 kaleb $ *//************************************************************Copyright (c) 1993 by Silicon Graphics Computer Systems, Inc.Permission to use, copy, modify, and distribute thissoftware and its documentation for any purpose and withoutfee is hereby granted, provided that the above copyrightnotice appear in all copies and that both that copyrightnotice and this permission notice appear in supportingdocumentation, and that the name of Silicon Graphics not be used in advertising or publicity pertaining to distribution of the software without specific prior written permission.Silicon Graphics makes no representation about the suitability of this software for any purpose. It is provided "as is"without any express or implied warranty.SILICON GRAPHICS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL SILICONGRAPHICS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION  WITHTHE USE OR PERFORMANCE OF THIS SOFTWARE.********************************************************/#ifndef _XKBLIB_H_#define _XKBLIB_H_#include <X11/extensions/XKBstr.h>typedef struct _XkbAnyEvent {	int 		type;		/* XkbAnyEvent */	unsigned long 	serial;		/* # of last req processed by server */	Bool 		send_event;	/* is this from a SendEvent request? */	Display *	display;	/* Display the event was read from */	Time 		time;		/* milliseconds */	int 		xkb_type;	/* XKB event minor code */	unsigned int 	device;		/* device ID */} XkbAnyEvent;typedef struct _XkbNewKeyboardNotify {	int 		type;		/* XkbAnyEvent */	unsigned long 	serial;		/* of last req processed by server */	Bool 		send_event;	/* is this from a SendEvent request? */	Display *	display;	/* Display the event was read from */	Time 		time;		/* milliseconds */	int 		xkb_type;	/* XkbNewKeyboardNotify */	int	 	device;		/* device ID */	int	 	old_device;	/* device ID of previous keyboard */	int	 	min_key_code;	/* minimum key code */	int		max_key_code;	/* maximum key code */	int	 	old_min_key_code;/* min key code of previous kbd */	int		old_max_key_code;/* max key code of previous kbd */	unsigned int	changed;	/* changed aspects of the keyboard */	char	 	req_major;	/* major and minor opcode of req */	char	 	req_minor;	/* that caused change, if applicable */} XkbNewKeyboardNotifyEvent;typedef struct _XkbMapNotifyEvent {	int 		type;		/* XkbAnyEvent */	unsigned long 	serial;		/* of last req processed by server */	Bool 		send_event;	/* is this from a SendEvent request */	Display *	display;	/* Display the event was read from */	Time 		time;		/* milliseconds */	int 		xkb_type;	/* XkbMapNotify */	int 		device;		/* device ID */	unsigned int 	changed;	/* fields which have been changed */	unsigned int 	flags;		/* reserved */	int 		first_type;	/* first changed key type */	int 		num_types;	/* number of changed key types */	KeyCode		min_key_code;	KeyCode		max_key_code;	KeyCode		first_key_sym;	KeyCode		first_key_act;	KeyCode		first_key_behavior;	KeyCode		first_key_explicit;	KeyCode		first_modmap_key;  	KeyCode		first_vmodmap_key;	int		num_key_syms;	int		num_key_acts;	int		num_key_behaviors;	int		num_key_explicit;	int 		num_modmap_keys;	int 		num_vmodmap_keys;	unsigned int 	vmods;		/* mask of changed virtual mods */} XkbMapNotifyEvent;typedef struct _XkbStateNotifyEvent {	int 		type;		/* XkbAnyEvent */	unsigned long 	serial;		/* # of last req processed by server */	Bool 		send_event;	/* is this from a SendEvent request? */	Display *	display;	/* Display the event was read from */	Time 		time;		/* milliseconds */	int 		xkb_type;	/* XkbStateNotify */	int 		device;		/* device ID */	unsigned int 	changed;	/* mask of changed state components */	int 		group;		/* keyboard group */	int 		base_group;	/* base keyboard group */	int 		latched_group;	/* latched keyboard group */	int 		locked_group;	/* locked keyboard group */	unsigned int	mods;		/* modifier state */	unsigned int 	base_mods;	/* base modifier state */	unsigned int	latched_mods;	/* latched modifiers */	unsigned int	locked_mods;	/* locked modifiers */	int 		compat_state;	/* compatibility state */	unsigned char	grab_mods;	/* mods used for grabs */	unsigned char	compat_grab_mods;/* grab mods for non-XKB clients */	unsigned char	lookup_mods;	/* mods sent to clients */	unsigned char	compat_lookup_mods; /* mods sent to non-XKB clients */	int 		ptr_buttons;	/* pointer button state */	KeyCode		keycode;	/* keycode that caused the change */	char 		event_type;	/* KeyPress or KeyRelease */	char 		req_major;	/* Major opcode of request */	char 		req_minor;	/* Minor opcode of request */} XkbStateNotifyEvent;typedef struct _XkbControlsNotify {	int 		type;		/* XkbAnyEvent */	unsigned long 	serial;		/* of last req processed by server */	Bool 		send_event;	/* is this from a SendEvent request? */	Display *	display;	/* Display the event was read from */	Time 		time;		/* milliseconds */	int 		xkb_type;	/* XkbControlsNotify */	int 		device;		/* device ID */	unsigned int	changed_ctrls;	/* controls with changed sub-values */	unsigned int 	enabled_ctrls;	/* controls currently enabled */	unsigned int	enabled_ctrl_changes;/* controls just {en,dis}abled */	int 		num_groups;	/* total groups on keyboard */	KeyCode		keycode;	/* key that caused change or 0 */	char 		event_type;	/* type of event that caused change */	char 		req_major;	/* if keycode==0, major and minor */	char 		req_minor;	/* opcode of req that caused change */} XkbControlsNotifyEvent;typedef struct _XkbIndicatorNotify {	int 		type;		/* XkbAnyEvent */	unsigned long 	serial;		/* of last req processed by server */	Bool 		send_event;	/* is this from a SendEvent request? */	Display *	display;	/* Display the event was read from */	Time 		time;		/* milliseconds */	int 		xkb_type;	/* XkbIndicatorNotify */	int 		device;		/* device ID */	unsigned int	changed;	/* indicators with new state or map */	unsigned int	state;	 	/* current state of all indicators */} XkbIndicatorNotifyEvent;typedef struct _XkbNamesNotify {	int 		type;		/* XkbAnyEvent */	unsigned long 	serial;		/* of last req processed by server */	Bool 		send_event;	/* is this from a SendEvent request? */	Display *	display;	/* Display the event was read from */	Time 		time;		/* milliseconds */	int 		xkb_type;	/* XkbNamesNotify */	int	 	device;		/* device ID */	unsigned int 	changed;	/* names that have changed */	int	 	first_type;	/* first key type with new name */	int	 	num_types;	/* number of key types with new names */	int	 	first_lvl;	/* first key type new new level names */	int	 	num_lvls;	/* # of key types w/new level names */	int	 	num_aliases;	/* total number of key aliases*/	int	 	num_radio_groups;/* total number of radio groups */	unsigned int 	changed_vmods;	/* virtual modifiers with new names */	unsigned int 	changed_groups;	/* groups with new names */	unsigned int 	changed_indicators;/* indicators with new names */	int		first_key;	/* first key with new name */	int		num_keys;	/* number of keys with new names */} XkbNamesNotifyEvent;typedef struct _XkbCompatMapNotify {	int 		type;		/* XkbAnyEvent */	unsigned long 	serial;		/* of last req processed by server */	Bool 		send_event;	/* is this from a SendEvent request? */	Display *	display;	/* Display the event was read from */	Time 		time;		/* milliseconds */	int 		xkb_type;	/* XkbCompatMapNotify */	int	 	device;		/* device ID */	unsigned int 	changed_groups; /* groups with new compat maps */	int	 	first_si;	/* first new symbol interp */	int	 	num_si;		/* number of new symbol interps */	int	 	num_total_si;	/* total # of symbol interps */} XkbCompatMapNotifyEvent;typedef struct _XkbBellNotify {	int 		type;		/* XkbAnyEvent */	unsigned long 	serial;		/* of last req processed by server */	Bool 		send_event;	/* is this from a SendEvent request? */	Display *	display;	/* Display the event was read from */	Time 		time;		/* milliseconds */	int 		xkb_type;	/* XkbBellNotify */	int	 	device;		/* device ID */	int	 	percent;	/* requested volume as a % of maximum */	int	 	pitch;		/* requested pitch in Hz */	int	 	duration;	/* requested duration in useconds */	int	 	bell_class;	/* (input extension) feedback class */	int	 	bell_id;	/* (input extension) ID of feedback */	Atom 		name;		/* "name" of requested bell */	Window 		window;		/* window associated with event */	Bool		event_only;	/* "event only" requested */} XkbBellNotifyEvent;typedef struct _XkbActionMessage {	int 		type;		/* XkbAnyEvent */	unsigned long 	serial;		/* of last req processed by server */	Bool 		send_event;	/* is this from a SendEvent request? */	Display *	display;	/* Display the event was read from */	Time 		time;		/* milliseconds */	int 		xkb_type;	/* XkbActionMessage */	int	 	device;		/* device ID */	KeyCode		keycode;	/* key that generated the event */	Bool 		press;		/* true if act caused by key press */	Bool 		key_event_follows;/* true if key event also generated */	int		group;		/* effective group */	unsigned int	mods;		/* effective mods */	char 		message[XkbActionMessageLength+1]; 					/* message -- leave space for NUL */} XkbActionMessageEvent;typedef struct _XkbAccessXNotify {	int 		type;		/* XkbAnyEvent */	unsigned long 	serial;		/* of last req processed by server */	Bool 		send_event;	/* is this from a SendEvent request? */	Display *	display;	/* Display the event was read from */	Time 		time;		/* milliseconds */	int 		xkb_type;	/* XkbAccessXNotify */	int	 	device;		/* device ID */	int	 	detail;		/* XkbAXN_* */	int	 	keycode;	/* key of event */	int	 	sk_delay;	/* current slow keys delay */	int		debounce_delay;	/* current debounce delay */} XkbAccessXNotifyEvent;typedef struct _XkbExtensionDeviceNotify {	int 		type;		/* XkbAnyEvent */	unsigned long 	serial;		/* of last req processed by server */	Bool 		send_event;	/* is this from a SendEvent request? */	Display *	display;	/* Display the event was read from */	Time 		time;		/* milliseconds */	int 		xkb_type;	/* XkbExtensionDeviceNotify */	int	 	device;		/* device ID */	unsigned int	reason;		/* reason for the event */		unsigned int	supported;	/* mask of supported features */		unsigned int	unsupported;	/* mask of unsupported features */					/* that some app tried to use */	int	 	first_btn;	/* first button that changed */	int	 	num_btns;	/* range of buttons changed */	unsigned int	leds_defined;   /* indicators with names or maps */	unsigned int	led_state;	/* current state of the indicators */	int		led_class;	/* feedback class for led changes */	int		led_id;   	/* feedback id for led changes */} XkbExtensionDeviceNotifyEvent;typedef union _XkbEvent {	int				type;	XkbAnyEvent			any;	XkbNewKeyboardNotifyEvent	new_kbd;	XkbMapNotifyEvent		map;	XkbStateNotifyEvent		state;	XkbControlsNotifyEvent		ctrls;	XkbIndicatorNotifyEvent 	indicators;	XkbNamesNotifyEvent		names;	XkbCompatMapNotifyEvent		compat;	XkbBellNotifyEvent		bell;	XkbActionMessageEvent		message;	XkbAccessXNotifyEvent		accessx;	XkbExtensionDeviceNotifyEvent 	device;	XEvent				core;} XkbEvent;typedef struct	_XkbKbdDpyState	XkbKbdDpyStateRec,*XkbKbdDpyStatePtr;	/* XkbOpenDisplay error codes */#define	XkbOD_Success		0#define	XkbOD_BadLibraryVersion	1#define	XkbOD_ConnectionRefused	2#define	XkbOD_NonXkbServer	3#define	XkbOD_BadServerVersion	4	/* Values for XlibFlags */#define	XkbLC_ForceLatin1Lookup		(1<<0)#define	XkbLC_ConsumeLookupMods		(1<<1)#define	XkbLC_AlwaysConsumeShiftAndLock (1<<2)#define	XkbLC_IgnoreNewKeyboards	(1<<3)#define	XkbLC_ControlFallback		(1<<4)#define	XkbLC_ConsumeKeysOnComposeFail	(1<<29)#define	XkbLC_ComposeLED		(1<<30)#define	XkbLC_BeepOnComposeFail		(1<<31)#define	XkbLC_AllComposeControls	(0xc0000000)#define	XkbLC_AllControls		(0xc000001f)_XFUNCPROTOBEGINextern	Bool	XkbIgnoreExtension(#if NeedFunctionPrototypes	Bool			/* ignore */#endif);extern	Display *XkbOpenDisplay(#if NeedFunctionPrototypes	char *			/* name */,	int *			/* ev_rtrn */,	int *			/* err_rtrn */,	int *			/* major_rtrn */,	int *			/* minor_rtrn */,	int *			/* reason */#endif);extern	Bool	XkbQueryExtension(#if NeedFunctionPrototypes	Display *		/* dpy */,	int *			/* opcodeReturn */,	int *			/* eventBaseReturn */,	int *			/* errorBaseReturn */,	int *			/* majorRtrn */,	int *			/* minorRtrn */#endif);extern	Bool	XkbUseExtension(#if NeedFunctionPrototypes	Display *		/* dpy */,	int *			/* major_rtrn */,	int *			/* minor_rtrn */#endif);extern	Bool	XkbLibraryVersion(#if NeedFunctionPrototypes	int *			/* libMajorRtrn */,	int *			/* libMinorRtrn */#endif);extern	unsigned int	XkbSetXlibControls(#if NeedFunctionPrototypes	Display*		/* dpy */,	unsigned int		/* affect */,	unsigned int		/* values */#endif);extern	unsigned int	XkbGetXlibControls(#if NeedFunctionPrototypes	Display*		/* dpy */#endif);typedef	Atom	(*XkbInternAtomFunc)(#if NeedFunctionPrototypes	Display *		/* dpy */,	_Xconst char *		/* name */,	Bool			/* only_if_exists */#endif);typedef char *	(*XkbGetAtomNameFunc)(#if NeedFunctionPrototypes	Display *		/* dpy */,	Atom			/* atom */#endif);extern void		XkbSetAtomFuncs(#if NeedFunctionPrototypes	XkbInternAtomFunc	/* getAtom */,	XkbGetAtomNameFunc	/* getName */#endif);extern	KeySym XkbKeycodeToKeysym(#if NeedFunctionPrototypes		Display *	/* dpy */,#if NeedWidePrototypes		 unsigned int 	/* kc */,#else		 KeyCode 	/* kc */,#endif		 int 		/* group */,		 int		/* level */#endif);extern	unsigned int	XkbKeysymToModifiers(#if NeedFunctionPrototypes    Display *			/* dpy */,    KeySym 			/* ks */#endif);extern	Bool		XkbLookupKeySym(#if NeedFunctionPrototypes    Display *			/* dpy */,    KeyCode 			/* keycode */,    unsigned int 		/* modifiers */,    unsigned int *		/* modifiers_return */,    KeySym *			/* keysym_return */#endif);extern	int		XkbLookupKeyBinding(#if NeedFunctionPrototypes    Display *			/* dpy */,    KeySym 			/* sym_rtrn */,    unsigned int 		/* mods */,    char *			/* buffer */,    int 			/* nbytes */,    int * 			/* extra_rtrn */#endif);extern	Bool		XkbTranslateKeyCode(#if NeedFunctionPrototypes    XkbDescPtr			/* xkb */,    KeyCode 			/* keycode */,    unsigned int 		/* modifiers */,    unsigned int *		/* modifiers_return */,    KeySym *			/* keysym_return */#endif);extern	int		XkbTranslateKeySym(#if NeedFunctionPrototypes    Display *			/* dpy */,    register KeySym *		/* sym_return */,    unsigned int 		/* modifiers */,    char *			/* buffer */,    int 			/* nbytes */,    int *			/* extra_rtrn */#endif);extern	Bool	XkbSetAutoRepeatRate(#if NeedFunctionPrototypes	Display *		/* dpy */,	unsigned int		/* deviceSpec */,	unsigned int		/* delay */,	unsigned int		/* interval */#endif);extern	Bool	XkbGetAutoRepeatRate(#if NeedFunctionPrototypes

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -