mirror of
https://gitlab.freedesktop.org/xorg/lib/libx11.git
synced 2026-05-05 22:48:06 +02:00
merge XFree86 4.3.0.1 to -CURRENT
This commit is contained in:
parent
dc4268a7da
commit
400780e6a7
551 changed files with 19550 additions and 10560 deletions
|
|
@ -24,6 +24,7 @@ OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH
|
|||
THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
********************************************************/
|
||||
/* $XFree86: xc/lib/X11/XKBlib.h,v 3.3 2001/08/01 00:44:38 tsi Exp $ */
|
||||
|
||||
#ifndef _XKBLIB_H_
|
||||
#define _XKBLIB_H_
|
||||
|
|
@ -1346,6 +1347,14 @@ extern Bool XkbSetDebuggingFlags(
|
|||
#endif
|
||||
);
|
||||
|
||||
extern Bool XkbApplyVirtualModChanges(
|
||||
#if NeedFunctionPrototypes
|
||||
XkbDescPtr /* xkb */,
|
||||
unsigned int /* changed */,
|
||||
XkbChangesPtr /* changes */
|
||||
#endif
|
||||
);
|
||||
|
||||
_XFUNCPROTOEND
|
||||
|
||||
#endif /* _XKBLIB_H_ */
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
* DESCRIPTION
|
||||
* Public include file for X Color Management System
|
||||
*/
|
||||
/* $XFree86: xc/lib/X11/Xcms.h,v 1.5 2001/01/17 19:41:49 dawes Exp $ */
|
||||
#ifndef _XCMS_H_
|
||||
#define _XCMS_H_
|
||||
|
||||
|
|
@ -255,6 +256,21 @@ typedef void (*XcmsScreenFreeProc)(
|
|||
* Function List Pointer -- pointer to an array of function pointers.
|
||||
* The end of list is indicated by a NULL pointer.
|
||||
*/
|
||||
/*
|
||||
* XXX: The use of the XcmsConversionProc type is broken. The
|
||||
* device-independent colour conversion code uses it as:
|
||||
|
||||
typedef Status (*XcmsConversionProc)(XcmsCCC, XcmsColor *, XcmsColor *,
|
||||
unsigned int);
|
||||
|
||||
* while the device-dependent code uses it as:
|
||||
|
||||
typedef Status (*XcmsConversionProc)(XcmsCCC, XcmsColor *, unsigned int,
|
||||
Bool *);
|
||||
|
||||
* Until this is reworked, it's probably best to leave it unprotoized.
|
||||
* The code works regardless.
|
||||
*/
|
||||
typedef Status (*XcmsConversionProc)();
|
||||
typedef XcmsConversionProc *XcmsFuncListPtr;
|
||||
|
||||
|
|
|
|||
|
|
@ -24,6 +24,7 @@ used in advertising or otherwise to promote the sale, use or other dealings
|
|||
in this Software without prior written authorization from The Open Group.
|
||||
|
||||
*/
|
||||
/* $XFree86: xc/lib/X11/Xlib.h,v 3.23 2002/05/31 18:45:42 dawes Exp $ */
|
||||
|
||||
|
||||
/*
|
||||
|
|
@ -59,16 +60,36 @@ in this Software without prior written authorization from The Open Group.
|
|||
|
||||
#ifndef X_WCHAR
|
||||
#ifdef X_NOT_STDC_ENV
|
||||
#ifndef SCO324
|
||||
#ifndef ISC
|
||||
#define X_WCHAR
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef X_WCHAR
|
||||
#include <stddef.h>
|
||||
#else
|
||||
#ifdef __UNIXOS2__
|
||||
#include <stdlib.h>
|
||||
#else
|
||||
/* replace this with #include or typedef appropriate for your system */
|
||||
typedef unsigned long wchar_t;
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(ISC) && defined(USE_XMBTOWC)
|
||||
#define wctomb(a,b) _Xwctomb(a,b)
|
||||
#define mblen(a,b) _Xmblen(a,b)
|
||||
#ifndef USE_XWCHAR_STRING
|
||||
#define mbtowc(a,b,c) _Xmbtowc(a,b,c)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* API mentioning "UTF8" or "utf8" is an XFree86 extension, introduced in
|
||||
November 2000. Its presence is indicated through the following macro. */
|
||||
#define X_HAVE_UTF8_STRING 1
|
||||
|
||||
typedef char *XPointer;
|
||||
|
||||
|
|
@ -145,7 +166,11 @@ typedef char *XPointer;
|
|||
typedef struct _XExtData {
|
||||
int number; /* number returned by XRegisterExtension */
|
||||
struct _XExtData *next; /* next item on list of data for structure */
|
||||
int (*free_private)(); /* called to free private storage */
|
||||
int (*free_private)( /* called to free private storage */
|
||||
#if NeedFunctionPrototypes
|
||||
struct _XExtData *extension
|
||||
#endif
|
||||
);
|
||||
XPointer private_data; /* data private to this extension. */
|
||||
} XExtData;
|
||||
|
||||
|
|
@ -359,14 +384,25 @@ typedef struct _XImage {
|
|||
unsigned long blue_mask;
|
||||
XPointer obdata; /* hook for the object routines to hang on */
|
||||
struct funcs { /* image manipulation routines */
|
||||
struct _XImage *(*create_image)();
|
||||
#if NeedFunctionPrototypes
|
||||
struct _XImage *(*create_image)(
|
||||
struct _XDisplay* /* display */,
|
||||
Visual* /* visual */,
|
||||
unsigned int /* depth */,
|
||||
int /* format */,
|
||||
int /* offset */,
|
||||
char* /* data */,
|
||||
unsigned int /* width */,
|
||||
unsigned int /* height */,
|
||||
int /* bitmap_pad */,
|
||||
int /* bytes_per_line */);
|
||||
int (*destroy_image) (struct _XImage *);
|
||||
unsigned long (*get_pixel) (struct _XImage *, int, int);
|
||||
int (*put_pixel) (struct _XImage *, int, int, unsigned long);
|
||||
struct _XImage *(*sub_image)(struct _XImage *, int, int, unsigned int, unsigned int);
|
||||
int (*add_pixel) (struct _XImage *, long);
|
||||
#else
|
||||
struct _XImage *(*create_image)();
|
||||
int (*destroy_image)();
|
||||
unsigned long (*get_pixel)();
|
||||
int (*put_pixel)();
|
||||
|
|
@ -489,7 +525,11 @@ _XDisplay
|
|||
XID private4;
|
||||
XID private5;
|
||||
int private6;
|
||||
XID (*resource_alloc)();/* allocator function */
|
||||
XID (*resource_alloc)( /* allocator function */
|
||||
#if NeedFunctionPrototypes
|
||||
struct _XDisplay*
|
||||
#endif
|
||||
);
|
||||
int byte_order; /* screen byte order, LSBFirst, MSBFirst */
|
||||
int bitmap_unit; /* padding and data requirements */
|
||||
int bitmap_pad; /* padding requirements on bitmaps */
|
||||
|
|
@ -508,7 +548,11 @@ _XDisplay
|
|||
XPointer private14;
|
||||
unsigned max_request_size; /* maximum number 32 bit words in request*/
|
||||
struct _XrmHashBucketRec *db;
|
||||
int (*private15)();
|
||||
int (*private15)(
|
||||
#if NeedFunctionPrototypes
|
||||
struct _XDisplay*
|
||||
#endif
|
||||
);
|
||||
char *display_name; /* "host:display" string used on this connect*/
|
||||
int default_screen; /* default screen for operations */
|
||||
int nscreens; /* number of screens on this server*/
|
||||
|
|
@ -541,7 +585,7 @@ typedef struct {
|
|||
Bool send_event; /* true if this came from a SendEvent request */
|
||||
Display *display; /* Display the event was read from */
|
||||
Window window; /* "event" window it is reported relative to */
|
||||
Window root; /* root window that the event occured on */
|
||||
Window root; /* root window that the event occurred on */
|
||||
Window subwindow; /* child window */
|
||||
Time time; /* milliseconds */
|
||||
int x, y; /* pointer x, y coordinates in event window */
|
||||
|
|
@ -559,7 +603,7 @@ typedef struct {
|
|||
Bool send_event; /* true if this came from a SendEvent request */
|
||||
Display *display; /* Display the event was read from */
|
||||
Window window; /* "event" window it is reported relative to */
|
||||
Window root; /* root window that the event occured on */
|
||||
Window root; /* root window that the event occurred on */
|
||||
Window subwindow; /* child window */
|
||||
Time time; /* milliseconds */
|
||||
int x, y; /* pointer x, y coordinates in event window */
|
||||
|
|
@ -577,7 +621,7 @@ typedef struct {
|
|||
Bool send_event; /* true if this came from a SendEvent request */
|
||||
Display *display; /* Display the event was read from */
|
||||
Window window; /* "event" window reported relative to */
|
||||
Window root; /* root window that the event occured on */
|
||||
Window root; /* root window that the event occurred on */
|
||||
Window subwindow; /* child window */
|
||||
Time time; /* milliseconds */
|
||||
int x, y; /* pointer x, y coordinates in event window */
|
||||
|
|
@ -594,7 +638,7 @@ typedef struct {
|
|||
Bool send_event; /* true if this came from a SendEvent request */
|
||||
Display *display; /* Display the event was read from */
|
||||
Window window; /* "event" window reported relative to */
|
||||
Window root; /* root window that the event occured on */
|
||||
Window root; /* root window that the event occurred on */
|
||||
Window subwindow; /* child window */
|
||||
Time time; /* milliseconds */
|
||||
int x, y; /* pointer x, y coordinates in event window */
|
||||
|
|
@ -1037,7 +1081,9 @@ typedef struct {
|
|||
XRectangle max_logical_extent;
|
||||
} XFontSetExtents;
|
||||
|
||||
/* unused:
|
||||
typedef void (*XOMProc)();
|
||||
*/
|
||||
|
||||
typedef struct _XOM *XOM;
|
||||
typedef struct _XOC *XOC, *XFontSet;
|
||||
|
|
@ -1091,11 +1137,33 @@ typedef struct {
|
|||
char **font_name_list;
|
||||
} XOMFontInfo;
|
||||
|
||||
typedef void (*XIMProc)();
|
||||
|
||||
typedef struct _XIM *XIM;
|
||||
typedef struct _XIC *XIC;
|
||||
|
||||
typedef void (*XIMProc)(
|
||||
#if NeedFunctionPrototypes
|
||||
XIM,
|
||||
XPointer,
|
||||
XPointer
|
||||
#endif
|
||||
);
|
||||
|
||||
typedef Bool (*XICProc)(
|
||||
#if NeedFunctionPrototypes
|
||||
XIC,
|
||||
XPointer,
|
||||
XPointer
|
||||
#endif
|
||||
);
|
||||
|
||||
typedef void (*XIDProc)(
|
||||
#if NeedFunctionPrototypes
|
||||
Display*,
|
||||
XPointer,
|
||||
XPointer
|
||||
#endif
|
||||
);
|
||||
|
||||
typedef unsigned long XIMStyle;
|
||||
|
||||
typedef struct {
|
||||
|
|
@ -1174,6 +1242,11 @@ typedef struct {
|
|||
XIMProc callback;
|
||||
} XIMCallback;
|
||||
|
||||
typedef struct {
|
||||
XPointer client_data;
|
||||
XICProc callback;
|
||||
} XICCallback;
|
||||
|
||||
typedef unsigned long XIMFeedback;
|
||||
|
||||
#define XIMReverse 1L
|
||||
|
|
@ -1496,7 +1569,11 @@ extern int (*XSynchronize(
|
|||
Display* /* display */,
|
||||
Bool /* onoff */
|
||||
#endif
|
||||
))();
|
||||
))(
|
||||
#if NeedNestedPrototypes
|
||||
Display* /* display */
|
||||
#endif
|
||||
);
|
||||
extern int (*XSetAfterFunction(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
|
|
@ -1506,7 +1583,11 @@ extern int (*XSetAfterFunction(
|
|||
#endif
|
||||
) /* procedure */
|
||||
#endif
|
||||
))();
|
||||
))(
|
||||
#if NeedNestedPrototypes
|
||||
Display* /* display */
|
||||
#endif
|
||||
);
|
||||
extern Atom XInternAtom(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
|
|
@ -1555,8 +1636,8 @@ extern Cursor XCreateGlyphCursor(
|
|||
Font /* mask_font */,
|
||||
unsigned int /* source_char */,
|
||||
unsigned int /* mask_char */,
|
||||
XColor* /* foreground_color */,
|
||||
XColor* /* background_color */
|
||||
XColor _Xconst * /* foreground_color */,
|
||||
XColor _Xconst * /* background_color */
|
||||
#endif
|
||||
);
|
||||
extern Cursor XCreateFontCursor(
|
||||
|
|
@ -4166,16 +4247,10 @@ extern int XWriteBitmapFile(
|
|||
#endif
|
||||
);
|
||||
|
||||
extern Bool XSupportsLocale(
|
||||
#if NeedFunctionPrototypes
|
||||
void
|
||||
#endif
|
||||
);
|
||||
extern Bool XSupportsLocale (void);
|
||||
|
||||
extern char *XSetLocaleModifiers(
|
||||
#if NeedFunctionPrototypes
|
||||
_Xconst char* /* modifier_list */
|
||||
#endif
|
||||
const char* /* modifier_list */
|
||||
);
|
||||
|
||||
extern XOM XOpenOM(
|
||||
|
|
@ -4329,6 +4404,14 @@ extern int XwcTextEscapement(
|
|||
#endif
|
||||
);
|
||||
|
||||
extern int Xutf8TextEscapement(
|
||||
#if NeedFunctionPrototypes
|
||||
XFontSet /* font_set */,
|
||||
_Xconst char* /* text */,
|
||||
int /* bytes_text */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int XmbTextExtents(
|
||||
#if NeedFunctionPrototypes
|
||||
XFontSet /* font_set */,
|
||||
|
|
@ -4349,6 +4432,16 @@ extern int XwcTextExtents(
|
|||
#endif
|
||||
);
|
||||
|
||||
extern int Xutf8TextExtents(
|
||||
#if NeedFunctionPrototypes
|
||||
XFontSet /* font_set */,
|
||||
_Xconst char* /* text */,
|
||||
int /* bytes_text */,
|
||||
XRectangle* /* overall_ink_return */,
|
||||
XRectangle* /* overall_logical_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XmbTextPerCharExtents(
|
||||
#if NeedFunctionPrototypes
|
||||
XFontSet /* font_set */,
|
||||
|
|
@ -4377,6 +4470,20 @@ extern Status XwcTextPerCharExtents(
|
|||
#endif
|
||||
);
|
||||
|
||||
extern Status Xutf8TextPerCharExtents(
|
||||
#if NeedFunctionPrototypes
|
||||
XFontSet /* font_set */,
|
||||
_Xconst char* /* text */,
|
||||
int /* bytes_text */,
|
||||
XRectangle* /* ink_extents_buffer */,
|
||||
XRectangle* /* logical_extents_buffer */,
|
||||
int /* buffer_size */,
|
||||
int* /* num_chars */,
|
||||
XRectangle* /* overall_ink_return */,
|
||||
XRectangle* /* overall_logical_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern void XmbDrawText(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
|
|
@ -4401,6 +4508,18 @@ extern void XwcDrawText(
|
|||
#endif
|
||||
);
|
||||
|
||||
extern void Xutf8DrawText(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Drawable /* d */,
|
||||
GC /* gc */,
|
||||
int /* x */,
|
||||
int /* y */,
|
||||
XmbTextItem* /* text_items */,
|
||||
int /* nitems */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern void XmbDrawString(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
|
|
@ -4427,6 +4546,19 @@ extern void XwcDrawString(
|
|||
#endif
|
||||
);
|
||||
|
||||
extern void Xutf8DrawString(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Drawable /* d */,
|
||||
XFontSet /* font_set */,
|
||||
GC /* gc */,
|
||||
int /* x */,
|
||||
int /* y */,
|
||||
_Xconst char* /* text */,
|
||||
int /* bytes_text */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern void XmbDrawImageString(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
|
|
@ -4453,6 +4585,19 @@ extern void XwcDrawImageString(
|
|||
#endif
|
||||
);
|
||||
|
||||
extern void Xutf8DrawImageString(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Drawable /* d */,
|
||||
XFontSet /* font_set */,
|
||||
GC /* gc */,
|
||||
int /* x */,
|
||||
int /* y */,
|
||||
_Xconst char* /* text */,
|
||||
int /* bytes_text */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern XIM XOpenIM(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
|
|
@ -4474,6 +4619,12 @@ extern char *XGetIMValues(
|
|||
#endif
|
||||
);
|
||||
|
||||
extern char *XSetIMValues(
|
||||
#if NeedVarargsPrototypes
|
||||
XIM /* im */, ...
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Display *XDisplayOfIM(
|
||||
#if NeedFunctionPrototypes
|
||||
XIM /* im */
|
||||
|
|
@ -4522,6 +4673,12 @@ extern char *XmbResetIC(
|
|||
#endif
|
||||
);
|
||||
|
||||
extern char *Xutf8ResetIC(
|
||||
#if NeedFunctionPrototypes
|
||||
XIC /* ic */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern char *XSetICValues(
|
||||
#if NeedVarargsPrototypes
|
||||
XIC /* ic */, ...
|
||||
|
|
@ -4569,6 +4726,17 @@ extern int XwcLookupString(
|
|||
#endif
|
||||
);
|
||||
|
||||
extern int Xutf8LookupString(
|
||||
#if NeedFunctionPrototypes
|
||||
XIC /* ic */,
|
||||
XKeyPressedEvent* /* event */,
|
||||
char* /* buffer_return */,
|
||||
int /* bytes_buffer */,
|
||||
KeySym* /* keysym_return */,
|
||||
Status* /* status_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern XVaNestedList XVaCreateNestedList(
|
||||
#if NeedVarargsPrototypes
|
||||
int /*unused*/, ...
|
||||
|
|
@ -4583,8 +4751,8 @@ extern Bool XRegisterIMInstantiateCallback(
|
|||
struct _XrmHashBucketRec* /* rdb */,
|
||||
char* /* res_name */,
|
||||
char* /* res_class */,
|
||||
XIMProc /* callback */,
|
||||
XPointer* /* client_data */
|
||||
XIDProc /* callback */,
|
||||
XPointer /* client_data */
|
||||
#endif
|
||||
);
|
||||
|
||||
|
|
@ -4594,8 +4762,8 @@ extern Bool XUnregisterIMInstantiateCallback(
|
|||
struct _XrmHashBucketRec* /* rdb */,
|
||||
char* /* res_name */,
|
||||
char* /* res_class */,
|
||||
XIMProc /* callback */,
|
||||
XPointer* /* client_data */
|
||||
XIDProc /* callback */,
|
||||
XPointer /* client_data */
|
||||
#endif
|
||||
);
|
||||
|
||||
|
|
@ -4641,6 +4809,35 @@ extern void XRemoveConnectionWatch(
|
|||
#endif
|
||||
);
|
||||
|
||||
extern void XSetAuthorization(
|
||||
#if NeedFunctionPrototypes
|
||||
char * /* name */,
|
||||
int /* namelen */,
|
||||
char * /* data */,
|
||||
int /* datalen */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int _Xmbtowc(
|
||||
#if NeedFunctionPrototypes
|
||||
wchar_t * /* wstr */,
|
||||
#ifdef ISC
|
||||
char const * /* str */,
|
||||
size_t /* len */
|
||||
#else
|
||||
char * /* str */,
|
||||
int /* len */
|
||||
#endif
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int _Xwctomb(
|
||||
#if NeedFunctionPrototypes
|
||||
char * /* str */,
|
||||
wchar_t /* wc */
|
||||
#endif
|
||||
);
|
||||
|
||||
_XFUNCPROTOEND
|
||||
|
||||
#endif /* _XLIB_H_ */
|
||||
|
|
|
|||
|
|
@ -27,6 +27,10 @@ other dealings in this Software without prior written authorization
|
|||
from The Open Group.
|
||||
|
||||
*/
|
||||
/* $XFree86: xc/lib/X11/Xlibint.h,v 3.24 2002/05/31 18:45:42 dawes Exp $ */
|
||||
|
||||
#ifndef _XLIBINT_H_
|
||||
#define _XLIBINT_H_ 1
|
||||
|
||||
/*
|
||||
* Xlibint.h - Header definition and support file for the internal
|
||||
|
|
@ -36,10 +40,8 @@ from The Open Group.
|
|||
* Warning, there be dragons here....
|
||||
*/
|
||||
|
||||
#ifndef _XLIBINT_H_
|
||||
#define _XLIBINT_H_
|
||||
|
||||
#include <X11/Xlib.h>
|
||||
#include <X11/Xproto.h> /* to declare xEvent */
|
||||
|
||||
#ifdef WIN32
|
||||
#define _XFlush _XFlushIt
|
||||
|
|
@ -76,7 +78,11 @@ struct _XDisplay
|
|||
XID resource_mask; /* resource ID mask bits */
|
||||
XID resource_id; /* allocator current ID */
|
||||
int resource_shift; /* allocator shift to correct bits */
|
||||
XID (*resource_alloc)(); /* allocator function */
|
||||
XID (*resource_alloc)( /* allocator function */
|
||||
#if NeedFunctionPrototypes
|
||||
struct _XDisplay*
|
||||
#endif
|
||||
);
|
||||
int byte_order; /* screen byte order, LSBFirst, MSBFirst */
|
||||
int bitmap_unit; /* padding and data requirements */
|
||||
int bitmap_pad; /* padding requirements on bitmaps */
|
||||
|
|
@ -95,7 +101,11 @@ struct _XDisplay
|
|||
char *bufmax; /* Output buffer maximum+1 address. */
|
||||
unsigned max_request_size; /* maximum number 32 bit words in request*/
|
||||
struct _XrmHashBucketRec *db;
|
||||
int (*synchandler)(); /* Synchronization handler */
|
||||
int (*synchandler)( /* Synchronization handler */
|
||||
#if NeedFunctionPrototypes
|
||||
struct _XDisplay*
|
||||
#endif
|
||||
);
|
||||
char *display_name; /* "host:display" string used on this connect*/
|
||||
int default_screen; /* default screen for operations */
|
||||
int nscreens; /* number of screens on this server*/
|
||||
|
|
@ -120,14 +130,26 @@ struct _XDisplay
|
|||
* list to find the right procedure for each event might be
|
||||
* expensive if many extensions are being used.
|
||||
*/
|
||||
Bool (*event_vec[128])(); /* vector for wire to event */
|
||||
Status (*wire_vec[128])(); /* vector for event to wire */
|
||||
Bool (*event_vec[128])( /* vector for wire to event */
|
||||
Display * /* dpy */,
|
||||
XEvent * /* re */,
|
||||
xEvent * /* event */
|
||||
);
|
||||
Status (*wire_vec[128])( /* vector for event to wire */
|
||||
Display * /* dpy */,
|
||||
XEvent * /* re */,
|
||||
xEvent * /* event */
|
||||
);
|
||||
KeySym lock_meaning; /* for XLookupString */
|
||||
struct _XLockInfo *lock; /* multi-thread state, display lock */
|
||||
struct _XInternalAsync *async_handlers; /* for internal async */
|
||||
unsigned long bigreq_size; /* max size of big requests */
|
||||
struct _XLockPtrs *lock_fns; /* pointers to threads functions */
|
||||
void (*idlist_alloc)(); /* XID list allocator function */
|
||||
void (*idlist_alloc)( /* XID list allocator function */
|
||||
Display * /* dpy */,
|
||||
XID * /* ids */,
|
||||
int /* count */
|
||||
);
|
||||
/* things above this line should not move, for binary compatibility */
|
||||
struct _XKeytrans *key_bindings; /* for XLookupString */
|
||||
Font cursor_font; /* for XCreateFontCursor */
|
||||
|
|
@ -135,7 +157,11 @@ struct _XDisplay
|
|||
unsigned int mode_switch; /* keyboard group modifiers */
|
||||
unsigned int num_lock; /* keyboard numlock modifiers */
|
||||
struct _XContextDB *context_db; /* context database */
|
||||
Bool (**error_vec)(); /* vector for wire to error */
|
||||
Bool (**error_vec)( /* vector for wire to error */
|
||||
Display * /* display */,
|
||||
XErrorEvent * /* he */,
|
||||
xError * /* we */
|
||||
);
|
||||
/*
|
||||
* Xcms information
|
||||
*/
|
||||
|
|
@ -154,7 +180,9 @@ struct _XDisplay
|
|||
struct _XConnWatchInfo *conn_watchers; /* XAddConnectionWatch */
|
||||
int watcher_count; /* number of conn_watchers */
|
||||
XPointer filedes; /* struct pollfd cache for _XWaitForReadable */
|
||||
int (*savedsynchandler)(); /* user synchandler when Xlib usurps */
|
||||
int (*savedsynchandler)( /* user synchandler when Xlib usurps */
|
||||
Display * /* dpy */
|
||||
);
|
||||
XID resource_max; /* allocator max ID */
|
||||
int xcmisc_opcode; /* major opcode for XC-MISC */
|
||||
struct _XkbInfoRec *xkb_info; /* XKB info */
|
||||
|
|
@ -204,18 +232,12 @@ typedef struct _XSQEvent
|
|||
#undef dirty
|
||||
#endif
|
||||
|
||||
#ifndef X_NOT_STDC_ENV
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#else
|
||||
char *malloc(), *realloc(), *calloc();
|
||||
void exit();
|
||||
#ifdef SYSV
|
||||
#include <string.h>
|
||||
#else
|
||||
#include <strings.h>
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#include <X11/Xfuncproto.h>
|
||||
|
||||
_XFUNCPROTOBEGIN
|
||||
|
||||
/*
|
||||
* The following definitions can be used for locking requests in multi-threaded
|
||||
|
|
@ -227,16 +249,27 @@ void exit();
|
|||
* declarations for C Threads locking
|
||||
*/
|
||||
|
||||
#include <X11/Xfuncproto.h>
|
||||
typedef struct _LockInfoRec *LockInfoPtr;
|
||||
|
||||
/* interfaces for locking.c */
|
||||
struct _XLockPtrs {
|
||||
/* used by all, including extensions; do not move */
|
||||
void (*lock_display)();
|
||||
void (*unlock_display)();
|
||||
void (*lock_display)(
|
||||
Display *dpy
|
||||
#if defined(XTHREADS_WARN) || defined(XTHREADS_FILE_LINE)
|
||||
, char *file
|
||||
, int line
|
||||
#endif
|
||||
);
|
||||
void (*unlock_display)(
|
||||
Display *dpy
|
||||
#if defined(XTHREADS_WARN) || defined(XTHREADS_FILE_LINE)
|
||||
, char *file
|
||||
, int line
|
||||
#endif
|
||||
);
|
||||
};
|
||||
|
||||
typedef struct _LockInfoRec *LockInfoPtr;
|
||||
|
||||
#if defined(WIN32) && !defined(_XLIBINT_)
|
||||
#define _XCreateMutex_fn (*_XCreateMutex_fn_p)
|
||||
#define _XFreeMutex_fn (*_XFreeMutex_fn_p)
|
||||
|
|
@ -323,16 +356,11 @@ extern LockInfoPtr _Xglobal_lock;
|
|||
|
||||
#endif
|
||||
|
||||
#ifndef NULL
|
||||
#define NULL 0
|
||||
#endif
|
||||
#include <stddef.h>
|
||||
|
||||
#define LOCKED 1
|
||||
#define UNLOCKED 0
|
||||
|
||||
#ifdef X_NOT_STDC_ENV
|
||||
extern int errno; /* Internal system error number. */
|
||||
#endif
|
||||
|
||||
#ifndef BUFSIZE
|
||||
#define BUFSIZE 2048 /* X output buffer size. */
|
||||
#endif
|
||||
|
|
@ -407,7 +435,7 @@ extern int errno; /* Internal system error number. */
|
|||
*
|
||||
*/
|
||||
|
||||
#if (defined(__STDC__) && !defined(UNIXCPP)) || defined(ANSICPP)
|
||||
#if !defined(UNIXCPP) || defined(ANSICPP)
|
||||
#define GetReq(name, req) \
|
||||
WORD64ALIGN\
|
||||
if ((dpy->bufptr + SIZEOF(x##name##Req)) > dpy->bufmax)\
|
||||
|
|
@ -433,7 +461,7 @@ extern int errno; /* Internal system error number. */
|
|||
/* GetReqExtra is the same as GetReq, but allocates "n" additional
|
||||
bytes after the request. "n" must be a multiple of 4! */
|
||||
|
||||
#if (defined(__STDC__) && !defined(UNIXCPP)) || defined(ANSICPP)
|
||||
#if !defined(UNIXCPP) || defined(ANSICPP)
|
||||
#define GetReqExtra(name, n, req) \
|
||||
WORD64ALIGN\
|
||||
if ((dpy->bufptr + SIZEOF(x##name##Req) + n) > dpy->bufmax)\
|
||||
|
|
@ -462,7 +490,7 @@ extern int errno; /* Internal system error number. */
|
|||
* "rid" is the name of the resource.
|
||||
*/
|
||||
|
||||
#if (defined(__STDC__) && !defined(UNIXCPP)) || defined(ANSICPP)
|
||||
#if !defined(UNIXCPP) || defined(ANSICPP)
|
||||
#define GetResReq(name, rid, req) \
|
||||
WORD64ALIGN\
|
||||
if ((dpy->bufptr + SIZEOF(xResourceReq)) > dpy->bufmax)\
|
||||
|
|
@ -490,7 +518,7 @@ extern int errno; /* Internal system error number. */
|
|||
* GetEmptyReq is for those requests that have no arguments
|
||||
* at all.
|
||||
*/
|
||||
#if (defined(__STDC__) && !defined(UNIXCPP)) || defined(ANSICPP)
|
||||
#if !defined(UNIXCPP) || defined(ANSICPP)
|
||||
#define GetEmptyReq(name, req) \
|
||||
WORD64ALIGN\
|
||||
if ((dpy->bufptr + SIZEOF(xReq)) > dpy->bufmax)\
|
||||
|
|
@ -563,7 +591,7 @@ extern int errno; /* Internal system error number. */
|
|||
#define SyncHandle() \
|
||||
if (dpy->synchandler) (*dpy->synchandler)(dpy)
|
||||
|
||||
extern void _XFlushGCCache();
|
||||
extern void _XFlushGCCache(Display *dpy, GC gc);
|
||||
#define FlushGC(dpy, gc) \
|
||||
if ((gc)->dirty) _XFlushGCCache((dpy), (gc))
|
||||
/*
|
||||
|
|
@ -575,12 +603,13 @@ extern void _XFlushGCCache();
|
|||
* "len" is the length of the data buffer.
|
||||
*/
|
||||
#ifndef DataRoutineIsProcedure
|
||||
#define Data(dpy, data, len) \
|
||||
#define Data(dpy, data, len) {\
|
||||
if (dpy->bufptr + (len) <= dpy->bufmax) {\
|
||||
memcpy(dpy->bufptr, data, (int)len);\
|
||||
dpy->bufptr += ((len) + 3) & ~3;\
|
||||
} else\
|
||||
_XSend(dpy, data, len)
|
||||
_XSend(dpy, data, len);\
|
||||
}
|
||||
#endif /* DataRoutineIsProcedure */
|
||||
|
||||
|
||||
|
|
@ -613,6 +642,20 @@ extern void _XFlushGCCache();
|
|||
#define _XRead16(dpy, data, len) _XRead((dpy), (char *)(data), (len))
|
||||
#ifdef LONG64
|
||||
#define Data32(dpy, data, len) _XData32(dpy, (long *)data, len)
|
||||
extern int _XData32(
|
||||
#if NeedFunctionPrototypes
|
||||
Display *dpy,
|
||||
register long *data,
|
||||
unsigned len
|
||||
#endif
|
||||
);
|
||||
extern void _XRead32(
|
||||
#if NeedFunctionPrototypes
|
||||
Display *dpy,
|
||||
register long *data,
|
||||
long len
|
||||
#endif
|
||||
);
|
||||
#else
|
||||
#define Data32(dpy, data, len) Data((dpy), (char *)(data), (len))
|
||||
#define _XRead32(dpy, data, len) _XRead((dpy), (char *)(data), (len))
|
||||
|
|
@ -733,7 +776,7 @@ typedef struct _XAsyncEState {
|
|||
int error_count;
|
||||
} _XAsyncErrorState;
|
||||
|
||||
extern void _XDeqAsyncHandler();
|
||||
extern void _XDeqAsyncHandler(Display *dpy, _XAsyncHandler *handler);
|
||||
#define DeqAsyncHandler(dpy,handler) { \
|
||||
if (dpy->async_handlers == (handler)) \
|
||||
dpy->async_handlers = (handler)->next; \
|
||||
|
|
@ -741,48 +784,150 @@ extern void _XDeqAsyncHandler();
|
|||
_XDeqAsyncHandler(dpy, handler); \
|
||||
}
|
||||
|
||||
typedef void (*FreeFuncType) (
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */
|
||||
#endif
|
||||
);
|
||||
|
||||
typedef int (*FreeModmapType) (
|
||||
#if NeedFunctionPrototypes
|
||||
XModifierKeymap* /* modmap */
|
||||
#endif
|
||||
);
|
||||
|
||||
/*
|
||||
* This structure is private to the library.
|
||||
*/
|
||||
typedef struct _XFreeFuncs {
|
||||
void (*atoms)(); /* _XFreeAtomTable */
|
||||
int (*modifiermap)(); /* XFreeModifierMap */
|
||||
void (*key_bindings)(); /* _XFreeKeyBindings */
|
||||
void (*context_db)(); /* _XFreeContextDB */
|
||||
void (*defaultCCCs)(); /* _XcmsFreeDefaultCCCs */
|
||||
void (*clientCmaps)(); /* _XcmsFreeClientCmaps */
|
||||
void (*intensityMaps)(); /* _XcmsFreeIntensityMaps */
|
||||
void (*im_filters)(); /* _XFreeIMFilters */
|
||||
void (*xkb)(); /* _XkbFreeInfo */
|
||||
FreeFuncType atoms; /* _XFreeAtomTable */
|
||||
FreeModmapType modifiermap; /* XFreeModifierMap */
|
||||
FreeFuncType key_bindings; /* _XFreeKeyBindings */
|
||||
FreeFuncType context_db; /* _XFreeContextDB */
|
||||
FreeFuncType defaultCCCs; /* _XcmsFreeDefaultCCCs */
|
||||
FreeFuncType clientCmaps; /* _XcmsFreeClientCmaps */
|
||||
FreeFuncType intensityMaps; /* _XcmsFreeIntensityMaps */
|
||||
FreeFuncType im_filters; /* _XFreeIMFilters */
|
||||
FreeFuncType xkb; /* _XkbFreeInfo */
|
||||
} _XFreeFuncRec;
|
||||
|
||||
/* types for InitExt.c */
|
||||
typedef int (*CreateGCType) (
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
GC /* gc */,
|
||||
XExtCodes* /* codes */
|
||||
#endif
|
||||
);
|
||||
|
||||
typedef int (*CopyGCType)(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
GC /* gc */,
|
||||
XExtCodes* /* codes */
|
||||
#endif
|
||||
);
|
||||
|
||||
typedef int (*FlushGCType) (
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
GC /* gc */,
|
||||
XExtCodes* /* codes */
|
||||
#endif
|
||||
);
|
||||
|
||||
typedef int (*FreeGCType) (
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
GC /* gc */,
|
||||
XExtCodes* /* codes */
|
||||
#endif
|
||||
);
|
||||
|
||||
typedef int (*CreateFontType) (
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
XFontStruct* /* fs */,
|
||||
XExtCodes* /* codes */
|
||||
#endif
|
||||
);
|
||||
|
||||
typedef int (*FreeFontType) (
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
XFontStruct* /* fs */,
|
||||
XExtCodes* /* codes */
|
||||
#endif
|
||||
);
|
||||
|
||||
typedef int (*CloseDisplayType) (
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
XExtCodes* /* codes */
|
||||
#endif
|
||||
);
|
||||
|
||||
typedef int (*ErrorType) (
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
xError* /* err */,
|
||||
XExtCodes* /* codes */,
|
||||
int* /* ret_code */
|
||||
#endif
|
||||
);
|
||||
|
||||
typedef char* (*ErrorStringType) (
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
int /* code */,
|
||||
XExtCodes* /* codes */,
|
||||
char* /* buffer */,
|
||||
int /* nbytes */
|
||||
#endif
|
||||
);
|
||||
|
||||
typedef void (*PrintErrorType)(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
XErrorEvent* /* ev */,
|
||||
void* /* fp */
|
||||
#endif
|
||||
);
|
||||
|
||||
typedef void (*BeforeFlushType)(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
XExtCodes* /* codes */,
|
||||
_Xconst char* /* data */,
|
||||
long /* len */
|
||||
#endif
|
||||
);
|
||||
|
||||
/*
|
||||
* This structure is private to the library.
|
||||
*/
|
||||
typedef struct _XExten { /* private to extension mechanism */
|
||||
struct _XExten *next; /* next in list */
|
||||
XExtCodes codes; /* public information, all extension told */
|
||||
int (*create_GC)(); /* routine to call when GC created */
|
||||
int (*copy_GC)(); /* routine to call when GC copied */
|
||||
int (*flush_GC)(); /* routine to call when GC flushed */
|
||||
int (*free_GC)(); /* routine to call when GC freed */
|
||||
int (*create_Font)(); /* routine to call when Font created */
|
||||
int (*free_Font)(); /* routine to call when Font freed */
|
||||
int (*close_display)(); /* routine to call when connection closed */
|
||||
int (*error)(); /* who to call when an error occurs */
|
||||
char *(*error_string)(); /* routine to supply error string */
|
||||
char *name; /* name of this extension */
|
||||
void (*error_values)(); /* routine to supply error values */
|
||||
void (*before_flush)(); /* routine to call when sending data */
|
||||
struct _XExten *next_flush; /* next in list of those with flushes */
|
||||
typedef struct _XExten { /* private to extension mechanism */
|
||||
struct _XExten *next; /* next in list */
|
||||
XExtCodes codes; /* public information, all extension told */
|
||||
CreateGCType create_GC; /* routine to call when GC created */
|
||||
CopyGCType copy_GC; /* routine to call when GC copied */
|
||||
FlushGCType flush_GC; /* routine to call when GC flushed */
|
||||
FreeGCType free_GC; /* routine to call when GC freed */
|
||||
CreateFontType create_Font; /* routine to call when Font created */
|
||||
FreeFontType free_Font; /* routine to call when Font freed */
|
||||
CloseDisplayType close_display; /* routine to call when connection closed */
|
||||
ErrorType error; /* who to call when an error occurs */
|
||||
ErrorStringType error_string; /* routine to supply error string */
|
||||
char *name; /* name of this extension */
|
||||
PrintErrorType error_values; /* routine to supply error values */
|
||||
BeforeFlushType before_flush; /* routine to call when sending data */
|
||||
struct _XExten *next_flush; /* next in list of those with flushes */
|
||||
} _XExtension;
|
||||
|
||||
/* extension hooks */
|
||||
|
||||
_XFUNCPROTOBEGIN
|
||||
|
||||
#ifdef DataRoutineIsProcedure
|
||||
extern void Data();
|
||||
extern void Data(Display *dpy, char *data, long len);
|
||||
#endif
|
||||
extern int _XError(
|
||||
#if NeedFunctionPrototypes
|
||||
|
|
@ -875,6 +1020,17 @@ extern char *_XGetAsyncReply(
|
|||
Bool /* discard */
|
||||
#endif
|
||||
);
|
||||
extern void _XGetAsyncData(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
char * /* data */,
|
||||
char * /* buf */,
|
||||
int /* len */,
|
||||
int /* skip */,
|
||||
int /* datalen */,
|
||||
int /* discardtotal */
|
||||
#endif
|
||||
);
|
||||
extern void _XFlush(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */
|
||||
|
|
@ -934,6 +1090,33 @@ extern void _XDeq(
|
|||
#endif
|
||||
);
|
||||
|
||||
extern Bool _XUnknownWireEvent(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
XEvent* /* re */,
|
||||
xEvent* /* event */
|
||||
#endif
|
||||
);
|
||||
extern Status _XUnknownNativeEvent(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
XEvent* /* re */,
|
||||
xEvent* /* event */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Bool _XWireToEvent(Display *dpy, XEvent *re, xEvent *event);
|
||||
extern Bool _XDefaultWireError(Display *display, XErrorEvent *he, xError *we);
|
||||
extern Bool _XPollfdCacheInit(Display *dpy);
|
||||
extern XID _XAllocID(Display *dpy);
|
||||
extern void _XAllocIDs(Display *dpy, XID *ids, int count);
|
||||
|
||||
extern int _XFreeExtData(
|
||||
#if NeedFunctionPrototypes
|
||||
XExtData* /* extension */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int (*XESetCreateGC(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
|
|
@ -1178,14 +1361,14 @@ extern void (*XESetBeforeFlush(
|
|||
#if NeedNestedPrototypes
|
||||
Display* /* display */,
|
||||
XExtCodes* /* codes */,
|
||||
char* /* data */,
|
||||
_Xconst char* /* data */,
|
||||
long /* len */
|
||||
#endif
|
||||
) /* proc */
|
||||
#endif
|
||||
))(
|
||||
#if NeedNestedPrototypes
|
||||
Display*, XExtCodes*, char*, long
|
||||
Display*, XExtCodes*, _Xconst char*, long
|
||||
#endif
|
||||
);
|
||||
|
||||
|
|
@ -1232,6 +1415,14 @@ struct _XConnWatchInfo { /* info from XAddConnectionWatch */
|
|||
struct _XConnWatchInfo *next;
|
||||
};
|
||||
|
||||
#ifdef __UNIXOS2__
|
||||
extern char* __XOS2RedirRoot(
|
||||
#if NeedFunctionPrototypes
|
||||
char*
|
||||
#endif
|
||||
);
|
||||
#endif
|
||||
|
||||
extern int _XTextHeight(
|
||||
#if NeedFunctionPrototypes
|
||||
XFontStruct* /* font_struct */,
|
||||
|
|
@ -1248,7 +1439,8 @@ extern int _XTextHeight16(
|
|||
#endif
|
||||
);
|
||||
|
||||
#if defined(WIN32) || defined(__EMX__) /* || defined(OS2) */
|
||||
#if defined(WIN32)
|
||||
|
||||
extern int _XOpenFile(
|
||||
#if NeedFunctionPrototypes
|
||||
_Xconst char* /* path */,
|
||||
|
|
@ -1273,6 +1465,18 @@ extern int _XAccessFile(
|
|||
#define _XFopenFile(path,mode) fopen(path,mode)
|
||||
#endif
|
||||
|
||||
/* EvToWire.c */
|
||||
extern Status _XEventToWire(Display *dpy, XEvent *re, xEvent *event);
|
||||
|
||||
extern int _XF86LoadQueryLocaleFont(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
_Xconst char* /* name*/,
|
||||
XFontStruct** /* xfp*/,
|
||||
Font* /* fidp */
|
||||
#endif
|
||||
);
|
||||
|
||||
_XFUNCPROTOEND
|
||||
|
||||
#endif /* _XLIBINT_H_ */
|
||||
|
|
|
|||
|
|
@ -26,6 +26,7 @@ other dealings in this Software without prior written authorization
|
|||
from The Open Group.
|
||||
|
||||
*/
|
||||
/* $XFree86: xc/lib/X11/Xlocale.h,v 1.4 2001/12/14 19:54:09 dawes Exp $ */
|
||||
|
||||
#ifndef _XLOCALE_H_
|
||||
#define _XLOCALE_H_
|
||||
|
|
@ -33,12 +34,6 @@ from The Open Group.
|
|||
#include <X11/Xfuncproto.h>
|
||||
#include <X11/Xosdefs.h>
|
||||
|
||||
#ifndef X_LOCALE
|
||||
#ifdef X_NOT_STDC_ENV
|
||||
#define X_LOCALE
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef X_LOCALE
|
||||
#include <locale.h>
|
||||
#else
|
||||
|
|
@ -61,9 +56,7 @@ _XFUNCPROTOEND
|
|||
|
||||
#define setlocale _Xsetlocale
|
||||
|
||||
#ifndef NULL
|
||||
#define NULL 0
|
||||
#endif
|
||||
#include <stddef.h>
|
||||
|
||||
#endif /* X_LOCALE */
|
||||
|
||||
|
|
|
|||
|
|
@ -46,13 +46,14 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
|
|||
SOFTWARE.
|
||||
|
||||
******************************************************************/
|
||||
/* $XFree86: xc/lib/X11/Xresource.h,v 3.8 2001/12/14 19:54:10 dawes Exp $ */
|
||||
|
||||
#ifndef _XRESOURCE_H_
|
||||
#define _XRESOURCE_H_
|
||||
|
||||
/* You must include <X11/Xlib.h> before including this file */
|
||||
|
||||
#ifndef _XP_PRINT_SERVER_
|
||||
#include <X11/Xlib.h>
|
||||
#endif
|
||||
|
||||
/****************************************************************
|
||||
****************************************************************
|
||||
|
|
@ -84,7 +85,7 @@ extern char *Xpermalloc(
|
|||
*
|
||||
****************************************************************/
|
||||
|
||||
typedef int XrmQuark, *XrmQuarkList;
|
||||
typedef int XrmQuark, *XrmQuarkList;
|
||||
#define NULLQUARK ((XrmQuark) 0)
|
||||
|
||||
typedef char *XrmString;
|
||||
|
|
@ -285,6 +286,8 @@ extern Bool XrmQGetSearchResource(
|
|||
*
|
||||
****************************************************************/
|
||||
|
||||
#ifndef _XP_PRINT_SERVER_
|
||||
|
||||
extern void XrmSetDatabase(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
|
|
@ -298,6 +301,8 @@ extern XrmDatabase XrmGetDatabase(
|
|||
#endif
|
||||
);
|
||||
|
||||
#endif /* !_XP_PRINT_SERVER_ */
|
||||
|
||||
extern XrmDatabase XrmGetFileDatabase(
|
||||
#if NeedFunctionPrototypes
|
||||
_Xconst char* /* filename */
|
||||
|
|
@ -363,7 +368,7 @@ extern Bool XrmEnumerateDatabase(
|
|||
#endif
|
||||
);
|
||||
|
||||
extern char *XrmLocaleOfDatabase(
|
||||
extern const char *XrmLocaleOfDatabase(
|
||||
#if NeedFunctionPrototypes
|
||||
XrmDatabase /* database */
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -46,6 +46,7 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
|
|||
SOFTWARE.
|
||||
|
||||
******************************************************************/
|
||||
/* $XFree86: xc/lib/X11/Xutil.h,v 3.5 2003/01/26 02:40:10 dawes Exp $ */
|
||||
|
||||
#ifndef _XUTIL_H_
|
||||
#define _XUTIL_H_
|
||||
|
|
@ -167,7 +168,9 @@ typedef enum {
|
|||
XStringStyle, /* STRING */
|
||||
XCompoundTextStyle, /* COMPOUND_TEXT */
|
||||
XTextStyle, /* text in owner's encoding (current locale)*/
|
||||
XStdICCTextStyle /* STRING, else COMPOUND_TEXT */
|
||||
XStdICCTextStyle, /* STRING, else COMPOUND_TEXT */
|
||||
/* The following is an XFree86 extension, introduced in November 2000 */
|
||||
XUTF8StringStyle /* UTF8_STRING */
|
||||
} XICCEncodingStyle;
|
||||
|
||||
typedef struct {
|
||||
|
|
@ -227,6 +230,8 @@ typedef struct _XComposeStatus {
|
|||
|
||||
#define IsModifierKey(keysym) \
|
||||
((((KeySym)(keysym) >= XK_Shift_L) && ((KeySym)(keysym) <= XK_Hyper_R)) \
|
||||
|| (((KeySym)(keysym) >= XK_ISO_Lock) && \
|
||||
((KeySym)(keysym) <= XK_ISO_Last_Group_Lock)) \
|
||||
|| ((KeySym)(keysym) == XK_Mode_switch) \
|
||||
|| ((KeySym)(keysym) == XK_Num_Lock))
|
||||
/*
|
||||
|
|
@ -368,11 +373,7 @@ extern Region XCreateRegion(
|
|||
#endif
|
||||
);
|
||||
|
||||
extern char *XDefaultString(
|
||||
#if NeedFunctionPrototypes
|
||||
void
|
||||
#endif
|
||||
);
|
||||
extern const char *XDefaultString (void);
|
||||
|
||||
extern int XDeleteContext(
|
||||
#if NeedFunctionPrototypes
|
||||
|
|
@ -752,6 +753,20 @@ extern void XmbSetWMProperties(
|
|||
#endif
|
||||
);
|
||||
|
||||
extern void Xutf8SetWMProperties(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */,
|
||||
_Xconst char* /* window_name */,
|
||||
_Xconst char* /* icon_name */,
|
||||
char** /* argv */,
|
||||
int /* argc */,
|
||||
XSizeHints* /* normal_hints */,
|
||||
XWMHints* /* wm_hints */,
|
||||
XClassHint* /* class_hints */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern void XSetWMSizeHints(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
|
|
@ -811,29 +826,31 @@ extern int XSubtractRegion(
|
|||
);
|
||||
|
||||
extern int XmbTextListToTextProperty(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
char** /* list */,
|
||||
int /* count */,
|
||||
XICCEncodingStyle /* style */,
|
||||
XTextProperty* /* text_prop_return */
|
||||
#endif
|
||||
Display* display,
|
||||
char** list,
|
||||
int count,
|
||||
XICCEncodingStyle style,
|
||||
XTextProperty* text_prop_return
|
||||
);
|
||||
|
||||
extern int XwcTextListToTextProperty(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
wchar_t** /* list */,
|
||||
int /* count */,
|
||||
XICCEncodingStyle /* style */,
|
||||
XTextProperty* /* text_prop_return */
|
||||
#endif
|
||||
Display* display,
|
||||
wchar_t** list,
|
||||
int count,
|
||||
XICCEncodingStyle style,
|
||||
XTextProperty* text_prop_return
|
||||
);
|
||||
|
||||
extern int Xutf8TextListToTextProperty(
|
||||
Display* display,
|
||||
char** list,
|
||||
int count,
|
||||
XICCEncodingStyle style,
|
||||
XTextProperty* text_prop_return
|
||||
);
|
||||
|
||||
extern void XwcFreeStringList(
|
||||
#if NeedFunctionPrototypes
|
||||
wchar_t** /* list */
|
||||
#endif
|
||||
wchar_t** list
|
||||
);
|
||||
|
||||
extern Status XTextPropertyToStringList(
|
||||
|
|
@ -845,21 +862,24 @@ extern Status XTextPropertyToStringList(
|
|||
);
|
||||
|
||||
extern int XmbTextPropertyToTextList(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
XTextProperty* /* text_prop */,
|
||||
char*** /* list_return */,
|
||||
int* /* count_return */
|
||||
#endif
|
||||
Display* display,
|
||||
const XTextProperty* text_prop,
|
||||
char*** list_return,
|
||||
int* count_return
|
||||
);
|
||||
|
||||
extern int XwcTextPropertyToTextList(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
XTextProperty* /* text_prop */,
|
||||
wchar_t*** /* list_return */,
|
||||
int* /* count_return */
|
||||
#endif
|
||||
Display* display,
|
||||
const XTextProperty* text_prop,
|
||||
wchar_t*** list_return,
|
||||
int* count_return
|
||||
);
|
||||
|
||||
extern int Xutf8TextPropertyToTextList(
|
||||
Display* display,
|
||||
const XTextProperty* text_prop,
|
||||
char*** list_return,
|
||||
int* count_return
|
||||
);
|
||||
|
||||
extern int XUnionRectWithRegion(
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/AllPlanes.man,v 1.2 2001/01/27 18:19:56 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH AllPlanes 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH AllPlanes 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
AllPlanes, BlackPixel, WhitePixel, ConnectionNumber, DefaultColormap, DefaultDepth, XListDepths, DefaultGC, DefaultRootWindow, DefaultScreenOfDisplay, DefaultScreen, DefaultVisual, DisplayCells, DisplayPlanes, DisplayString, XMaxRequestSize, XExtendedMaxRequestSize, LastKnownRequestProcessed, NextRequest, ProtocolVersion, ProtocolRevision, QLength, RootWindow, ScreenCount, ScreenOfDisplay, ServerVendor, VendorRelease \- Display macros and functions
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/BlkPScrn.man,v 1.2 2001/01/27 18:19:56 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH BlackPixelOfScreen 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH BlackPixelOfScreen 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
BlackPixelOfScreen, WhitePixelOfScreen, CellsOfScreen, DefaultColormapOfScreen, DefaultDepthOfScreen, DefaultGCOfScreen, DefaultVisualOfScreen, DoesBackingStore, DoesSaveUnders, DisplayOfScreen, XScreenNumberOfScreen, EventMaskOfScreen, HeightOfScreen, HeightMMOfScreen, MaxCmapsOfScreen, MinCmapsOfScreen, PlanesOfScreen, RootWindowOfScreen, WidthOfScreen, WidthMMOfScreen \- screen information functions and macros
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/Dis3C.man,v 1.2 2001/01/27 18:19:56 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH DisplayOfCCC 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH DisplayOfCCC 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
DisplayOfCCC, VisualOfCCC, ScreenNumberOfCCC, ScreenWhitePointOfCCC, ClientWhitePointOfCCC \- Color Conversion Context macros
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/ImageOrd.man,v 1.2 2001/01/27 18:19:56 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH ImageByteOrder 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH ImageByteOrder 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
ImageByteOrder, BitmapBitOrder, BitmapPad, BitmapUnit, DisplayHeight, DisplayHeightMM, DisplayWidth, DisplayWidthMM, XListPixmapFormats, XPixmapFormatValues \- image format functions and macros
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/IsCKey.man,v 1.2 2001/01/27 18:19:56 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH IsCursorKey 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH IsCursorKey 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
IsCursorKey, IsFunctionKey, IsKeypadKey, IsMiscFunctionKey, IsModiferKey, IsPFKey, IsPrivateKeypadKey \- keysym classification macros
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XIntConn.man,v 1.3 2001/11/21 22:54:13 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XAddConnectionWatch 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XAddConnectionWatch 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XAddConnectionWatch, XRemoveConnectionWatch, XProcessInternalConnection, XInternalConnectionNumbers \- handle Xlib internal connections
|
||||
.SH SYNTAX
|
||||
|
|
@ -176,12 +178,6 @@ void XProcessInternalConnection\^(\^\fIdisplay\fP, \fIfd\fP\^)
|
|||
.br
|
||||
int \fIfd\fP\^;
|
||||
.LP
|
||||
void XProcessInternalConnection\^(\^\fIdisplay\fP, \fIfd\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
int \fIfd\fP\^;
|
||||
.LP
|
||||
Status XInternalConnectionNumbers\^(\^\fIdisplay\fP, \fIfd_return\fP\^, \fIcount_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
|
|
@ -255,17 +251,6 @@ has indicated that input is available; otherwise,
|
|||
the effect is not defined.
|
||||
.LP
|
||||
The
|
||||
.ZN XProcessInternalConnection
|
||||
function processes input available on an internal connection.
|
||||
This function should be called for an internal connection only
|
||||
after an operating system facility (for example,
|
||||
.ZN select
|
||||
or
|
||||
.ZN poll )
|
||||
has indicated that input is available; otherwise,
|
||||
the effect is not defined.
|
||||
.LP
|
||||
The
|
||||
.ZN XInternalConnectionNumbers
|
||||
function returns a list of the file descriptors for all internal
|
||||
connections currently open for the specified display.
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XAddHost.man,v 1.2 2001/01/27 18:19:56 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XAddHost 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XAddHost 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XAddHost, XAddHosts, XListHosts, XRemoveHost, XRemoveHosts, XSetAccessControl, XEnableAccessControl, XDisableAccessControl, XHostAddress \- control host access and host control structure
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XACHints.man,v 1.2 2001/01/27 18:19:56 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XAllocClassHint 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XAllocClassHint 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XAllocClassHint, XSetClassHint, XGetClassHint, XClassHint \- allocate class hints structure and set or read a window's WM_CLASS property
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -41,6 +41,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XAllColor.man,v 1.3 2001/02/09 03:47:45 tsi Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -140,7 +142,7 @@
|
|||
..
|
||||
.ny0
|
||||
'\" e
|
||||
.TH XAllocColor 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XAllocColor 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XAllocColor, XAllocNamedColor, XAllocColorCells, XAllocColorPlanes, XFreeColors \- allocate and free colors
|
||||
.SH SYNTAX
|
||||
|
|
@ -152,7 +154,7 @@ Status XAllocColor\^(\^\fIdisplay\fP, \fIcolormap\fP\^, \fIscreen_in_out\fP\^)
|
|||
.br
|
||||
XColor *\fIscreen_in_out\fP\^;
|
||||
.LP
|
||||
Status XAllocNamedColor\^(\^\fIdisplay\fP, \fIcolormap\fP\^, \
|
||||
Status XAllocNamedColor\^(\^\fIdisplay\fP, \fIcolormap\fP\^,
|
||||
\fIcolor_name\fP\^, \fIscreen_def_return\fP\^, \fIexact_def_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
|
|
@ -163,7 +165,7 @@ Status XAllocNamedColor\^(\^\fIdisplay\fP, \fIcolormap\fP\^, \
|
|||
.br
|
||||
XColor *\fIscreen_def_return\fP\^, *\fIexact_def_return\fP\^;
|
||||
.LP
|
||||
Status XAllocColorCells\^(\^\fIdisplay\fP, \fIcolormap\fP\^, \fIcontig\fP\^, \
|
||||
Status XAllocColorCells\^(\^\fIdisplay\fP, \fIcolormap\fP\^, \fIcontig\fP\^,
|
||||
\fIplane_masks_return\fP\^, \fInplanes\fP\^,
|
||||
.br
|
||||
\fIpixels_return\fP\^, \fInpixels\fP\^)
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XAIcSize.man,v 1.2 2001/01/27 18:19:56 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XAllocIconSize 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XAllocIconSize 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XAllocIconSize, XSetIconSizes, XGetIconSizes, XIconSize \- allocate icon size structure and set or read a window's WM_ICON_SIZES property
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -41,6 +41,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XASHints.man,v 1.4 2001/02/09 03:47:44 tsi Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -140,7 +142,7 @@
|
|||
..
|
||||
.ny0
|
||||
'\" t
|
||||
.TH XAllocSizeHints 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XAllocSizeHints 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XAllocSizeHints, XSetWMNormalHints, XGetWMNormalHints, XSetWMSizeHints, XGetWMSizeHints, XSizeHints \- allocate size hints structure and set or read a window's WM_NORMAL_HINTS property
|
||||
.SH SYNTAX
|
||||
|
|
@ -154,7 +156,7 @@ void XSetWMNormalHints\^(\^\fIdisplay\fP, \fIw\fP, \fIhints\fP\^)
|
|||
.br
|
||||
XSizeHints *\fIhints\fP\^;
|
||||
.LP
|
||||
Status XGetWMNormalHints\^(\^\fIdisplay\fP, \fIw\fP, \fIhints_return\fP, \
|
||||
Status XGetWMNormalHints\^(\^\fIdisplay\fP, \fIw\fP, \fIhints_return\fP,
|
||||
\fIsupplied_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
|
|
@ -175,7 +177,7 @@ void XSetWMSizeHints\^(\^\fIdisplay\fP, \fIw\fP, \fIhints\fP, \fIproperty\fP\^)
|
|||
.br
|
||||
Atom \fIproperty\fP\^;
|
||||
.LP
|
||||
Status XGetWMSizeHints\^(\^\fIdisplay\fP, \fIw\fP, \fIhints_return\fP, \
|
||||
Status XGetWMSizeHints\^(\^\fIdisplay\fP, \fIw\fP, \fIhints_return\fP,
|
||||
\fIsupplied_return\fP, \fIproperty\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
|
|
@ -355,7 +357,7 @@ structure contains:
|
|||
.TS
|
||||
lw(.5i) lw(1.1i) lw(1.5i) lw(3.1i).
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN USPosition
|
||||
T} T{
|
||||
|
|
@ -364,7 +366,7 @@ T} T{
|
|||
/* user specified x, y */
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN USSize
|
||||
T} T{
|
||||
|
|
@ -373,7 +375,7 @@ T} T{
|
|||
/* user specified width, height */
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN PPosition
|
||||
T} T{
|
||||
|
|
@ -382,7 +384,7 @@ T} T{
|
|||
/* program specified position */
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN PSize
|
||||
T} T{
|
||||
|
|
@ -391,7 +393,7 @@ T} T{
|
|||
/* program specified size */
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN PMinSize
|
||||
T} T{
|
||||
|
|
@ -400,7 +402,7 @@ T} T{
|
|||
/* program specified minimum size */
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN PMaxSize
|
||||
T} T{
|
||||
|
|
@ -409,7 +411,7 @@ T} T{
|
|||
/* program specified maximum size */
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN PResizeInc
|
||||
T} T{
|
||||
|
|
@ -418,7 +420,7 @@ T} T{
|
|||
/* program specified resize increments */
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN PAspect
|
||||
T} T{
|
||||
|
|
@ -427,21 +429,21 @@ T} T{
|
|||
/* program specified min and max aspect ratios */
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN PBaseSize
|
||||
T} T{
|
||||
(1L << 8)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN PWinGravity
|
||||
T} T{
|
||||
(1L << 9)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN PAllHints
|
||||
T} T{
|
||||
|
|
|
|||
|
|
@ -41,6 +41,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XASCmap.man,v 1.4 2001/02/09 03:47:44 tsi Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -140,13 +142,13 @@
|
|||
..
|
||||
.ny0
|
||||
'\" t
|
||||
.TH XAllocStandardColormap 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XAllocStandardColormap 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XAllocStandardColormap, XSetRGBColormaps, XGetRGBColormaps, XStandardColormap \- allocate, set, or read a standard colormap structure
|
||||
.SH SYNTAX
|
||||
XStandardColormap *XAllocStandardColormap\^(\|)
|
||||
.LP
|
||||
void XSetRGBColormaps\^(\^\fIdisplay\fP, \fIw\fP, \fIstd_colormap\fP, \
|
||||
void XSetRGBColormaps\^(\^\fIdisplay\fP, \fIw\fP, \fIstd_colormap\fP,
|
||||
\fIcount\fP, \fIproperty\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
|
|
@ -159,7 +161,7 @@ void XSetRGBColormaps\^(\^\fIdisplay\fP, \fIw\fP, \fIstd_colormap\fP, \
|
|||
.br
|
||||
Atom \fIproperty\fP\^;
|
||||
.LP
|
||||
Status XGetRGBColormaps\^(\^\fIdisplay\fP, \fIw\fP, \fIstd_colormap_return\fP, \
|
||||
Status XGetRGBColormaps\^(\^\fIdisplay\fP, \fIw\fP, \fIstd_colormap_return\fP,
|
||||
\fIcount_return\fP, \fIproperty\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
|
|
@ -302,7 +304,7 @@ structure contains:
|
|||
.TS
|
||||
lw(.5i) lw(2i) lw(1i).
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN ReleaseByFreeingColormap
|
||||
T} T{
|
||||
|
|
|
|||
|
|
@ -41,6 +41,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XAWMHints.man,v 1.3 2001/02/07 22:35:20 tsi Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -140,7 +142,7 @@
|
|||
..
|
||||
.ny0
|
||||
'\" t
|
||||
.TH XAllocWMHints 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XAllocWMHints 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XAllocWMHints, XSetWMHints, XGetWMHints, XWMHints \- allocate window manager hints structure and set or read a window's WM_HINTS property
|
||||
.SH SYNTAX
|
||||
|
|
@ -228,63 +230,63 @@ structure contains:
|
|||
.TS
|
||||
lw(.5i) lw(2.5i) lw(2.5i).
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN InputHint
|
||||
T} T{
|
||||
(1L << 0)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN StateHint
|
||||
T} T{
|
||||
(1L << 1)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN IconPixmapHint
|
||||
T} T{
|
||||
(1L << 2)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN IconWindowHint
|
||||
T} T{
|
||||
(1L << 3)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN IconPositionHint
|
||||
T} T{
|
||||
(1L << 4)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN IconMaskHint
|
||||
T} T{
|
||||
(1L << 5)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN WindowGroupHint
|
||||
T} T{
|
||||
(1L << 6)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN UrgencyHint
|
||||
T} T{
|
||||
(1L << 8)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN AllHints
|
||||
T} T{
|
||||
|
|
@ -351,7 +353,7 @@ The definitions for the initial_state flag are:
|
|||
.TS
|
||||
lw(.5i) lw(2i) lw(.2i) lw(2.8i).
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN WithdrawnState
|
||||
T} T{
|
||||
|
|
@ -359,7 +361,7 @@ T} T{
|
|||
T} T{
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN NormalState
|
||||
T} T{
|
||||
|
|
@ -368,7 +370,7 @@ T} T{
|
|||
/* most applications start this way */
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN IconicState
|
||||
T} T{
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XAllEvnt.man,v 1.2 2001/01/27 18:19:56 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XAllowEvents 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XAllowEvents 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XAllowEvents \- release queued events
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XAnyEvent.man,v 1.2 2001/01/27 18:19:56 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XAnyEvent 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XAnyEvent 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XAnyEvent, XEvent \- generic X event structures
|
||||
.SH STRUCTURES
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XButEvent.man,v 1.2 2001/01/27 18:19:56 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XButtonEvent 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XButtonEvent 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XButtonEvent, XKeyEvent, XMotionEvent \- KeyPress, KeyRelease, ButtonPress, ButtonRelease, and MotionNotify event structures
|
||||
.SH STRUCTURES
|
||||
|
|
|
|||
|
|
@ -41,6 +41,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XCKCntrl.man,v 1.3 2001/02/07 22:35:20 tsi Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -140,7 +142,7 @@
|
|||
..
|
||||
.ny0
|
||||
'\" t
|
||||
.TH XChangeKeyboardControl 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XChangeKeyboardControl 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XChangeKeyboardControl, XGetKeyboardControl, XAutoRepeatOn, XAutoRepeatOff, XBell, XQueryKeymap, XKeyboardControl \- manipulate keyboard settings and keyboard control structure
|
||||
.SH SYNTAX
|
||||
|
|
@ -271,56 +273,56 @@ structure contains:
|
|||
.TS
|
||||
lw(.5i) lw(2.5i) lw(.8i).
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN KBKeyClickPercent
|
||||
T} T{
|
||||
(1L<<0)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN KBBellPercent
|
||||
T} T{
|
||||
(1L<<1)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN KBBellPitch
|
||||
T} T{
|
||||
(1L<<2)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN KBBellDuration
|
||||
T} T{
|
||||
(1L<<3)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN KBLed
|
||||
T} T{
|
||||
(1L<<4)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN KBLedMode
|
||||
T} T{
|
||||
(1L<<5)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN KBKey
|
||||
T} T{
|
||||
(1L<<6)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN KBAutoRepeatMode
|
||||
T} T{
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XCKMping.man,v 1.3 2001/02/09 03:47:45 tsi Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XChangeKeyboardMapping 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XChangeKeyboardMapping 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XChangeKeyboardMapping, XGetKeyboardMapping, XDisplayKeycodes, XSetModifierMapping, XGetModifierMapping, XNewModifiermap, XInsertModifiermapEntry, XDeleteModifiermapEntry, XFreeModifierMap XModifierKeymap \- manipulate keyboard encoding and keyboard encoding structure
|
||||
.SH SYNTAX
|
||||
|
|
@ -166,7 +168,7 @@ KeySym *XGetKeyboardMapping(\^\fIdisplay\fP, \fIfirst_keycode\fP, \fIkeycode_cou
|
|||
.br
|
||||
int *\fIkeysyms_per_keycode_return\fP\^;
|
||||
.LP
|
||||
XDisplayKeycodes\^(\^\fIdisplay\fP\^, \fImin_keycodes_return\fP\^, \
|
||||
XDisplayKeycodes\^(\^\fIdisplay\fP\^, \fImin_keycodes_return\fP\^,
|
||||
\fImax_keycodes_return\fP\^)
|
||||
.br
|
||||
Display *\^\fIdisplay\fP\^;
|
||||
|
|
@ -188,7 +190,7 @@ XModifierKeymap *XNewModifiermap(\^\fImax_keys_per_mod\fP\^)
|
|||
.br
|
||||
int \fImax_keys_per_mod\fP\^;
|
||||
.LP
|
||||
XModifierKeymap *XInsertModifiermapEntry\^(\^\fImodmap\fP, \
|
||||
XModifierKeymap *XInsertModifiermapEntry\^(\^\fImodmap\fP,
|
||||
\fIkeycode_entry\fP, \fImodifier\fP\^)
|
||||
.br
|
||||
XModifierKeymap *\fImodmap\fP\^;
|
||||
|
|
@ -197,7 +199,7 @@ XModifierKeymap *XInsertModifiermapEntry\^(\^\fImodmap\fP, \
|
|||
.br
|
||||
int \fImodifier\fP\^;
|
||||
.LP
|
||||
XModifierKeymap *XDeleteModifiermapEntry\^(\^\fImodmap\fP, \
|
||||
XModifierKeymap *XDeleteModifiermapEntry\^(\^\fImodmap\fP,
|
||||
\fIkeycode_entry\fP, \fImodifier\fP\^)
|
||||
.br
|
||||
XModifierKeymap *\fImodmap\fP\^;
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XCPCntrl.man,v 1.2 2001/01/27 18:19:57 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XChangePointerControl 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XChangePointerControl 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XChangePointerControl, XGetPointerControl \- control pointer
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XCSSet.man,v 1.2 2001/01/27 18:19:57 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XChangeSaveSet 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XChangeSaveSet 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XChangeSaveSet, XAddToSaveSet, XRemoveFromSaveSet \- change a client's save set
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XCWAttrib.man,v 1.2 2001/01/27 18:19:57 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XChangeWindowAttributes 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XChangeWindowAttributes 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XChangeWindowAttributes, XSetWindowBackground, XSetWindowBackgroundPixmap, XSetWindowBorder, XSetWindowBorderPixmap, XSetWindowColormap \- change window attributes
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XCirEvent.man,v 1.2 2001/01/27 18:19:57 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XCirculateEvent 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XCirculateEvent 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XCirculateEvent \- CirculateNotify event structure
|
||||
.SH STRUCTURES
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XCirREven.man,v 1.2 2001/01/27 18:19:57 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XCirculateRequestEvent 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XCirculateRequestEvent 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XCirculateRequestEvent \- CirculateRequest event structure
|
||||
.SH STRUCTURES
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XClrArea.man,v 1.3 2001/02/09 03:47:45 tsi Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XClearArea 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XClearArea 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XClearArea, XClearWindow \- clear area or window
|
||||
.SH SYNTAX
|
||||
|
|
@ -174,7 +176,7 @@ Specifies the window.
|
|||
.ns
|
||||
.IP \fIheight\fP 1i
|
||||
Specify the width and height\*(Wh.
|
||||
.ds Xy , which are relative to the origin of the window \
|
||||
.ds Xy , which are relative to the origin of the window
|
||||
and specify the upper-left corner of the rectangle
|
||||
.IP \fIx\fP 1i
|
||||
.br
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XCMEvent.man,v 1.2 2001/01/27 18:19:56 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XClientMessageEvent 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XClientMessageEvent 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XClientMessageEvent \- ClientMessage event structure
|
||||
.SH STRUCTURES
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XCmpEvent.man,v 1.2 2001/01/27 18:19:57 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XColormapEvent 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XColormapEvent 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XColormapEvent \- ColormapNotify event structure
|
||||
.SH STRUCTURES
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XConEvent.man,v 1.2 2001/01/27 18:19:57 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XConfigureEvent 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XConfigureEvent 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XConfigureEvent \- ConfigureNotify event structure
|
||||
.SH STRUCTURES
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XConREven.man,v 1.2 2001/01/27 18:19:57 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XConfigureRequestEvent 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XConfigureRequestEvent 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XConfigureRequestEvent \- ConfigureRequest event structure
|
||||
.SH STRUCTURES
|
||||
|
|
|
|||
|
|
@ -41,6 +41,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XConfWin.man,v 1.4 2001/02/09 03:47:45 tsi Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -140,7 +142,7 @@
|
|||
..
|
||||
.ny0
|
||||
'\" t
|
||||
.TH XConfigureWindow 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XConfigureWindow 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XConfigureWindow, XMoveWindow, XResizeWindow, XMoveResizeWindow, XSetWindowBorderWidth, XWindowChanges \- configure windows and window changes structure
|
||||
.SH SYNTAX
|
||||
|
|
@ -209,8 +211,8 @@ Specifies the width of the window border.
|
|||
.ns
|
||||
.IP \fIheight\fP 1i
|
||||
Specify the width and height\*(Wh.
|
||||
.ds Xy , which define the new location of the top-left pixel \
|
||||
of the window's border or the window itself if it has no border \
|
||||
.ds Xy , which define the new location of the top-left pixel
|
||||
of the window's border or the window itself if it has no border
|
||||
or define the new position of the window relative to its parent
|
||||
.IP \fIx\fP 1i
|
||||
.br
|
||||
|
|
@ -365,49 +367,49 @@ structure contains:
|
|||
.TS
|
||||
lw(.5i) lw(2.5i) lw(.8i).
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN CWX
|
||||
T} T{
|
||||
(1<<0)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN CWY
|
||||
T} T{
|
||||
(1<<1)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN CWWidth
|
||||
T} T{
|
||||
(1<<2)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN CWHeight
|
||||
T} T{
|
||||
(1<<3)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN CWBorderWidth
|
||||
T} T{
|
||||
(1<<4)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN CWSibling
|
||||
T} T{
|
||||
(1<<5)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN CWStackMode
|
||||
T} T{
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XCopyArea.man,v 1.3 2001/02/09 03:47:45 tsi Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XCopyArea 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XCopyArea 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XCopyArea, XCopyPlane \- copy areas
|
||||
.SH SYNTAX
|
||||
|
|
@ -172,7 +174,7 @@ XCopyPlane\^(\^\fIdisplay\fP, \fIsrc\fP\^, \fIdest\fP\^, \fIgc\fP\^, \fIsrc_x\fP
|
|||
.br
|
||||
unsigned long \fIplane\fP\^;
|
||||
.SH ARGUMENTS
|
||||
.ds Dx , which are relative to the origin of the destination rectangle \
|
||||
.ds Dx , which are relative to the origin of the destination rectangle
|
||||
and specify its upper-left corner
|
||||
.IP \fIdest_x\fP 1i
|
||||
.br
|
||||
|
|
@ -198,7 +200,7 @@ Specify the source and destination rectangles to be combined.
|
|||
Specify the x and y coordinates,
|
||||
which are relative to the origin of the source rectangle
|
||||
and specify its upper-left corner.
|
||||
.ds Wh , which are the dimensions of both the source \
|
||||
.ds Wh , which are the dimensions of both the source
|
||||
and destination rectangles
|
||||
.IP \fIwidth\fP 1i
|
||||
.br
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XCreCmap.man,v 1.3 2001/07/23 20:47:17 paulo Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XCreateColormap 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XCreateColormap 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XCreateColormap, XCopyColormapAndFree, XFreeColormap, XColor \- create, copy, or destroy colormaps and color structure
|
||||
.SH SYNTAX
|
||||
|
|
@ -371,7 +373,7 @@ alternatives can generate this error.
|
|||
A value for a Window argument does not name a defined Window.
|
||||
.SH "SEE ALSO"
|
||||
XAllocColor(3X11),
|
||||
XChangeWindowAtrributes(3X11),
|
||||
XChangeWindowAttributes(3X11),
|
||||
XCreateWindow(3X11),
|
||||
XQueryColor(3X11),
|
||||
XStoreColors(3X11)
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XCreFCur.man,v 1.3 2001/02/07 22:35:20 tsi Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,11 +140,11 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XCreateFontCursor 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XCreateFontCursor 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XCreateFontCursor, XCreatePixmapCursor, XCreateGlyphCursor \- create cursors
|
||||
.SH SYNTAX
|
||||
#include <X11/cursorfont.h>
|
||||
\&#include <X11/cursorfont.h>
|
||||
.sp 6p
|
||||
Cursor XCreateFontCursor\^(\^\fIdisplay\fP, \fIshape\fP\^)
|
||||
.br
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XCreFSet.man,v 1.2 2001/01/27 18:19:57 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XCreateFontSet 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XCreateFontSet 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XCreateFontSet, XFreeFontSet \- create and free an international text drawing font set
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -41,6 +41,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XCreGC.man,v 1.5 2001/02/09 03:47:45 tsi Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -140,7 +142,7 @@
|
|||
..
|
||||
.ny0
|
||||
'\" t
|
||||
.TH XCreateGC 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XCreateGC 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XCreateGC, XCopyGC, XChangeGC, XGetGCValues, XFreeGC, XGContextFromGC, XGCValues \- create or free graphics contexts and graphics context structure
|
||||
.SH SYNTAX
|
||||
|
|
@ -172,7 +174,7 @@ XChangeGC\^(\^\fIdisplay\fP, \fIgc\fP\^, \fIvaluemask\fP\^, \fIvalues\fP\^)
|
|||
.br
|
||||
XGCValues *\^\fIvalues\fP\^;
|
||||
.LP
|
||||
Status XGetGCValues\^(\^\fIdisplay\fP, \fIgc\fP, \fIvaluemask\fP, \
|
||||
Status XGetGCValues\^(\^\fIdisplay\fP, \fIgc\fP, \fIvaluemask\fP,
|
||||
\fIvalues_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
|
|
@ -343,140 +345,163 @@ structure contains:
|
|||
/* GC attribute value mask bits */
|
||||
.TS
|
||||
lw(.5i) lw(2.5i) lw(.75i).
|
||||
#define\
|
||||
T{
|
||||
T{
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN GCFunction
|
||||
T} T{
|
||||
(1L<<0)
|
||||
T}
|
||||
#define\
|
||||
T{
|
||||
T{
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN GCPlaneMask
|
||||
T} T{
|
||||
(1L<<1)
|
||||
T}
|
||||
#define\
|
||||
T{
|
||||
T{
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN GCForeground
|
||||
T} T{
|
||||
(1L<<2)
|
||||
T}
|
||||
#define\
|
||||
T{
|
||||
T{
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN GCBackground
|
||||
T} T{
|
||||
(1L<<3)
|
||||
T}
|
||||
#define\
|
||||
T{
|
||||
T{
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN GCLineWidth
|
||||
T} T{
|
||||
(1L<<4)
|
||||
T}
|
||||
#define\
|
||||
T{
|
||||
T{
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN GCLineStyle
|
||||
T} T{
|
||||
(1L<<5)
|
||||
T}
|
||||
#define\
|
||||
T{
|
||||
T{
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN GCCapStyle
|
||||
T} T{
|
||||
(1L<<6)
|
||||
T}
|
||||
#define\
|
||||
T{
|
||||
T{
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN GCJoinStyle
|
||||
T} T{
|
||||
(1L<<7)
|
||||
T}
|
||||
#define\
|
||||
T{
|
||||
T{
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN GCFillStyle
|
||||
T} T{
|
||||
(1L<<8)
|
||||
T}
|
||||
#define\
|
||||
T{
|
||||
T{
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN GCFillRule
|
||||
T} T{
|
||||
(1L<<9)
|
||||
T}
|
||||
#define\
|
||||
T{
|
||||
T{
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN GCTile
|
||||
T} T{
|
||||
(1L<<10)
|
||||
T}
|
||||
#define\
|
||||
T{
|
||||
T{
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN GCStipple
|
||||
T} T{
|
||||
(1L<<11)
|
||||
T}
|
||||
#define\
|
||||
T{
|
||||
T{
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN GCTileStipXOrigin
|
||||
T} T{
|
||||
(1L<<12)
|
||||
T}
|
||||
#define\
|
||||
T{
|
||||
T{
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN GCTileStipYOrigin
|
||||
T} T{
|
||||
(1L<<13)
|
||||
T}
|
||||
#define\
|
||||
T{
|
||||
T{
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN GCFont
|
||||
T} T{
|
||||
(1L<<14)
|
||||
T}
|
||||
#define\
|
||||
T{
|
||||
T{
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN GCSubwindowMode
|
||||
T} T{
|
||||
(1L<<15)
|
||||
T}
|
||||
#define\
|
||||
T{
|
||||
T{
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN GCGraphicsExposures
|
||||
T} T{
|
||||
(1L<<16)
|
||||
T}
|
||||
#define\
|
||||
T{
|
||||
T{
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN GCClipXOrigin
|
||||
T} T{
|
||||
(1L<<17)
|
||||
T}
|
||||
#define\
|
||||
T{
|
||||
T{
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN GCClipYOrigin
|
||||
T} T{
|
||||
(1L<<18)
|
||||
T}
|
||||
#define\
|
||||
T{
|
||||
T{
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN GCClipMask
|
||||
T} T{
|
||||
(1L<<19)
|
||||
T}
|
||||
#define\
|
||||
T{
|
||||
T{
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN GCDashOffset
|
||||
T} T{
|
||||
(1L<<20)
|
||||
T}
|
||||
#define\
|
||||
T{
|
||||
T{
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN GCDashList
|
||||
T} T{
|
||||
(1L<<21)
|
||||
T}
|
||||
#define\
|
||||
T{
|
||||
T{
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN GCArcMode
|
||||
T} T{
|
||||
(1L<<22)
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XCreIC.man,v 1.2 2001/01/27 18:19:57 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XCreateIC 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XCreateIC 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XCreateIC, XDestroyIC, XIMOfIC \- create, destroy, and obtain the input method of an input context
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XCreOC.man,v 1.2 2001/01/27 18:19:57 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XCreateOC 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XCreateOC 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XCreateOC, XDestroyOC, XSetOCValues, XGetOCValues, XOMOfOC \- create output contexts
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XCrePmap.man,v 1.2 2001/01/27 18:19:57 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XCreatePixmap 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XCreatePixmap 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XCreatePixmap, XFreePixmap \- create or destroy pixmaps
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XCreReg.man,v 1.2 2001/01/27 18:19:57 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XCreateRegion 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XCreateRegion 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XCreateRegion, XSetRegion, XDestroyRegion \- create or destroy regions
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -41,6 +41,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XCreWin.man,v 1.4 2001/02/09 03:47:45 tsi Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -140,7 +142,7 @@
|
|||
..
|
||||
.ny0
|
||||
'\" t
|
||||
.TH XCreateWindow 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XCreateWindow 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XCreateWindow, XCreateSimpleWindow, XSetWindowAttributes \- create windows and window attributes structure
|
||||
.SH SYNTAX
|
||||
|
|
@ -230,14 +232,14 @@ A visual of
|
|||
.ZN CopyFromParent
|
||||
means the visual type is taken from the
|
||||
parent.
|
||||
.ds Wh , which are the created window's inside dimensions \
|
||||
.ds Wh , which are the created window's inside dimensions
|
||||
and do not include the created window's borders
|
||||
.IP \fIwidth\fP 1i
|
||||
.br
|
||||
.ns
|
||||
.IP \fIheight\fP 1i
|
||||
Specify the width and height\*(Wh.
|
||||
.ds Xy , which are the top-left outside corner of the window's \
|
||||
.ds Xy , which are the top-left outside corner of the window's
|
||||
borders and are relative to the inside of the parent window's borders
|
||||
.IP \fIx\fP 1i
|
||||
.br
|
||||
|
|
@ -357,105 +359,105 @@ structure contains:
|
|||
.TS
|
||||
lw(.5i) lw(2.5i) lw(.8i).
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN CWBackPixmap
|
||||
T} T{
|
||||
(1L<<0)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN CWBackPixel
|
||||
T} T{
|
||||
(1L<<1)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN CWBorderPixmap
|
||||
T} T{
|
||||
(1L<<2)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN CWBorderPixel
|
||||
T} T{
|
||||
(1L<<3)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN CWBitGravity
|
||||
T} T{
|
||||
(1L<<4)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN CWWinGravity
|
||||
T} T{
|
||||
(1L<<5)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN CWBackingStore
|
||||
T} T{
|
||||
(1L<<6)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN CWBackingPlanes
|
||||
T} T{
|
||||
(1L<<7)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN CWBackingPixel
|
||||
T} T{
|
||||
(1L<<8)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN CWOverrideRedirect
|
||||
T} T{
|
||||
(1L<<9)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN CWSaveUnder
|
||||
T} T{
|
||||
(1L<<10)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN CWEventMask
|
||||
T} T{
|
||||
(1L<<11)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN CWDontPropagate
|
||||
T} T{
|
||||
(1L<<12)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN CWColormap
|
||||
T} T{
|
||||
(1L<<13)
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN CWCursor
|
||||
T} T{
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XCWEvent.man,v 1.2 2001/01/27 18:19:57 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XCreateWindowEvent 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XCreateWindowEvent 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XCreateWindowEvent \- CreateNotify event structure
|
||||
.SH STRUCTURES
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XCroEvent.man,v 1.2 2001/01/27 18:19:57 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XCrossingEvent 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XCrossingEvent 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XCrossingEvent \- EnterNotify and LeaveNotify event structure
|
||||
.SH STRUCTURES
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XDefCur.man,v 1.2 2001/01/27 18:19:58 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XDefineCursor 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XDefineCursor 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XDefineCursor, XUndefineCursor \- define cursors
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XDesWin.man,v 1.2 2001/01/27 18:19:58 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XDestroyWindow 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XDestroyWindow 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XDestroyWindow, XDestroySubwindows \- destroy windows
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XDWEvent.man,v 1.2 2001/01/27 18:19:58 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XDestroyWindowEvent 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XDestroyWindowEvent 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XDestroyWindowEvent \- DestroyNotify event structure
|
||||
.SH STRUCTURES
|
||||
|
|
|
|||
|
|
@ -41,6 +41,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XDrArc.man,v 1.3 2001/02/09 03:47:45 tsi Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -140,7 +142,7 @@
|
|||
..
|
||||
.ny0
|
||||
'\" e
|
||||
.TH XDrawArc 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XDrawArc 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XDrawArc, XDrawArcs, XArc \- draw arcs and arc structure
|
||||
.SH SYNTAX
|
||||
|
|
@ -192,7 +194,7 @@ Specifies the number of arcs in the array.
|
|||
.ns
|
||||
.IP \fIheight\fP 1i
|
||||
Specify the width and height\*(Wh.
|
||||
.ds Xy , which are relative to the origin of the drawable \
|
||||
.ds Xy , which are relative to the origin of the drawable
|
||||
and specify the upper-left corner of the bounding rectangle
|
||||
.IP \fIx\fP 1i
|
||||
.br
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XDrIStr.man,v 1.3 2001/02/09 03:47:45 tsi Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XDrawImageString 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XDrawImageString 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XDrawImageString, XDrawImageString16 \- draw image text
|
||||
.SH SYNTAX
|
||||
|
|
@ -180,7 +182,7 @@ Specifies the GC.
|
|||
Specifies the number of characters in the string argument.
|
||||
.IP \fIstring\fP 1i
|
||||
Specifies the character string.
|
||||
.ds Xy , which are relative to the origin of the specified drawable \
|
||||
.ds Xy , which are relative to the origin of the specified drawable
|
||||
and define the origin of the first character
|
||||
.IP \fIx\fP 1i
|
||||
.br
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XDrLine.man,v 1.2 2001/01/27 18:19:58 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XDrawLine 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XDrawLine 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XDrawLine, XDrawLines, XDrawSegments, XSegment \- draw lines, polygons, and line structure
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XDrPoint.man,v 1.2 2001/01/27 18:19:58 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XDrawPoint 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XDrawPoint 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XDrawPoint, XDrawPoints, XPoint \- draw points and points structure
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XDrRect.man,v 1.2 2001/01/27 18:19:58 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XDrawRectangle 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XDrawRectangle 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XDrawRectangle, XDrawRectangles, XRectangle \- draw rectangles and rectangles structure
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XDrString.man,v 1.3 2001/02/09 03:47:45 tsi Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XDrawString 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XDrawString 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XDrawString, XDrawString16 \- draw text characters
|
||||
.SH SYNTAX
|
||||
|
|
@ -180,7 +182,7 @@ Specifies the GC.
|
|||
Specifies the number of characters in the string argument.
|
||||
.IP \fIstring\fP 1i
|
||||
Specifies the character string.
|
||||
.ds Xy , which are relative to the origin of the specified drawable \
|
||||
.ds Xy , which are relative to the origin of the specified drawable
|
||||
and define the origin of the first character
|
||||
.IP \fIx\fP 1i
|
||||
.br
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XDrText.man,v 1.3 2001/02/09 03:47:45 tsi Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XDrawText 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XDrawText 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XDrawText, XDrawText16, XTextItem, XTextItem16 \- draw polytext text and text drawing structures
|
||||
.SH SYNTAX
|
||||
|
|
@ -180,7 +182,7 @@ Specifies the GC.
|
|||
Specifies an array of text items.
|
||||
.IP \fInitems\fP 1i
|
||||
Specifies the number of text items in the array.
|
||||
.ds Xy , which are relative to the origin of the specified drawable \
|
||||
.ds Xy , which are relative to the origin of the specified drawable
|
||||
and define the origin of the first character
|
||||
.IP \fIx\fP 1i
|
||||
.br
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XERegion.man,v 1.3 2001/02/09 03:47:45 tsi Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XEmptyRegion 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XEmptyRegion 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XEmptyRegion, XEqualRegion, XPointInRegion, XRectInRegion \- determine if regions are empty or equal
|
||||
.SH SYNTAX
|
||||
|
|
@ -177,7 +179,7 @@ Specify the two regions.
|
|||
.ns
|
||||
.IP \fIheight\fP 1i
|
||||
Specify the width and height\*(Wh.
|
||||
.ds Xy , which define the point \
|
||||
.ds Xy , which define the point
|
||||
or the coordinates of the upper-left corner of the rectangle
|
||||
.IP \fIx\fP 1i
|
||||
.br
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XErrEvent.man,v 1.2 2001/01/27 18:19:58 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XErrorEvent 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XErrorEvent 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XErrorEvent \- X error event structure
|
||||
.SH STRUCTURES
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XExpEvent.man,v 1.2 2001/01/27 18:19:58 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XExposeEvent 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XExposeEvent 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XExposeEvent \- Expose event structure
|
||||
.SH STRUCTURES
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XEofFSet.man,v 1.2 2001/01/27 18:19:58 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XExtentsOfFontSet 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XExtentsOfFontSet 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XExtentsOfFontSet \- obtain the maximum extents structure for a font set
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XFillRect.man,v 1.3 2001/02/09 03:47:45 tsi Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XFillRectangle 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XFillRectangle 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XFillRectangle, XFillRectangles, XFillPolygon, XFillArc, XFillArcs \- fill rectangles, polygons, or arcs
|
||||
.SH SYNTAX
|
||||
|
|
@ -245,14 +247,14 @@ You can pass
|
|||
.ZN Convex ,
|
||||
or
|
||||
.ZN Nonconvex .
|
||||
.ds Wh , which are the dimensions of the rectangle to be filled \
|
||||
.ds Wh , which are the dimensions of the rectangle to be filled
|
||||
or the major and minor axes of the arc
|
||||
.IP \fIwidth\fP 1i
|
||||
.br
|
||||
.ns
|
||||
.IP \fIheight\fP 1i
|
||||
Specify the width and height\*(Wh.
|
||||
.ds Xy , which are relative to the origin of the drawable \
|
||||
.ds Xy , which are relative to the origin of the drawable
|
||||
and specify the upper-left corner of the rectangle
|
||||
.IP \fIx\fP 1i
|
||||
.br
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XFEvent.man,v 1.2 2001/01/27 18:19:59 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XFilterEvent 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XFilterEvent 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XFilterEvent \- filter X events for an input method
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XFlush.man,v 1.2 2001/01/27 18:19:59 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XFlush 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XFlush 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XFlush, XSync, XEventsQueued, XPending \- handle output buffer or event queue
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XFCEvent.man,v 1.2 2001/01/27 18:19:59 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XFocusChangeEvent 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XFocusChangeEvent 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XFocusChangeEvent \- FocusIn and FocusOut event structure
|
||||
.SH STRUCTURES
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XFSExt.man,v 1.2 2001/01/27 18:19:59 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XFontSetExtents 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XFontSetExtents 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XFontSetExtents \- XFontSetExtents structure
|
||||
.SH STRUCTURES
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XFofFSet.man,v 1.2 2001/01/27 18:19:59 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XFontsOfFontSet 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XFontsOfFontSet 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XFontsOfFontSet, XBaseFontNameListOfFontSet, XLocaleOfFontSet, XContextDependentDrawing, XContextualDrawing, XDirectionalDependentDrawing \- obtain fontset information
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XFree.man,v 1.2 2001/01/27 18:19:59 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XFree 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XFree 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XFree \- free client data
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -41,6 +41,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XGetVInfo.man,v 1.3 2001/02/07 22:35:20 tsi Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -140,7 +142,7 @@
|
|||
..
|
||||
.ny0
|
||||
'\" t
|
||||
.TH XGetVisualInfo 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XGetVisualInfo 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XGetVisualInfo, XMatchVisualInfo, XVisualIDFromVisual, XVisualInfo \- obtain visual information and visual structure
|
||||
.SH SYNTAX
|
||||
|
|
@ -226,77 +228,77 @@ structure contains:
|
|||
.TS
|
||||
lw(.5i) lw(2.5i) lw(.8i).
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN VisualNoMask
|
||||
T} T{
|
||||
0x0
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN VisualIDMask
|
||||
T} T{
|
||||
0x1
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN VisualScreenMask
|
||||
T} T{
|
||||
0x2
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN VisualDepthMask
|
||||
T} T{
|
||||
0x4
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN VisualClassMask
|
||||
T} T{
|
||||
0x8
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN VisualRedMaskMask
|
||||
T} T{
|
||||
0x10
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN VisualGreenMaskMask
|
||||
T} T{
|
||||
0x20
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN VisualBlueMaskMask
|
||||
T} T{
|
||||
0x40
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN VisualColormapSizeMask
|
||||
T} T{
|
||||
0x80
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN VisualBitsPerRGBMask
|
||||
T} T{
|
||||
0x100
|
||||
T}
|
||||
T{
|
||||
#define
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN VisualAllMask
|
||||
T} T{
|
||||
|
|
|
|||
|
|
@ -41,6 +41,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XGetWAttr.man,v 1.2 2001/01/27 18:19:59 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -140,7 +142,7 @@
|
|||
..
|
||||
.ny0
|
||||
'\" t
|
||||
.TH XGetWindowAttributes 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XGetWindowAttributes 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XGetWindowAttributes, XGetGeometry, XWindowAttributes \- get current window attribute or geometry and current window attributes structure
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XGetWProp.man,v 1.2 2001/01/27 18:19:59 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XGetWindowProperty 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XGetWindowProperty 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XGetWindowProperty, XListProperties, XChangeProperty, XRotateWindowProperties, XDeleteProperty \- obtain and change window properties
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XGrButton.man,v 1.2 2001/01/27 18:19:59 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XGrabButton 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XGrabButton 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XGrabButton, XUngrabButton \- grab pointer buttons
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XGrKey.man,v 1.2 2001/01/27 18:19:59 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XGrabKey 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XGrabKey 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XGrabKey, XUngrabKey \- grab keyboard keys
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XGrKeybrd.man,v 1.2 2001/01/27 18:20:00 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XGrabKeyboard 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XGrabKeyboard 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XGrabKeyboard, XUngrabKeyboard \- grab the keyboard
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XGrPntr.man,v 1.2 2001/01/27 18:20:00 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XGrabPointer 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XGrabPointer 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XGrabPointer, XUngrabPointer, XChangeActivePointerGrab \- grab the pointer
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XGrServer.man,v 1.2 2001/01/27 18:20:00 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XGrabServer 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XGrabServer 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XGrabServer, XUngrabServer \- grab the server
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XGEEvent.man,v 1.2 2001/01/27 18:19:59 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XGraphicsExposeEvent 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XGraphicsExposeEvent 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XGraphicsExposeEvent, XNoExposeEvent \- GraphicsExpose and NoExpose event structures
|
||||
.SH STRUCTURES
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XGEvent.man,v 1.2 2001/01/27 18:19:59 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XGravityEvent 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XGravityEvent 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XGravityEvent \- GravityNotify event structure
|
||||
.SH STRUCTURES
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XIcWin.man,v 1.3 2001/02/09 03:47:45 tsi Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XIconifyWindow 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XIconifyWindow 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XIconifyWindow, XWithdrawWindow, XReconfigureWMWindow \- manipulate top-level windows
|
||||
.SH SYNTAX
|
||||
|
|
@ -158,7 +160,7 @@ Status XWithdrawWindow\^(\^\fIdisplay\fP, \fIw\fP, \fIscreen_number\fP\^)
|
|||
.br
|
||||
int \fIscreen_number\fP\^;
|
||||
.LP
|
||||
Status XReconfigureWMWindow\^(\^\fIdisplay\fP, \fIw\fP, \fIscreen_number\fP, \
|
||||
Status XReconfigureWMWindow\^(\^\fIdisplay\fP, \fIw\fP, \fIscreen_number\fP,
|
||||
\fIvalue_mask\fP, \fIvalues\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XIfEvent.man,v 1.2 2001/01/27 18:20:00 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XIfEvent 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XIfEvent 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XIfEvent, XCheckIfEvent, XPeekIfEvent \- check the event queue with a predicate procedure
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XCreImage.man,v 1.2 2001/01/27 18:19:57 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XCreateImage 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XCreateImage 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XInitImage, XCreateImage, XGetPixel, XPutPixel, XSubImage, XAddPixel, XDestroyImage \- image utilities
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XThreads.man,v 1.2 2001/01/27 18:20:06 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XInitThreads 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XInitThreads 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XInitThreads, XLockDisplay, XUnlockDisplay \- multi-threading support
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XInstCmap.man,v 1.3 2001/07/23 20:47:17 paulo Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XInstallColormap 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XInstallColormap 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XInstallColormap, XUninstallColormap, XListInstalledColormaps \- control colormaps
|
||||
.SH SYNTAX
|
||||
|
|
@ -248,7 +250,7 @@ A value for a Colormap argument does not name a defined Colormap.
|
|||
.ZN BadWindow
|
||||
A value for a Window argument does not name a defined Window.
|
||||
.SH "SEE ALSO"
|
||||
XChangeWindowAtrributes(3X11),
|
||||
XChangeWindowAttributes(3X11),
|
||||
XCreateColormap(3X11),
|
||||
XCreateWindow(3X11),
|
||||
XFree(3X11)
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XInternA.man,v 1.2 2001/01/27 18:20:01 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XInternAtom 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XInternAtom 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XInternAtom, XInternAtoms, XGetAtomName, XGetAtomNames \- create or return atom names
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XInterReg.man,v 1.3 2001/02/09 03:47:45 tsi Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XIntersectRegion 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XIntersectRegion 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XIntersectRegion, XUnionRegion, XUnionRectWithRegion, XSubtractRegion, XXorRegion, XOffsetRegion, XShrinkRegion \- region arithmetic
|
||||
.SH SYNTAX
|
||||
|
|
@ -150,7 +152,7 @@ XUnionRegion\^(\^\fIsra\fP\^, \fIsrb\fP\^, \fIdr_return\fP\^)
|
|||
.br
|
||||
Region \fIsra\fP\^, \fIsrb\fP\^, \fIdr_return\fP\^;
|
||||
.LP
|
||||
XUnionRectWithRegion\^(\^\fIrectangle\fP, \fIsrc_region\fP, \
|
||||
XUnionRectWithRegion\^(\^\fIrectangle\fP, \fIsrc_region\fP,
|
||||
\fIdest_region_return\fP\^)
|
||||
.br
|
||||
XRectangle *\fIrectangle\fP\^;
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XKMapEven.man,v 1.2 2001/01/27 18:20:01 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XKeymapEvent 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XKeymapEvent 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XKeymapEvent \- KeymapNotify event structure
|
||||
.SH STRUCTURES
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XListFont.man,v 1.2 2001/01/27 18:20:01 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XListFonts 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XListFonts 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XListFonts, XFreeFontNames, XListFontsWithInfo, XFreeFontInfo \- obtain or free font names and information
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XLoadFont.man,v 1.2 2001/01/27 18:20:01 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XLoadFont 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XLoadFont 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XLoadFont, XQueryFont, XLoadQueryFont, XFreeFont, XGetFontProperty, XUnloadFont, XCharStruct, XFontProp, XChar2b, XFontStruct \- load or unload fonts and font metric structures
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XLookKsym.man,v 1.4 2003/02/15 17:48:39 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,9 +140,9 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XLookupKeysym 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XLookupKeysym 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XLookupKeysym, XRefreshKeyboardMapping, XLookupString, XRebindKeySym \- handle keyboard input events in Latin-1
|
||||
XLookupKeysym, XRefreshKeyboardMapping, XLookupString, XRebindKeysym \- handle keyboard input events in Latin-1
|
||||
.SH SYNTAX
|
||||
KeySym XLookupKeysym(\^\fIkey_event\fP, \fIindex\fP\^)
|
||||
.br
|
||||
|
|
@ -152,7 +154,7 @@ XRefreshKeyboardMapping(\^\fIevent_map\fP\^)
|
|||
.br
|
||||
XMappingEvent *\fIevent_map\fP\^;
|
||||
.LP
|
||||
int XLookupString(\^\fIevent_struct\fP, \fIbuffer_return\fP,\
|
||||
int XLookupString(\^\fIevent_struct\fP, \fIbuffer_return\fP,
|
||||
\fIbytes_buffer\fP, \fIkeysym_return\fP, \fIstatus_in_out\fP\^)
|
||||
.br
|
||||
XKeyEvent *\fIevent_struct\fP\^;
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XMEvent.man,v 1.2 2001/01/27 18:20:01 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XMapEvent 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XMapEvent 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XMapEvent, XMappingEvent \- MapNotify and MappingNotify event structures
|
||||
.SH STRUCTURES
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XMREvent.man,v 1.2 2001/01/27 18:20:01 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XMapRequestEvent 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XMapRequestEvent 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XMapRequestEvent \- MapRequest event structure
|
||||
.SH STRUCTURES
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XMapWin.man,v 1.2 2001/01/27 18:20:01 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XMapWindow 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XMapWindow 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XMapWindow, XMapRaised, XMapSubwindows \- map windows
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XNEvent.man,v 1.2 2001/01/27 18:20:01 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XNextEvent 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XNextEvent 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XNextEvent, XPeekEvent, XWindowEvent, XCheckWindowEvent, XMaskEvent, XCheckMaskEvent, XCheckTypedEvent, XCheckTypedWindowEvent \- select events by type
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XNoOp.man,v 1.2 2001/01/27 18:20:01 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XNoOp 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XNoOp 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XNoOp \- No Operation
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XOpDsply.man,v 1.2 2001/01/27 18:20:01 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XOpenDisplay 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XOpenDisplay 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XOpenDisplay, XCloseDisplay \- connect or disconnect to X server
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XOpenIM.man,v 1.2 2001/01/27 18:20:02 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XOpenIM 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XOpenIM 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XOpenIM, XCloseIM, XSetIMValues, XGetIMValues, XDisplayOfIM, XLocaleOfIM, XRegisterIMInstantiateCallback, XUnregisterIMInstantiateCallback \- open, close, and otain input method information
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
.\" Copyright \(co 1985, 1986, 1987, 1988, 1989, 1990, 1991, 1994, 1996 X Consortium
|
||||
.\" Copyright \(co 2000 The XFree86 Project, Inc.
|
||||
.\"
|
||||
.\" Permission is hereby granted, free of charge, to any person obtaining
|
||||
.\" a copy of this software and associated documentation files (the
|
||||
|
|
@ -39,7 +40,9 @@
|
|||
.\" Digital and Tektronix makes no representations about the suitability
|
||||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XOpenOM.man,v 1.4 2001/02/09 03:47:45 tsi Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +141,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XOpenOM 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XOpenOM 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XOpenOM, XCloseOM, XSetOMValues, XGetOMValues, XDisplayOfOM, XLocaleOfOM \- open output methods
|
||||
.SH SYNTAX
|
||||
|
|
@ -241,7 +244,11 @@ function presents a variable argument list programming interface
|
|||
for setting properties or features of the specified output method.
|
||||
This function returns NULL if it succeeds;
|
||||
otherwise,
|
||||
it returns the name of the first argument that could not be obtained.
|
||||
it returns the name of the first argument that could not be set.
|
||||
Xlib does not attempt to set arguments from the supplied list that
|
||||
follow the failed argument;
|
||||
all arguments in the list preceding the failed argument have been set
|
||||
correctly.
|
||||
.LP
|
||||
No standard arguments are currently defined by Xlib.
|
||||
.LP
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XParGeom.man,v 1.3 2001/02/09 03:47:45 tsi Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XParseGeometry 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XParseGeometry 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XParseGeometry, XWMGeometry \- parse window geometry
|
||||
.SH SYNTAX
|
||||
|
|
@ -150,7 +152,7 @@ int XParseGeometry\^(\^\fIparsestring\fP\^, \fIx_return\fP\^, \fIy_return\fP\^,
|
|||
.br
|
||||
unsigned int *\fIwidth_return\fP\^, *\fIheight_return\fP\^;
|
||||
.LP
|
||||
int XWMGeometry\^(\^\fIdisplay\fP, \fIscreen\fP, \fIuser_geom\fP, \
|
||||
int XWMGeometry\^(\^\fIdisplay\fP, \fIscreen\fP, \fIuser_geom\fP,
|
||||
\fIdef_geom\fP, \fIbwidth\fP, \fIhints\fP, \fIx_return\fP, \fIy_return\fP,
|
||||
.br
|
||||
\fIwidth_return\fP, \fIheight_return\fP, \fIgravity_return\fP\^)
|
||||
|
|
|
|||
|
|
@ -40,6 +40,8 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XPolyReg.man,v 1.2 2001/01/27 18:20:02 dawes Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
.ds xL Xlib \- C Language X Interface
|
||||
|
|
@ -138,7 +140,7 @@
|
|||
.el .sp 10p
|
||||
..
|
||||
.ny0
|
||||
.TH XPolygonRegion 3X11 "Release 6.6" "X Version 11" "XLIB FUNCTIONS"
|
||||
.TH XPolygonRegion 3X11 __xorgversion__ "XLIB FUNCTIONS"
|
||||
.SH NAME
|
||||
XPolygonRegion, XClipBox \- generate regions
|
||||
.SH SYNTAX
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue