mirror of
https://gitlab.freedesktop.org/xorg/lib/libx11.git
synced 2025-12-20 08:10:12 +01:00
merge latest (4.3.99.16) from XFree86 (vendor) branch
This commit is contained in:
parent
400780e6a7
commit
0642e99ac0
395 changed files with 7149 additions and 14833 deletions
File diff suppressed because it is too large
Load diff
|
|
@ -27,7 +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 $ */
|
||||
/* $XFree86: xc/lib/X11/Xcms.h,v 1.8 2003/11/17 22:20:10 dawes Exp $ */
|
||||
#ifndef _XCMS_H_
|
||||
#define _XCMS_H_
|
||||
|
||||
|
|
@ -200,17 +200,14 @@ typedef struct _XcmsPerScrnInfo {
|
|||
typedef struct _XcmsCCC *XcmsCCC;
|
||||
|
||||
typedef Status (*XcmsCompressionProc)( /* Gamut Compression Proc */
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* colors_in_out */,
|
||||
unsigned int /* ncolors */,
|
||||
unsigned int /* index */,
|
||||
Bool* /* compression_flags_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
typedef Status (*XcmsWhiteAdjustProc)( /* White Point Adjust Proc */
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* initial_white_point*/,
|
||||
XcmsColor* /* target_white_point*/,
|
||||
|
|
@ -218,7 +215,6 @@ typedef Status (*XcmsWhiteAdjustProc)( /* White Point Adjust Proc */
|
|||
XcmsColor* /* colors_in_out */,
|
||||
unsigned int /* ncolors */,
|
||||
Bool* /* compression_flags_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
/*
|
||||
|
|
@ -239,17 +235,13 @@ typedef struct _XcmsCCC {
|
|||
} XcmsCCCRec;
|
||||
|
||||
typedef Status (*XcmsScreenInitProc)( /* Screen Initialization Proc */
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
int /* screen_number */,
|
||||
XcmsPerScrnInfo* /* screen_info */
|
||||
#endif
|
||||
);
|
||||
|
||||
typedef void (*XcmsScreenFreeProc)(
|
||||
#if NeedFunctionPrototypes
|
||||
XPointer /* screenData */
|
||||
#endif
|
||||
);
|
||||
|
||||
/*
|
||||
|
|
@ -271,14 +263,26 @@ typedef Status (*XcmsConversionProc)(XcmsCCC, XcmsColor *, unsigned int,
|
|||
* Until this is reworked, it's probably best to leave it unprotoized.
|
||||
* The code works regardless.
|
||||
*/
|
||||
typedef Status (*XcmsConversionProc)();
|
||||
typedef Status (*XcmsDDConversionProc)( /* using device-dependent version */
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* pcolors_in_out */,
|
||||
unsigned int /* ncolors */,
|
||||
Bool* /* pCompressed */
|
||||
);
|
||||
|
||||
typedef Status (*XcmsDIConversionProc)( /* using device-independent version */
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* white_point */,
|
||||
XcmsColor* /* pcolors_in_out */,
|
||||
unsigned int /* ncolors */
|
||||
);
|
||||
|
||||
typedef XcmsDIConversionProc XcmsConversionProc;
|
||||
typedef XcmsConversionProc *XcmsFuncListPtr;
|
||||
|
||||
typedef int (*XcmsParseStringProc)( /* Color String Parsing Proc */
|
||||
#if NeedFunctionPrototypes
|
||||
char* /* color_string */,
|
||||
XcmsColor* /* color_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
/*
|
||||
|
|
@ -286,7 +290,7 @@ typedef int (*XcmsParseStringProc)( /* Color String Parsing Proc */
|
|||
* or Device-Dependent)
|
||||
*/
|
||||
typedef struct _XcmsColorSpace {
|
||||
char *prefix; /* Prefix of string format. */
|
||||
const char *prefix; /* Prefix of string format. */
|
||||
XcmsColorFormat id; /* Format ID number. */
|
||||
XcmsParseStringProc parseString;
|
||||
/* String format parsing function */
|
||||
|
|
@ -333,120 +337,93 @@ typedef struct _XcmsFunctionSet {
|
|||
_XFUNCPROTOBEGIN
|
||||
|
||||
extern Status XcmsAddColorSpace (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsColorSpace* /* pColorSpace */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsAddFunctionSet (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsFunctionSet* /* functionSet */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsAllocColor (
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
Colormap /* colormap */,
|
||||
XcmsColor* /* color_in_out */,
|
||||
XcmsColorFormat /* result_format */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsAllocNamedColor (
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
Colormap /* colormap */,
|
||||
_Xconst char* /* color_string */,
|
||||
XcmsColor* /* color_scrn_return */,
|
||||
XcmsColor* /* color_exact_return */,
|
||||
XcmsColorFormat /* result_format */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern XcmsCCC XcmsCCCOfColormap (
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
Colormap /* colormap */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsCIELabClipab(
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* colors_in_out */,
|
||||
unsigned int /* ncolors */,
|
||||
unsigned int /* index */,
|
||||
Bool* /* compression_flags_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsCIELabClipL(
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* colors_in_out */,
|
||||
unsigned int /* ncolors */,
|
||||
unsigned int /* index */,
|
||||
Bool* /* compression_flags_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsCIELabClipLab(
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* colors_in_out */,
|
||||
unsigned int /* ncolors */,
|
||||
unsigned int /* index */,
|
||||
Bool* /* compression_flags_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsCIELabQueryMaxC (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsFloat /* hue_angle */,
|
||||
XcmsFloat /* L_star */,
|
||||
XcmsColor* /* color_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsCIELabQueryMaxL (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsFloat /* hue_angle */,
|
||||
XcmsFloat /* chroma */,
|
||||
XcmsColor* /* color_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsCIELabQueryMaxLC (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsFloat /* hue_angle */,
|
||||
XcmsColor* /* color_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsCIELabQueryMinL (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsFloat /* hue_angle */,
|
||||
XcmsFloat /* chroma */,
|
||||
XcmsColor* /* color_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsCIELabToCIEXYZ (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* white_point */,
|
||||
XcmsColor* /* colors */,
|
||||
unsigned int /* ncolors */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsCIELabWhiteShiftColors(
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* initial_white_point*/,
|
||||
XcmsColor* /* target_white_point*/,
|
||||
|
|
@ -454,85 +431,67 @@ extern Status XcmsCIELabWhiteShiftColors(
|
|||
XcmsColor* /* colors_in_out */,
|
||||
unsigned int /* ncolors */,
|
||||
Bool* /* compression_flags_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsCIELuvClipL(
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* colors_in_out */,
|
||||
unsigned int /* ncolors */,
|
||||
unsigned int /* index */,
|
||||
Bool* /* compression_flags_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsCIELuvClipLuv(
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* colors_in_out */,
|
||||
unsigned int /* ncolors */,
|
||||
unsigned int /* index */,
|
||||
Bool* /* compression_flags_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsCIELuvClipuv(
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* colors_in_out */,
|
||||
unsigned int /* ncolors */,
|
||||
unsigned int /* index */,
|
||||
Bool* /* compression_flags_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsCIELuvQueryMaxC (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsFloat /* hue_angle */,
|
||||
XcmsFloat /* L_star */,
|
||||
XcmsColor* /* color_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsCIELuvQueryMaxL (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsFloat /* hue_angle */,
|
||||
XcmsFloat /* chroma */,
|
||||
XcmsColor* /* color_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsCIELuvQueryMaxLC (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsFloat /* hue_angle */,
|
||||
XcmsColor* /* color_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsCIELuvQueryMinL (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsFloat /* hue_angle */,
|
||||
XcmsFloat /* chroma */,
|
||||
XcmsColor* /* color_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsCIELuvToCIEuvY (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* white_point */,
|
||||
XcmsColor* /* colors */,
|
||||
unsigned int /* ncolors */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsCIELuvWhiteShiftColors(
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* initial_white_point*/,
|
||||
XcmsColor* /* target_white_point*/,
|
||||
|
|
@ -540,99 +499,77 @@ extern Status XcmsCIELuvWhiteShiftColors(
|
|||
XcmsColor* /* colors_in_out */,
|
||||
unsigned int /* ncolors */,
|
||||
Bool* /* compression_flags_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsCIEXYZToCIELab (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* white_point */,
|
||||
XcmsColor* /* colors */,
|
||||
unsigned int /* ncolors */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsCIEXYZToCIEuvY (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* white_point */,
|
||||
XcmsColor* /* colors */,
|
||||
unsigned int /* ncolors */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsCIEXYZToCIExyY (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* white_point */,
|
||||
XcmsColor* /* colors */,
|
||||
unsigned int /* ncolors */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsCIEXYZToRGBi (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* colors */,
|
||||
unsigned int /* ncolors */,
|
||||
Bool* /* compression_flags_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsCIEuvYToCIELuv (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* white_point */,
|
||||
XcmsColor* /* colors */,
|
||||
unsigned int /* ncolors */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsCIEuvYToCIEXYZ (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* white_point */,
|
||||
XcmsColor* /* colors */,
|
||||
unsigned int /* ncolors */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsCIEuvYToTekHVC (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* white_point */,
|
||||
XcmsColor* /* colors */,
|
||||
unsigned int /* ncolors */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsCIExyYToCIEXYZ (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* white_point */,
|
||||
XcmsColor* /* colors */,
|
||||
unsigned int /* ncolors */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern XcmsColor *XcmsClientWhitePointOfCCC (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsConvertColors (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* colorArry_in_out */,
|
||||
unsigned int /* nColors */,
|
||||
XcmsColorFormat /* targetFormat */,
|
||||
Bool* /* compArry_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern XcmsCCC XcmsCreateCCC (
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
int /* screenNumber */,
|
||||
Visual* /* visual */,
|
||||
|
|
@ -641,283 +578,215 @@ extern XcmsCCC XcmsCreateCCC (
|
|||
XPointer /* gamutCompClientData */,
|
||||
XcmsWhiteAdjustProc /* whitePtAdjProc */,
|
||||
XPointer /* whitePtAdjClientData */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern XcmsCCC XcmsDefaultCCC (
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
int /* screenNumber */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Display *XcmsDisplayOfCCC (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern XcmsColorFormat XcmsFormatOfPrefix (
|
||||
#if NeedFunctionPrototypes
|
||||
char* /* prefix */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern void XcmsFreeCCC (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsLookupColor (
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
Colormap /* colormap */,
|
||||
_Xconst char* /* color_string */,
|
||||
XcmsColor* /* pColor_exact_in_out */,
|
||||
XcmsColor* /* pColor_scrn_in_out */,
|
||||
XcmsColorFormat /* result_format */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern char *XcmsPrefixOfFormat (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsColorFormat /* id */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsQueryBlack (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColorFormat /* target_format */,
|
||||
XcmsColor* /* color_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsQueryBlue (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColorFormat /* target_format */,
|
||||
XcmsColor* /* color_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsQueryColor (
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
Colormap /* colormap */,
|
||||
XcmsColor* /* pColor_in_out */,
|
||||
XcmsColorFormat /* result_format */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsQueryColors (
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
Colormap /* colormap */,
|
||||
XcmsColor* /* colorArry_in_out */,
|
||||
unsigned int /* nColors */,
|
||||
XcmsColorFormat /* result_format */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsQueryGreen (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColorFormat /* target_format */,
|
||||
XcmsColor* /* color_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsQueryRed (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColorFormat /* target_format */,
|
||||
XcmsColor* /* color_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsQueryWhite (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColorFormat /* target_format */,
|
||||
XcmsColor* /* color_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsRGBiToCIEXYZ (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* colors */,
|
||||
unsigned int /* ncolors */,
|
||||
Bool* /* compression_flags_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsRGBiToRGB (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* colors */,
|
||||
unsigned int /* ncolors */,
|
||||
Bool* /* compression_flags_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsRGBToRGBi (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* colors */,
|
||||
unsigned int /* ncolors */,
|
||||
Bool* /* compression_flags_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int XcmsScreenNumberOfCCC (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern XcmsColor *XcmsScreenWhitePointOfCCC (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern XcmsCCC XcmsSetCCCOfColormap(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
Colormap /* colormap */,
|
||||
XcmsCCC /* ccc */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern XcmsCompressionProc XcmsSetCompressionProc (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsCompressionProc /* compression_proc */,
|
||||
XPointer /* client_data */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern XcmsWhiteAdjustProc XcmsSetWhiteAdjustProc (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsWhiteAdjustProc /* white_adjust_proc */,
|
||||
XPointer /* client_data */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsSetWhitePoint (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* color */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsStoreColor (
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
Colormap /* colormap */,
|
||||
XcmsColor* /* pColor_in */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsStoreColors (
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
Colormap /* colormap */,
|
||||
XcmsColor* /* colorArry_in */,
|
||||
unsigned int /* nColors */,
|
||||
Bool* /* compArry_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsTekHVCClipC(
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* colors_in_out */,
|
||||
unsigned int /* ncolors */,
|
||||
unsigned int /* index */,
|
||||
Bool* /* compression_flags_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsTekHVCClipV(
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* colors_in_out */,
|
||||
unsigned int /* ncolors */,
|
||||
unsigned int /* index */,
|
||||
Bool* /* compression_flags_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsTekHVCClipVC(
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* colors_in_out */,
|
||||
unsigned int /* ncolors */,
|
||||
unsigned int /* index */,
|
||||
Bool* /* compression_flags_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsTekHVCQueryMaxC (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsFloat /* hue */,
|
||||
XcmsFloat /* value */,
|
||||
XcmsColor* /* color_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsTekHVCQueryMaxV (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsFloat /* hue */,
|
||||
XcmsFloat /* chroma */,
|
||||
XcmsColor* /* color_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsTekHVCQueryMaxVC (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsFloat /* hue */,
|
||||
XcmsColor* /* color_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsTekHVCQueryMaxVSamples (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsFloat /* hue */,
|
||||
XcmsColor* /* colors_return */,
|
||||
unsigned int /* nsamples */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsTekHVCQueryMinV (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsFloat /* hue */,
|
||||
XcmsFloat /* chroma */,
|
||||
XcmsColor* /* color_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsTekHVCToCIEuvY (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* white_point */,
|
||||
XcmsColor* /* colors */,
|
||||
unsigned int /* ncolors */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XcmsTekHVCWhiteShiftColors(
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */,
|
||||
XcmsColor* /* initial_white_point*/,
|
||||
XcmsColor* /* target_white_point*/,
|
||||
|
|
@ -925,13 +794,10 @@ extern Status XcmsTekHVCWhiteShiftColors(
|
|||
XcmsColor* /* colors_in_out */,
|
||||
unsigned int /* ncolors */,
|
||||
Bool* /* compression_flags_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Visual *XcmsVisualOfCCC (
|
||||
#if NeedFunctionPrototypes
|
||||
XcmsCCC /* ccc */
|
||||
#endif
|
||||
);
|
||||
|
||||
_XFUNCPROTOEND
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -27,7 +27,7 @@ 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 $ */
|
||||
/* $XFree86: xc/lib/X11/Xlibint.h,v 3.28 2003/11/17 22:20:11 dawes Exp $ */
|
||||
|
||||
#ifndef _XLIBINT_H_
|
||||
#define _XLIBINT_H_ 1
|
||||
|
|
@ -79,9 +79,7 @@ struct _XDisplay
|
|||
XID resource_id; /* allocator current ID */
|
||||
int resource_shift; /* allocator shift to correct bits */
|
||||
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 */
|
||||
|
|
@ -102,9 +100,7 @@ struct _XDisplay
|
|||
unsigned max_request_size; /* maximum number 32 bit words in request*/
|
||||
struct _XrmHashBucketRec *db;
|
||||
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 */
|
||||
|
|
@ -214,10 +210,8 @@ typedef struct _XSQEvent
|
|||
#define NEED_REPLIES
|
||||
#endif
|
||||
|
||||
#if NeedFunctionPrototypes /* prototypes require event type definitions */
|
||||
#define NEED_EVENTS
|
||||
#define NEED_REPLIES
|
||||
#endif
|
||||
#include <X11/Xproto.h>
|
||||
#ifdef __sgi
|
||||
#define _SGI_MP_SOURCE /* turn this on to get MP safe errno */
|
||||
|
|
@ -280,32 +274,24 @@ struct _XLockPtrs {
|
|||
|
||||
/* in XlibInt.c */
|
||||
extern void (*_XCreateMutex_fn)(
|
||||
#if NeedFunctionPrototypes
|
||||
LockInfoPtr /* lock */
|
||||
#endif
|
||||
);
|
||||
extern void (*_XFreeMutex_fn)(
|
||||
#if NeedFunctionPrototypes
|
||||
LockInfoPtr /* lock */
|
||||
#endif
|
||||
);
|
||||
extern void (*_XLockMutex_fn)(
|
||||
#if NeedFunctionPrototypes
|
||||
LockInfoPtr /* lock */
|
||||
#if defined(XTHREADS_WARN) || defined(XTHREADS_FILE_LINE)
|
||||
, char * /* file */
|
||||
, int /* line */
|
||||
#endif
|
||||
#endif
|
||||
);
|
||||
extern void (*_XUnlockMutex_fn)(
|
||||
#if NeedFunctionPrototypes
|
||||
LockInfoPtr /* lock */
|
||||
#if defined(XTHREADS_WARN) || defined(XTHREADS_FILE_LINE)
|
||||
, char * /* file */
|
||||
, int /* line */
|
||||
#endif
|
||||
#endif
|
||||
);
|
||||
|
||||
extern LockInfoPtr _Xglobal_lock;
|
||||
|
|
@ -631,6 +617,7 @@ extern void _XFlushGCCache(Display *dpy, GC gc);
|
|||
if (dpy->bufptr + (n) > dpy->bufmax) \
|
||||
_XFlush (dpy); \
|
||||
ptr = (type) dpy->bufptr; \
|
||||
(void)ptr; \
|
||||
dpy->bufptr += (n);
|
||||
|
||||
#ifdef WORD64
|
||||
|
|
@ -643,18 +630,14 @@ extern void _XFlushGCCache(Display *dpy, GC gc);
|
|||
#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))
|
||||
|
|
@ -755,13 +738,11 @@ typedef struct _XInternalAsync {
|
|||
* The handler returns True iff it handled this reply.
|
||||
*/
|
||||
Bool (*handler)(
|
||||
#if NeedNestedPrototypes
|
||||
Display* /* dpy */,
|
||||
xReply* /* rep */,
|
||||
char* /* buf */,
|
||||
int /* len */,
|
||||
XPointer /* data */
|
||||
#endif
|
||||
);
|
||||
XPointer data;
|
||||
} _XAsyncHandler;
|
||||
|
|
@ -785,15 +766,11 @@ extern void _XDeqAsyncHandler(Display *dpy, _XAsyncHandler *handler);
|
|||
}
|
||||
|
||||
typedef void (*FreeFuncType) (
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */
|
||||
#endif
|
||||
);
|
||||
|
||||
typedef int (*FreeModmapType) (
|
||||
#if NeedFunctionPrototypes
|
||||
XModifierKeymap* /* modmap */
|
||||
#endif
|
||||
);
|
||||
|
||||
/*
|
||||
|
|
@ -813,94 +790,72 @@ typedef struct _XFreeFuncs {
|
|||
|
||||
/* 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
|
||||
);
|
||||
|
||||
/*
|
||||
|
|
@ -930,87 +885,60 @@ typedef struct _XExten { /* private to extension mechanism */
|
|||
extern void Data(Display *dpy, char *data, long len);
|
||||
#endif
|
||||
extern int _XError(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
xError* /* rep */
|
||||
#endif
|
||||
);
|
||||
extern int _XIOError(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */
|
||||
#endif
|
||||
);
|
||||
extern int (*_XIOErrorFunction)(
|
||||
#if NeedNestedPrototypes
|
||||
Display* /* dpy */
|
||||
#endif
|
||||
);
|
||||
extern int (*_XErrorFunction)(
|
||||
#if NeedNestedPrototypes
|
||||
Display* /* dpy */,
|
||||
XErrorEvent* /* error_event */
|
||||
#endif
|
||||
);
|
||||
extern void _XEatData(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
unsigned long /* n */
|
||||
#endif
|
||||
);
|
||||
extern char *_XAllocScratch(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
unsigned long /* nbytes */
|
||||
#endif
|
||||
);
|
||||
extern char *_XAllocTemp(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
unsigned long /* nbytes */
|
||||
#endif
|
||||
);
|
||||
extern void _XFreeTemp(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
char* /* buf */,
|
||||
unsigned long /* nbytes */
|
||||
#endif
|
||||
);
|
||||
extern Visual *_XVIDtoVisual(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
VisualID /* id */
|
||||
#endif
|
||||
);
|
||||
extern unsigned long _XSetLastRequestRead(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
xGenericReply* /* rep */
|
||||
#endif
|
||||
);
|
||||
extern int _XGetHostname(
|
||||
#if NeedFunctionPrototypes
|
||||
char* /* buf */,
|
||||
int /* maxlen */
|
||||
#endif
|
||||
);
|
||||
extern Screen *_XScreenOfWindow(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
Window /* w */
|
||||
#endif
|
||||
);
|
||||
extern Bool _XAsyncErrorHandler(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
xReply* /* rep */,
|
||||
char* /* buf */,
|
||||
int /* len */,
|
||||
XPointer /* data */
|
||||
#endif
|
||||
);
|
||||
extern char *_XGetAsyncReply(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
char* /* replbuf */,
|
||||
xReply* /* rep */,
|
||||
|
|
@ -1018,7 +946,15 @@ extern char *_XGetAsyncReply(
|
|||
int /* len */,
|
||||
int /* extra */,
|
||||
Bool /* discard */
|
||||
#endif
|
||||
);
|
||||
extern void _XGetAsyncData(
|
||||
Display* /* dpy */,
|
||||
char * /* data */,
|
||||
char * /* buf */,
|
||||
int /* len */,
|
||||
int /* skip */,
|
||||
int /* datalen */,
|
||||
int /* discardtotal */
|
||||
);
|
||||
extern void _XGetAsyncData(
|
||||
#if NeedFunctionPrototypes
|
||||
|
|
@ -1032,62 +968,67 @@ extern void _XGetAsyncData(
|
|||
#endif
|
||||
);
|
||||
extern void _XFlush(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */
|
||||
#endif
|
||||
);
|
||||
extern int _XEventsQueued(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
int /* mode */
|
||||
#endif
|
||||
);
|
||||
extern void _XReadEvents(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */
|
||||
#endif
|
||||
);
|
||||
extern int _XRead(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
char* /* data */,
|
||||
long /* size */
|
||||
#endif
|
||||
);
|
||||
extern void _XReadPad(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
char* /* data */,
|
||||
long /* size */
|
||||
#endif
|
||||
);
|
||||
extern void _XSend(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
_Xconst char* /* data */,
|
||||
long /* size */
|
||||
#endif
|
||||
);
|
||||
extern Status _XReply(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
xReply* /* rep */,
|
||||
int /* extra */,
|
||||
Bool /* discard */
|
||||
#endif
|
||||
);
|
||||
extern void _XEnq(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
xEvent* /* event */
|
||||
#endif
|
||||
);
|
||||
extern void _XDeq(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
_XQEvent* /* prev */,
|
||||
_XQEvent* /* qelt */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Bool _XUnknownWireEvent(
|
||||
Display* /* dpy */,
|
||||
XEvent* /* re */,
|
||||
xEvent* /* event */
|
||||
);
|
||||
extern Status _XUnknownNativeEvent(
|
||||
Display* /* dpy */,
|
||||
XEvent* /* re */,
|
||||
xEvent* /* event */
|
||||
);
|
||||
|
||||
extern Bool _XWireToEvent(Display *dpy, XEvent *re, xEvent *event);
|
||||
extern Bool _XDefaultWireError(Display *display, XErrorEvent *he, xError *we);
|
||||
extern Bool _XPollfdCacheInit(Display *dpy);
|
||||
extern void _XPollfdCacheAdd(Display *dpy, int fd);
|
||||
extern void _XPollfdCacheDel(Display *dpy, int fd);
|
||||
extern XID _XAllocID(Display *dpy);
|
||||
extern void _XAllocIDs(Display *dpy, XID *ids, int count);
|
||||
|
||||
extern int _XFreeExtData(
|
||||
XExtData* /* extension */
|
||||
);
|
||||
|
||||
extern Bool _XUnknownWireEvent(
|
||||
|
|
@ -1118,285 +1059,195 @@ extern int _XFreeExtData(
|
|||
);
|
||||
|
||||
extern int (*XESetCreateGC(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
int /* extension */,
|
||||
int (*) (
|
||||
#if NeedNestedPrototypes
|
||||
Display* /* display */,
|
||||
GC /* gc */,
|
||||
XExtCodes* /* codes */
|
||||
#endif
|
||||
) /* proc */
|
||||
#endif
|
||||
))(
|
||||
#if NeedNestedPrototypes
|
||||
Display*, GC, XExtCodes*
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int (*XESetCopyGC(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
int /* extension */,
|
||||
int (*) (
|
||||
#if NeedNestedPrototypes
|
||||
Display* /* display */,
|
||||
GC /* gc */,
|
||||
XExtCodes* /* codes */
|
||||
#endif
|
||||
) /* proc */
|
||||
#endif
|
||||
))(
|
||||
#if NeedNestedPrototypes
|
||||
Display*, GC, XExtCodes*
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int (*XESetFlushGC(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
int /* extension */,
|
||||
int (*) (
|
||||
#if NeedNestedPrototypes
|
||||
Display* /* display */,
|
||||
GC /* gc */,
|
||||
XExtCodes* /* codes */
|
||||
#endif
|
||||
) /* proc */
|
||||
#endif
|
||||
))(
|
||||
#if NeedNestedPrototypes
|
||||
Display*, GC, XExtCodes*
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int (*XESetFreeGC(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
int /* extension */,
|
||||
int (*) (
|
||||
#if NeedNestedPrototypes
|
||||
Display* /* display */,
|
||||
GC /* gc */,
|
||||
XExtCodes* /* codes */
|
||||
#endif
|
||||
) /* proc */
|
||||
#endif
|
||||
))(
|
||||
#if NeedNestedPrototypes
|
||||
Display*, GC, XExtCodes*
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int (*XESetCreateFont(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
int /* extension */,
|
||||
int (*) (
|
||||
#if NeedNestedPrototypes
|
||||
Display* /* display */,
|
||||
XFontStruct* /* fs */,
|
||||
XExtCodes* /* codes */
|
||||
#endif
|
||||
) /* proc */
|
||||
#endif
|
||||
))(
|
||||
#if NeedNestedPrototypes
|
||||
Display*, XFontStruct*, XExtCodes*
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int (*XESetFreeFont(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
int /* extension */,
|
||||
int (*) (
|
||||
#if NeedNestedPrototypes
|
||||
Display* /* display */,
|
||||
XFontStruct* /* fs */,
|
||||
XExtCodes* /* codes */
|
||||
#endif
|
||||
) /* proc */
|
||||
#endif
|
||||
))(
|
||||
#if NeedNestedPrototypes
|
||||
Display*, XFontStruct*, XExtCodes*
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int (*XESetCloseDisplay(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
int /* extension */,
|
||||
int (*) (
|
||||
#if NeedNestedPrototypes
|
||||
Display* /* display */,
|
||||
XExtCodes* /* codes */
|
||||
#endif
|
||||
) /* proc */
|
||||
#endif
|
||||
))(
|
||||
#if NeedNestedPrototypes
|
||||
Display*, XExtCodes*
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int (*XESetError(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
int /* extension */,
|
||||
int (*) (
|
||||
#if NeedNestedPrototypes
|
||||
Display* /* display */,
|
||||
xError* /* err */,
|
||||
XExtCodes* /* codes */,
|
||||
int* /* ret_code */
|
||||
#endif
|
||||
) /* proc */
|
||||
#endif
|
||||
))(
|
||||
#if NeedNestedPrototypes
|
||||
Display*, xError*, XExtCodes*, int*
|
||||
#endif
|
||||
);
|
||||
|
||||
extern char* (*XESetErrorString(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
int /* extension */,
|
||||
char* (*) (
|
||||
#if NeedNestedPrototypes
|
||||
Display* /* display */,
|
||||
int /* code */,
|
||||
XExtCodes* /* codes */,
|
||||
char* /* buffer */,
|
||||
int /* nbytes */
|
||||
#endif
|
||||
) /* proc */
|
||||
#endif
|
||||
))(
|
||||
#if NeedNestedPrototypes
|
||||
Display*, int, XExtCodes*, char*, int
|
||||
#endif
|
||||
);
|
||||
|
||||
extern void (*XESetPrintErrorValues (
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
int /* extension */,
|
||||
void (*)(
|
||||
#if NeedNestedPrototypes
|
||||
Display* /* display */,
|
||||
XErrorEvent* /* ev */,
|
||||
void* /* fp */
|
||||
#endif
|
||||
) /* proc */
|
||||
#endif
|
||||
))(
|
||||
#if NeedNestedPrototypes
|
||||
Display*, XErrorEvent*, void*
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Bool (*XESetWireToEvent(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
int /* event_number */,
|
||||
Bool (*) (
|
||||
#if NeedNestedPrototypes
|
||||
Display* /* display */,
|
||||
XEvent* /* re */,
|
||||
xEvent* /* event */
|
||||
#endif
|
||||
) /* proc */
|
||||
#endif
|
||||
))(
|
||||
#if NeedNestedPrototypes
|
||||
Display*, XEvent*, xEvent*
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status (*XESetEventToWire(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
int /* event_number */,
|
||||
Status (*) (
|
||||
#if NeedNestedPrototypes
|
||||
Display* /* display */,
|
||||
XEvent* /* re */,
|
||||
xEvent* /* event */
|
||||
#endif
|
||||
) /* proc */
|
||||
#endif
|
||||
))(
|
||||
#if NeedNestedPrototypes
|
||||
Display*, XEvent*, xEvent*
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Bool (*XESetWireToError(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
int /* error_number */,
|
||||
Bool (*) (
|
||||
#if NeedNestedPrototypes
|
||||
Display* /* display */,
|
||||
XErrorEvent* /* he */,
|
||||
xError* /* we */
|
||||
#endif
|
||||
) /* proc */
|
||||
#endif
|
||||
))(
|
||||
#if NeedNestedPrototypes
|
||||
Display*, XErrorEvent*, xError*
|
||||
#endif
|
||||
);
|
||||
|
||||
extern void (*XESetBeforeFlush(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
int /* error_number */,
|
||||
void (*) (
|
||||
#if NeedNestedPrototypes
|
||||
Display* /* display */,
|
||||
XExtCodes* /* codes */,
|
||||
_Xconst char* /* data */,
|
||||
long /* len */
|
||||
#endif
|
||||
) /* proc */
|
||||
#endif
|
||||
))(
|
||||
#if NeedNestedPrototypes
|
||||
Display*, XExtCodes*, _Xconst char*, long
|
||||
#endif
|
||||
);
|
||||
|
||||
/* internal connections for IMs */
|
||||
|
||||
typedef void (*_XInternalConnectionProc)(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
int /* fd */,
|
||||
XPointer /* call_data */
|
||||
#endif
|
||||
);
|
||||
|
||||
|
||||
extern Status _XRegisterInternalConnection(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
int /* fd */,
|
||||
_XInternalConnectionProc /* callback */,
|
||||
XPointer /* call_data */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern void _XUnregisterInternalConnection(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
int /* fd */
|
||||
#endif
|
||||
);
|
||||
|
||||
/* Display structure has pointers to these */
|
||||
|
|
@ -1417,48 +1268,36 @@ struct _XConnWatchInfo { /* info from XAddConnectionWatch */
|
|||
|
||||
#ifdef __UNIXOS2__
|
||||
extern char* __XOS2RedirRoot(
|
||||
#if NeedFunctionPrototypes
|
||||
char*
|
||||
#endif
|
||||
);
|
||||
#endif
|
||||
|
||||
extern int _XTextHeight(
|
||||
#if NeedFunctionPrototypes
|
||||
XFontStruct* /* font_struct */,
|
||||
_Xconst char* /* string */,
|
||||
int /* count */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int _XTextHeight16(
|
||||
#if NeedFunctionPrototypes
|
||||
XFontStruct* /* font_struct */,
|
||||
_Xconst XChar2b* /* string */,
|
||||
int /* count */
|
||||
#endif
|
||||
);
|
||||
|
||||
#if defined(WIN32)
|
||||
|
||||
extern int _XOpenFile(
|
||||
#if NeedFunctionPrototypes
|
||||
_Xconst char* /* path */,
|
||||
int /* flags */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern void* _XFopenFile(
|
||||
#if NeedFunctionPrototypes
|
||||
_Xconst char* /* path */,
|
||||
_Xconst char* /* mode */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int _XAccessFile(
|
||||
#if NeedFunctionPrototypes
|
||||
_Xconst char* /* path */
|
||||
#endif
|
||||
);
|
||||
#else
|
||||
#define _XOpenFile(path,flags) open(path,flags)
|
||||
|
|
@ -1469,14 +1308,33 @@ extern int _XAccessFile(
|
|||
extern Status _XEventToWire(Display *dpy, XEvent *re, xEvent *event);
|
||||
|
||||
extern int _XF86LoadQueryLocaleFont(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* dpy */,
|
||||
_Xconst char* /* name*/,
|
||||
XFontStruct** /* xfp*/,
|
||||
Font* /* fidp */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern void _XProcessWindowAttributes (
|
||||
register Display *dpy,
|
||||
xChangeWindowAttributesReq *req,
|
||||
register unsigned long valuemask,
|
||||
register XSetWindowAttributes *attributes);
|
||||
|
||||
extern int _XDefaultError(
|
||||
Display *dpy,
|
||||
XErrorEvent *event);
|
||||
|
||||
extern int _XDefaultIOError(
|
||||
Display *dpy);
|
||||
|
||||
extern void _XSetClipRectangles (
|
||||
register Display *dpy,
|
||||
GC gc,
|
||||
int clip_x_origin, int clip_y_origin,
|
||||
XRectangle *rectangles,
|
||||
int n,
|
||||
int ordering);
|
||||
|
||||
_XFUNCPROTOEND
|
||||
|
||||
#endif /* _XLIBINT_H_ */
|
||||
|
|
|
|||
|
|
@ -26,7 +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 $ */
|
||||
/* $XFree86: xc/lib/X11/Xlocale.h,v 1.5 2003/11/17 22:20:11 dawes Exp $ */
|
||||
|
||||
#ifndef _XLOCALE_H_
|
||||
#define _XLOCALE_H_
|
||||
|
|
@ -47,10 +47,8 @@ from The Open Group.
|
|||
|
||||
_XFUNCPROTOBEGIN
|
||||
extern char *_Xsetlocale(
|
||||
#if NeedFunctionPrototypes
|
||||
int /* category */,
|
||||
_Xconst char* /* name */
|
||||
#endif
|
||||
);
|
||||
_XFUNCPROTOEND
|
||||
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ 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 $ */
|
||||
/* $XFree86: xc/lib/X11/Xresource.h,v 3.9 2003/11/17 22:20:11 dawes Exp $ */
|
||||
|
||||
#ifndef _XRESOURCE_H_
|
||||
#define _XRESOURCE_H_
|
||||
|
|
@ -74,9 +74,7 @@ _XFUNCPROTOBEGIN
|
|||
****************************************************************/
|
||||
|
||||
extern char *Xpermalloc(
|
||||
#if NeedFunctionPrototypes
|
||||
unsigned int /* size */
|
||||
#endif
|
||||
);
|
||||
|
||||
/****************************************************************
|
||||
|
|
@ -93,28 +91,20 @@ typedef char *XrmString;
|
|||
|
||||
/* find quark for string, create new quark if none already exists */
|
||||
extern XrmQuark XrmStringToQuark(
|
||||
#if NeedFunctionPrototypes
|
||||
_Xconst char* /* string */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern XrmQuark XrmPermStringToQuark(
|
||||
#if NeedFunctionPrototypes
|
||||
_Xconst char* /* string */
|
||||
#endif
|
||||
);
|
||||
|
||||
/* find string for quark */
|
||||
extern XrmString XrmQuarkToString(
|
||||
#if NeedFunctionPrototypes
|
||||
XrmQuark /* quark */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern XrmQuark XrmUniqueQuark(
|
||||
#if NeedFunctionPrototypes
|
||||
void
|
||||
#endif
|
||||
);
|
||||
|
||||
#define XrmStringsEqual(a1, a2) (strcmp(a1, a2) == 0)
|
||||
|
|
@ -129,18 +119,14 @@ extern XrmQuark XrmUniqueQuark(
|
|||
typedef enum {XrmBindTightly, XrmBindLoosely} XrmBinding, *XrmBindingList;
|
||||
|
||||
extern void XrmStringToQuarkList(
|
||||
#if NeedFunctionPrototypes
|
||||
_Xconst char* /* string */,
|
||||
XrmQuarkList /* quarks_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern void XrmStringToBindingQuarkList(
|
||||
#if NeedFunctionPrototypes
|
||||
_Xconst char* /* string */,
|
||||
XrmBindingList /* bindings_return */,
|
||||
XrmQuarkList /* quarks_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
/****************************************************************
|
||||
|
|
@ -192,92 +178,72 @@ typedef struct _XrmHashBucketRec *XrmDatabase;
|
|||
|
||||
|
||||
extern void XrmDestroyDatabase(
|
||||
#if NeedFunctionPrototypes
|
||||
XrmDatabase /* database */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern void XrmQPutResource(
|
||||
#if NeedFunctionPrototypes
|
||||
XrmDatabase* /* database */,
|
||||
XrmBindingList /* bindings */,
|
||||
XrmQuarkList /* quarks */,
|
||||
XrmRepresentation /* type */,
|
||||
XrmValue* /* value */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern void XrmPutResource(
|
||||
#if NeedFunctionPrototypes
|
||||
XrmDatabase* /* database */,
|
||||
_Xconst char* /* specifier */,
|
||||
_Xconst char* /* type */,
|
||||
XrmValue* /* value */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern void XrmQPutStringResource(
|
||||
#if NeedFunctionPrototypes
|
||||
XrmDatabase* /* database */,
|
||||
XrmBindingList /* bindings */,
|
||||
XrmQuarkList /* quarks */,
|
||||
_Xconst char* /* value */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern void XrmPutStringResource(
|
||||
#if NeedFunctionPrototypes
|
||||
XrmDatabase* /* database */,
|
||||
_Xconst char* /* specifier */,
|
||||
_Xconst char* /* value */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern void XrmPutLineResource(
|
||||
#if NeedFunctionPrototypes
|
||||
XrmDatabase* /* database */,
|
||||
_Xconst char* /* line */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Bool XrmQGetResource(
|
||||
#if NeedFunctionPrototypes
|
||||
XrmDatabase /* database */,
|
||||
XrmNameList /* quark_name */,
|
||||
XrmClassList /* quark_class */,
|
||||
XrmRepresentation* /* quark_type_return */,
|
||||
XrmValue* /* value_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Bool XrmGetResource(
|
||||
#if NeedFunctionPrototypes
|
||||
XrmDatabase /* database */,
|
||||
_Xconst char* /* str_name */,
|
||||
_Xconst char* /* str_class */,
|
||||
char** /* str_type_return */,
|
||||
XrmValue* /* value_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Bool XrmQGetSearchList(
|
||||
#if NeedFunctionPrototypes
|
||||
XrmDatabase /* database */,
|
||||
XrmNameList /* names */,
|
||||
XrmClassList /* classes */,
|
||||
XrmSearchList /* list_return */,
|
||||
int /* list_length */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Bool XrmQGetSearchResource(
|
||||
#if NeedFunctionPrototypes
|
||||
XrmSearchList /* list */,
|
||||
XrmName /* name */,
|
||||
XrmClass /* class */,
|
||||
XrmRepresentation* /* type_return */,
|
||||
XrmValue* /* value_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
/****************************************************************
|
||||
|
|
@ -289,89 +255,67 @@ extern Bool XrmQGetSearchResource(
|
|||
#ifndef _XP_PRINT_SERVER_
|
||||
|
||||
extern void XrmSetDatabase(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
XrmDatabase /* database */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern XrmDatabase XrmGetDatabase(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */
|
||||
#endif
|
||||
);
|
||||
|
||||
#endif /* !_XP_PRINT_SERVER_ */
|
||||
|
||||
extern XrmDatabase XrmGetFileDatabase(
|
||||
#if NeedFunctionPrototypes
|
||||
_Xconst char* /* filename */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XrmCombineFileDatabase(
|
||||
#if NeedFunctionPrototypes
|
||||
_Xconst char* /* filename */,
|
||||
XrmDatabase* /* target */,
|
||||
Bool /* override */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern XrmDatabase XrmGetStringDatabase(
|
||||
#if NeedFunctionPrototypes
|
||||
_Xconst char* /* data */ /* null terminated string */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern void XrmPutFileDatabase(
|
||||
#if NeedFunctionPrototypes
|
||||
XrmDatabase /* database */,
|
||||
_Xconst char* /* filename */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern void XrmMergeDatabases(
|
||||
#if NeedFunctionPrototypes
|
||||
XrmDatabase /* source_db */,
|
||||
XrmDatabase* /* target_db */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern void XrmCombineDatabase(
|
||||
#if NeedFunctionPrototypes
|
||||
XrmDatabase /* source_db */,
|
||||
XrmDatabase* /* target_db */,
|
||||
Bool /* override */
|
||||
#endif
|
||||
);
|
||||
|
||||
#define XrmEnumAllLevels 0
|
||||
#define XrmEnumOneLevel 1
|
||||
|
||||
extern Bool XrmEnumerateDatabase(
|
||||
#if NeedFunctionPrototypes
|
||||
XrmDatabase /* db */,
|
||||
XrmNameList /* name_prefix */,
|
||||
XrmClassList /* class_prefix */,
|
||||
int /* mode */,
|
||||
Bool (*)(
|
||||
#if NeedNestedPrototypes
|
||||
XrmDatabase* /* db */,
|
||||
XrmBindingList /* bindings */,
|
||||
XrmQuarkList /* quarks */,
|
||||
XrmRepresentation* /* type */,
|
||||
XrmValue* /* value */,
|
||||
XPointer /* closure */
|
||||
#endif
|
||||
) /* proc */,
|
||||
XPointer /* closure */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern const char *XrmLocaleOfDatabase(
|
||||
#if NeedFunctionPrototypes
|
||||
XrmDatabase /* database */
|
||||
#endif
|
||||
);
|
||||
|
||||
|
||||
|
|
@ -402,14 +346,12 @@ typedef struct {
|
|||
|
||||
|
||||
extern void XrmParseCommand(
|
||||
#if NeedFunctionPrototypes
|
||||
XrmDatabase* /* database */,
|
||||
XrmOptionDescList /* table */,
|
||||
int /* table_count */,
|
||||
_Xconst char* /* name */,
|
||||
int* /* argc_in_out */,
|
||||
char** /* argv_in_out */
|
||||
#endif
|
||||
);
|
||||
|
||||
_XFUNCPROTOEND
|
||||
|
|
|
|||
|
|
@ -46,7 +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 $ */
|
||||
/* $XFree86: xc/lib/X11/Xutil.h,v 3.7 2003/11/17 22:20:11 dawes Exp $ */
|
||||
|
||||
#ifndef _XUTIL_H_
|
||||
#define _XUTIL_H_
|
||||
|
|
@ -184,6 +184,24 @@ typedef struct {
|
|||
char *res_class;
|
||||
} XClassHint;
|
||||
|
||||
#ifdef XUTIL_DEFINE_FUNCTIONS
|
||||
extern int XDestroyImage(
|
||||
XImage *ximage);
|
||||
extern unsigned long XGetPixel(
|
||||
XImage *ximage,
|
||||
int x, int y);
|
||||
extern int XPutPixel(
|
||||
XImage *ximage,
|
||||
int x, int y,
|
||||
unsigned long pixel);
|
||||
extern XImage *XSubImage(
|
||||
XImage *ximage,
|
||||
int x, int y,
|
||||
unsigned int width, unsigned int height);
|
||||
extern int XAddPixel(
|
||||
XImage *ximage,
|
||||
long value);
|
||||
#else
|
||||
/*
|
||||
* These macros are used to give some sugar to the image routines so that
|
||||
* naive people are more comfortable with them.
|
||||
|
|
@ -198,6 +216,7 @@ typedef struct {
|
|||
((*((ximage)->f.sub_image))((ximage), (x), (y), (width), (height)))
|
||||
#define XAddPixel(ximage, value) \
|
||||
((*((ximage)->f.add_pixel))((ximage), (value)))
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Compose sequence status structure, used in calling XLookupString.
|
||||
|
|
@ -331,340 +350,257 @@ _XFUNCPROTOBEGIN
|
|||
/* The following declarations are alphabetized. */
|
||||
|
||||
extern XClassHint *XAllocClassHint (
|
||||
#if NeedFunctionPrototypes
|
||||
void
|
||||
#endif
|
||||
);
|
||||
|
||||
extern XIconSize *XAllocIconSize (
|
||||
#if NeedFunctionPrototypes
|
||||
void
|
||||
#endif
|
||||
);
|
||||
|
||||
extern XSizeHints *XAllocSizeHints (
|
||||
#if NeedFunctionPrototypes
|
||||
void
|
||||
#endif
|
||||
);
|
||||
|
||||
extern XStandardColormap *XAllocStandardColormap (
|
||||
#if NeedFunctionPrototypes
|
||||
void
|
||||
#endif
|
||||
);
|
||||
|
||||
extern XWMHints *XAllocWMHints (
|
||||
#if NeedFunctionPrototypes
|
||||
void
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int XClipBox(
|
||||
#if NeedFunctionPrototypes
|
||||
Region /* r */,
|
||||
XRectangle* /* rect_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Region XCreateRegion(
|
||||
#if NeedFunctionPrototypes
|
||||
void
|
||||
#endif
|
||||
);
|
||||
|
||||
extern const char *XDefaultString (void);
|
||||
|
||||
extern int XDeleteContext(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
XID /* rid */,
|
||||
XContext /* context */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int XDestroyRegion(
|
||||
#if NeedFunctionPrototypes
|
||||
Region /* r */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int XEmptyRegion(
|
||||
#if NeedFunctionPrototypes
|
||||
Region /* r */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int XEqualRegion(
|
||||
#if NeedFunctionPrototypes
|
||||
Region /* r1 */,
|
||||
Region /* r2 */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int XFindContext(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
XID /* rid */,
|
||||
XContext /* context */,
|
||||
XPointer* /* data_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XGetClassHint(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */,
|
||||
XClassHint* /* class_hints_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XGetIconSizes(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */,
|
||||
XIconSize** /* size_list_return */,
|
||||
int* /* count_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XGetNormalHints(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */,
|
||||
XSizeHints* /* hints_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XGetRGBColormaps(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */,
|
||||
XStandardColormap** /* stdcmap_return */,
|
||||
int* /* count_return */,
|
||||
Atom /* property */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XGetSizeHints(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */,
|
||||
XSizeHints* /* hints_return */,
|
||||
Atom /* property */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XGetStandardColormap(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */,
|
||||
XStandardColormap* /* colormap_return */,
|
||||
Atom /* property */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XGetTextProperty(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* window */,
|
||||
XTextProperty* /* text_prop_return */,
|
||||
Atom /* property */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern XVisualInfo *XGetVisualInfo(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
long /* vinfo_mask */,
|
||||
XVisualInfo* /* vinfo_template */,
|
||||
int* /* nitems_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XGetWMClientMachine(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */,
|
||||
XTextProperty* /* text_prop_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern XWMHints *XGetWMHints(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XGetWMIconName(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */,
|
||||
XTextProperty* /* text_prop_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XGetWMName(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */,
|
||||
XTextProperty* /* text_prop_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XGetWMNormalHints(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */,
|
||||
XSizeHints* /* hints_return */,
|
||||
long* /* supplied_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XGetWMSizeHints(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */,
|
||||
XSizeHints* /* hints_return */,
|
||||
long* /* supplied_return */,
|
||||
Atom /* property */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XGetZoomHints(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */,
|
||||
XSizeHints* /* zhints_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int XIntersectRegion(
|
||||
#if NeedFunctionPrototypes
|
||||
Region /* sra */,
|
||||
Region /* srb */,
|
||||
Region /* dr_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern void XConvertCase(
|
||||
#if NeedFunctionPrototypes
|
||||
KeySym /* sym */,
|
||||
KeySym* /* lower */,
|
||||
KeySym* /* upper */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int XLookupString(
|
||||
#if NeedFunctionPrototypes
|
||||
XKeyEvent* /* event_struct */,
|
||||
char* /* buffer_return */,
|
||||
int /* bytes_buffer */,
|
||||
KeySym* /* keysym_return */,
|
||||
XComposeStatus* /* status_in_out */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XMatchVisualInfo(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
int /* screen */,
|
||||
int /* depth */,
|
||||
int /* class */,
|
||||
XVisualInfo* /* vinfo_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int XOffsetRegion(
|
||||
#if NeedFunctionPrototypes
|
||||
Region /* r */,
|
||||
int /* dx */,
|
||||
int /* dy */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Bool XPointInRegion(
|
||||
#if NeedFunctionPrototypes
|
||||
Region /* r */,
|
||||
int /* x */,
|
||||
int /* y */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Region XPolygonRegion(
|
||||
#if NeedFunctionPrototypes
|
||||
XPoint* /* points */,
|
||||
int /* n */,
|
||||
int /* fill_rule */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int XRectInRegion(
|
||||
#if NeedFunctionPrototypes
|
||||
Region /* r */,
|
||||
int /* x */,
|
||||
int /* y */,
|
||||
unsigned int /* width */,
|
||||
unsigned int /* height */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int XSaveContext(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
XID /* rid */,
|
||||
XContext /* context */,
|
||||
_Xconst char* /* data */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int XSetClassHint(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */,
|
||||
XClassHint* /* class_hints */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int XSetIconSizes(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */,
|
||||
XIconSize* /* size_list */,
|
||||
int /* count */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int XSetNormalHints(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */,
|
||||
XSizeHints* /* hints */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern void XSetRGBColormaps(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */,
|
||||
XStandardColormap* /* stdcmaps */,
|
||||
int /* count */,
|
||||
Atom /* property */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int XSetSizeHints(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */,
|
||||
XSizeHints* /* hints */,
|
||||
Atom /* property */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int XSetStandardProperties(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */,
|
||||
_Xconst char* /* window_name */,
|
||||
|
|
@ -673,60 +609,46 @@ extern int XSetStandardProperties(
|
|||
char** /* argv */,
|
||||
int /* argc */,
|
||||
XSizeHints* /* hints */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern void XSetTextProperty(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */,
|
||||
XTextProperty* /* text_prop */,
|
||||
Atom /* property */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern void XSetWMClientMachine(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */,
|
||||
XTextProperty* /* text_prop */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int XSetWMHints(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */,
|
||||
XWMHints* /* wm_hints */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern void XSetWMIconName(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */,
|
||||
XTextProperty* /* text_prop */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern void XSetWMName(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */,
|
||||
XTextProperty* /* text_prop */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern void XSetWMNormalHints(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */,
|
||||
XSizeHints* /* hints */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern void XSetWMProperties(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */,
|
||||
XTextProperty* /* window_name */,
|
||||
|
|
@ -736,11 +658,9 @@ extern void XSetWMProperties(
|
|||
XSizeHints* /* normal_hints */,
|
||||
XWMHints* /* wm_hints */,
|
||||
XClassHint* /* class_hints */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern void XmbSetWMProperties(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */,
|
||||
_Xconst char* /* window_name */,
|
||||
|
|
@ -750,7 +670,18 @@ extern void XmbSetWMProperties(
|
|||
XSizeHints* /* normal_hints */,
|
||||
XWMHints* /* wm_hints */,
|
||||
XClassHint* /* class_hints */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern void Xutf8SetWMProperties(
|
||||
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 */
|
||||
);
|
||||
|
||||
extern void Xutf8SetWMProperties(
|
||||
|
|
@ -768,61 +699,47 @@ extern void Xutf8SetWMProperties(
|
|||
);
|
||||
|
||||
extern void XSetWMSizeHints(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */,
|
||||
XSizeHints* /* hints */,
|
||||
Atom /* property */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int XSetRegion(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
GC /* gc */,
|
||||
Region /* r */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern void XSetStandardColormap(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */,
|
||||
XStandardColormap* /* colormap */,
|
||||
Atom /* property */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int XSetZoomHints(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
Window /* w */,
|
||||
XSizeHints* /* zhints */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int XShrinkRegion(
|
||||
#if NeedFunctionPrototypes
|
||||
Region /* r */,
|
||||
int /* dx */,
|
||||
int /* dy */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern Status XStringListToTextProperty(
|
||||
#if NeedFunctionPrototypes
|
||||
char** /* list */,
|
||||
int /* count */,
|
||||
XTextProperty* /* text_prop_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int XSubtractRegion(
|
||||
#if NeedFunctionPrototypes
|
||||
Region /* sra */,
|
||||
Region /* srb */,
|
||||
Region /* dr_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int XmbTextListToTextProperty(
|
||||
|
|
@ -854,11 +771,9 @@ extern void XwcFreeStringList(
|
|||
);
|
||||
|
||||
extern Status XTextPropertyToStringList(
|
||||
#if NeedFunctionPrototypes
|
||||
XTextProperty* /* text_prop */,
|
||||
char*** /* list_return */,
|
||||
int* /* count_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int XmbTextPropertyToTextList(
|
||||
|
|
@ -883,23 +798,18 @@ extern int Xutf8TextPropertyToTextList(
|
|||
);
|
||||
|
||||
extern int XUnionRectWithRegion(
|
||||
#if NeedFunctionPrototypes
|
||||
XRectangle* /* rectangle */,
|
||||
Region /* src_region */,
|
||||
Region /* dest_region_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int XUnionRegion(
|
||||
#if NeedFunctionPrototypes
|
||||
Region /* sra */,
|
||||
Region /* srb */,
|
||||
Region /* dr_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int XWMGeometry(
|
||||
#if NeedFunctionPrototypes
|
||||
Display* /* display */,
|
||||
int /* screen_number */,
|
||||
_Xconst char* /* user_geometry */,
|
||||
|
|
@ -911,15 +821,12 @@ extern int XWMGeometry(
|
|||
int* /* width_return */,
|
||||
int* /* height_return */,
|
||||
int* /* gravity_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
extern int XXorRegion(
|
||||
#if NeedFunctionPrototypes
|
||||
Region /* sra */,
|
||||
Region /* srb */,
|
||||
Region /* dr_return */
|
||||
#endif
|
||||
);
|
||||
|
||||
_XFUNCPROTOEND
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/AllPlanes.man,v 1.3 2003/04/28 22:17:53 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,67 +144,63 @@
|
|||
.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
|
||||
AllPlanes
|
||||
.LP
|
||||
BlackPixel\^(\^\fIdisplay\fP\^, \^\fIscreen_number\fP\^)
|
||||
.LP
|
||||
WhitePixel\^(\^\fIdisplay\fP\^, \^\fIscreen_number\fP\^)
|
||||
.LP
|
||||
ConnectionNumber\^(\^\fIdisplay\fP\^)
|
||||
.LP
|
||||
DefaultColormap\^(\^\fIdisplay\fP\^, \^\fIscreen_number\fP\^)
|
||||
.LP
|
||||
DefaultDepth\^(\^\fIdisplay\fP\^, \^\fIscreen_number\fP\^)
|
||||
.LP
|
||||
int *XListDepths\^(\^\fIdisplay\fP, \fIscreen_number\fP, \fIcount_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP;
|
||||
.br
|
||||
int \fIscreen_number\fP;
|
||||
.br
|
||||
int *\fIcount_return\fP;
|
||||
.LP
|
||||
DefaultGC\^(\^\fIdisplay\fP\^, \^\fIscreen_number\fP\^)
|
||||
.LP
|
||||
DefaultRootWindow\^(\^\fIdisplay\fP\^)
|
||||
.LP
|
||||
DefaultScreenOfDisplay\^(\^\fIdisplay\fP\^)
|
||||
.LP
|
||||
DefaultScreen\^(\^\fIdisplay\fP\^)
|
||||
.LP
|
||||
DefaultVisual\^(\^\fIdisplay\fP\^, \^\fIscreen_number\fP\^)
|
||||
.LP
|
||||
DisplayCells\^(\^\fIdisplay\fP\^, \^\fIscreen_number\fP\^)
|
||||
.LP
|
||||
DisplayPlanes\^(\^\fIdisplay\fP\^, \^\fIscreen_number\fP\^)
|
||||
.LP
|
||||
DisplayString\^(\^\fIdisplay\fP\^)
|
||||
.LP
|
||||
long XMaxRequestSize(\^\fIdisplay\fP\^)
|
||||
Display *\fIdisplay\fP\^;
|
||||
.LP
|
||||
long XExtendedMaxRequestSize(\^\fIdisplay\fP\^)
|
||||
Display *\fIdisplay\fP\^;
|
||||
.LP
|
||||
LastKnownRequestProcessed\^(\^\fIdisplay\fP\^)
|
||||
.LP
|
||||
NextRequest\^(\^\fIdisplay\fP\^)
|
||||
.LP
|
||||
ProtocolVersion\^(\^\fIdisplay\fP\^)
|
||||
.LP
|
||||
ProtocolRevision\^(\^\fIdisplay\fP\^)
|
||||
.LP
|
||||
QLength\^(\^\fIdisplay\fP\^)
|
||||
.LP
|
||||
RootWindow\^(\^\fIdisplay\fP\^, \^\fIscreen_number\fP\^)
|
||||
.LP
|
||||
ScreenCount\^(\^\fIdisplay\fP\^)
|
||||
.LP
|
||||
ScreenOfDisplay\^(\^\fIdisplay\fP, \fIscreen_number\fP\^)
|
||||
.LP
|
||||
ServerVendor\^(\^\fIdisplay\fP\^)
|
||||
.LP
|
||||
VendorRelease\^(\^\fIdisplay\fP\^)
|
||||
unsigned long AllPlanes;
|
||||
.HP
|
||||
unsigned long BlackPixel\^(\^Display *\fIdisplay\fP\^, int \^\fIscreen_number\fP\^);
|
||||
.HP
|
||||
unsigned long WhitePixel\^(\^Display *\fIdisplay\fP\^, int \^\fIscreen_number\fP\^);
|
||||
.HP
|
||||
int ConnectionNumber\^(\^Display *\fIdisplay\fP\^);
|
||||
.HP
|
||||
Colormap DefaultColormap\^(\^Display *\fIdisplay\fP\^,
|
||||
\^int \fIscreen_number\fP\^);
|
||||
.HP
|
||||
int DefaultDepth\^(\^Display *\fIdisplay\fP\^, \^int \fIscreen_number\fP\^);
|
||||
.HP
|
||||
int *XListDepths\^(\^Display *\fIdisplay\fP, int \fIscreen_number\fP, int
|
||||
\fIcount_return\fP\^);
|
||||
.HP
|
||||
GC DefaultGC\^(\^Display *\fIdisplay\fP\^, \^int \fIscreen_number\fP\^);
|
||||
.HP
|
||||
Window DefaultRootWindow\^(\^Display *\fIdisplay\fP\^);
|
||||
.HP
|
||||
Screen *DefaultScreenOfDisplay\^(\^Display *\fIdisplay\fP\^);
|
||||
.HP
|
||||
int DefaultScreen\^(\^Display *\fIdisplay\fP\^);
|
||||
.HP
|
||||
Visual *DefaultVisual\^(\^Display *\fIdisplay\fP\^, \^int
|
||||
\fIscreen_number\fP\^);
|
||||
.HP
|
||||
int DisplayCells\^(\^Display *\fIdisplay\fP\^, \^int \fIscreen_number\fP\^);
|
||||
.HP
|
||||
int DisplayPlanes\^(\^Display *\fIdisplay\fP\^, \^int \fIscreen_number\fP\^);
|
||||
.HP
|
||||
char *DisplayString\^(\^Display *\fIdisplay\fP\^);
|
||||
.HP
|
||||
long XMaxRequestSize(\^Display *\fIdisplay\fP\^)
|
||||
.HP
|
||||
long XExtendedMaxRequestSize(\^Display *\fIdisplay\fP\^)
|
||||
.HP
|
||||
unsigned long LastKnownRequestProcessed\^(\^Display *\fIdisplay\fP\^);
|
||||
.HP
|
||||
unsigned long NextRequest\^(\^Display *\fIdisplay\fP\^);
|
||||
.HP
|
||||
int ProtocolVersion\^(\^Display *\fIdisplay\fP\^);
|
||||
.HP
|
||||
int ProtocolRevision\^(\^Display *\fIdisplay\fP\^);
|
||||
.HP
|
||||
int QLength\^(\^Display *\fIdisplay\fP\^);
|
||||
.HP
|
||||
Window RootWindow\^(\^Display *\fIdisplay\fP\^, \^int \fIscreen_number\fP\^);
|
||||
.HP
|
||||
int ScreenCount\^(\^Display *\fIdisplay\fP\^);
|
||||
.HP
|
||||
Screen *ScreenOfDisplay\^(\^Display *\fIdisplay\fP, int
|
||||
\fIscreen_number\fP\^);
|
||||
.HP
|
||||
char *ServerVendor\^(\^Display *\fIdisplay\fP\^)
|
||||
.HP
|
||||
int VendorRelease\^(\^Display *\fIdisplay\fP\^)
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/BlkPScrn.man,v 1.3 2003/04/28 22:17:53 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,47 +144,46 @@
|
|||
.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
|
||||
BlackPixelOfScreen\^(\^\fIscreen\fP\^)
|
||||
.LP
|
||||
WhitePixelOfScreen\^(\^\fIscreen\fP\^)
|
||||
.LP
|
||||
CellsOfScreen\^(\^\fIscreen\fP\^)
|
||||
.LP
|
||||
DefaultColormapOfScreen\^(\^\fIscreen\fP\^)
|
||||
.LP
|
||||
DefaultDepthOfScreen\^(\^\fIscreen\fP\^)
|
||||
.LP
|
||||
DefaultGCOfScreen\^(\^\fIscreen\fP\^)
|
||||
.LP
|
||||
DefaultVisualOfScreen\^(\^\fIscreen\fP\^)
|
||||
.LP
|
||||
DoesBackingStore\^(\^\fIscreen\fP\^)
|
||||
.LP
|
||||
DoesSaveUnders\^(\^\fIscreen\fP\^)
|
||||
.LP
|
||||
DisplayOfScreen\^(\^\fIscreen\fP\^)
|
||||
.LP
|
||||
int XScreenNumberOfScreen\^(\^\fIscreen\fP\^)
|
||||
.br
|
||||
Screen *\fIscreen\fP\^;
|
||||
.LP
|
||||
EventMaskOfScreen\^(\^\fIscreen\fP\^)
|
||||
.LP
|
||||
HeightOfScreen\^(\^\fIscreen\fP\^)
|
||||
.LP
|
||||
HeightMMOfScreen\^(\^\fIscreen\fP\^)
|
||||
.LP
|
||||
MaxCmapsOfScreen\^(\^\fIscreen\fP\^)
|
||||
.LP
|
||||
MinCmapsOfScreen\^(\^\fIscreen\fP\^)
|
||||
.LP
|
||||
PlanesOfScreen\^(\^\fIscreen\fP\^)
|
||||
.LP
|
||||
RootWindowOfScreen\^(\^\fIscreen\fP\^)
|
||||
.LP
|
||||
WidthOfScreen\^(\^\fIscreen\fP\^)
|
||||
.LP
|
||||
WidthMMOfScreen\^(\^\fIscreen\fP\^)
|
||||
.HP
|
||||
unsigned long BlackPixelOfScreen\^(\^Screen *\fIscreen\fP\^);
|
||||
.HP
|
||||
unsigned long WhitePixelOfScreen\^(\^Screen *\fIscreen\fP\^);
|
||||
.HP
|
||||
int CellsOfScreen\^(\^Screen *\fIscreen\fP\^);
|
||||
.HP
|
||||
Colormap DefaultColormapOfScreen\^(\^Screen *\fIscreen\fP\^);
|
||||
.HP
|
||||
int DefaultDepthOfScreen\^(\^Screen *\fIscreen\fP\^);
|
||||
.HP
|
||||
GC DefaultGCOfScreen\^(\^Screen *\fIscreen\fP\^);
|
||||
.HP
|
||||
Visual *DefaultVisualOfScreen\^(\^Screen *\fIscreen\fP\^);
|
||||
.HP
|
||||
int DoesBackingStore\^(\^Screen *\fIscreen\fP\^);
|
||||
.HP
|
||||
Bool DoesSaveUnders\^(\^Screen *\fIscreen\fP\^);
|
||||
.HP
|
||||
Display *DisplayOfScreen\^(\^Screen *\fIscreen\fP\^);
|
||||
.HP
|
||||
int XScreenNumberOfScreen\^(\^Screen *\fIscreen\fP\^);
|
||||
.HP
|
||||
long EventMaskOfScreen\^(\^Screen *\fIscreen\fP\^);
|
||||
.HP
|
||||
int HeightOfScreen\^(\^Screen *\fIscreen\fP\^);
|
||||
.HP
|
||||
int HeightMMOfScreen\^(\^Screen *\fIscreen\fP\^);
|
||||
.HP
|
||||
int MaxCmapsOfScreen\^(\^Screen *\fIscreen\fP\^);
|
||||
.HP
|
||||
int MinCmapsOfScreen\^(\^Screen *\fIscreen\fP\^);
|
||||
.HP
|
||||
int PlanesOfScreen\^(\^Screen *\fIscreen\fP\^);
|
||||
.HP
|
||||
Window RootWindowOfScreen\^(\^Screen *\fIscreen\fP\^);
|
||||
.HP
|
||||
int WidthOfScreen\^(\^Screen *\fIscreen\fP\^);
|
||||
.HP
|
||||
int WidthMMOfScreen\^(\^Screen *\fIscreen\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIscreen\fP 1i
|
||||
Specifies the appropriate
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/Dis3C.man,v 1.3 2003/04/28 22:17:53 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,25 +144,16 @@
|
|||
.SH NAME
|
||||
DisplayOfCCC, VisualOfCCC, ScreenNumberOfCCC, ScreenWhitePointOfCCC, ClientWhitePointOfCCC \- Color Conversion Context macros
|
||||
.SH SYNTAX
|
||||
DisplayOfCCC\^(\^\fIccc\fP\^)
|
||||
.br
|
||||
XcmsCCC \fIccc\fP\^;
|
||||
.LP
|
||||
VisualOfCCC\^(\^\fIccc\fP\^)
|
||||
.br
|
||||
XcmsCCC \fIccc\fP\^;
|
||||
.LP
|
||||
ScreenNumberOfCCC\^(\^\fIccc\fP\^)
|
||||
.br
|
||||
XcmsCCC \fIccc\fP\^;
|
||||
.LP
|
||||
ScreenWhitePointOfCCC\^(\^\fIccc\fP\^)
|
||||
.br
|
||||
XcmsCCC \fIccc\fP\^;
|
||||
.LP
|
||||
ClientWhitePointOfCCC\^(\^\fIccc\fP\^)
|
||||
.br
|
||||
XcmsCCC \fIccc\fP\^;
|
||||
.HP
|
||||
Display *DisplayOfCCC\^(\^XcmsCCC \fIccc\fP\^);
|
||||
.HP
|
||||
Visual *VisualOfCCC\^(\^XcmsCCC \fIccc\fP\^);
|
||||
.HP
|
||||
int ScreenNumberOfCCC\^(\^XcmsCCC \fIccc\fP\^);
|
||||
.HP
|
||||
XcmsColor *ScreenWhitePointOfCCC\^(\^XcmsCCC \fIccc\fP\^);
|
||||
.HP
|
||||
XcmsColor *ClientWhitePointOfCCC\^(\^XcmsCCC \fIccc\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIccc\fP 1i
|
||||
Specifies the CCC.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/ImageOrd.man,v 1.3 2003/04/28 22:17:53 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,27 +144,24 @@
|
|||
.SH NAME
|
||||
ImageByteOrder, BitmapBitOrder, BitmapPad, BitmapUnit, DisplayHeight, DisplayHeightMM, DisplayWidth, DisplayWidthMM, XListPixmapFormats, XPixmapFormatValues \- image format functions and macros
|
||||
.SH SYNTAX
|
||||
XPixmapFormatValues *XListPixmapFormats\^(\^\fIdisplay\fP, \fIcount_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
int *\fIcount_return\fP\^;
|
||||
.LP
|
||||
ImageByteOrder\^(\^\fIdisplay\fP\^)
|
||||
.LP
|
||||
BitmapBitOrder\^(\^\fIdisplay\fP\^)
|
||||
.LP
|
||||
BitmapPad\^(\^\fIdisplay\fP\^)
|
||||
.LP
|
||||
BitmapUnit\^(\^\fIdisplay\fP\^)
|
||||
.LP
|
||||
DisplayHeight\^(\^\fIdisplay\fP\^, \^\fIscreen_number\fP\^)
|
||||
.LP
|
||||
DisplayHeightMM\^(\^\fIdisplay\fP\^, \^\fIscreen_number\fP\^)
|
||||
.LP
|
||||
DisplayWidth\^(\^\fIdisplay\fP\^, \^\fIscreen_number\fP\^)
|
||||
.LP
|
||||
DisplayWidthMM\^(\^\fIdisplay\fP\^, \^\fIscreen_number\fP\^)
|
||||
.HP
|
||||
XPixmapFormatValues *XListPixmapFormats\^(\^Display *\fIdisplay\fP, int *\fIcount_return\fP\^);
|
||||
.HP
|
||||
int ImageByteOrder\^(\^Display *\fIdisplay\fP\^);
|
||||
.HP
|
||||
int BitmapBitOrder\^(\^Display *\fIdisplay\fP\^);
|
||||
.HP
|
||||
int BitmapPad\^(\^Display *\fIdisplay\fP\^);
|
||||
.HP
|
||||
int BitmapUnit\^(\^Display *\fIdisplay\fP\^);
|
||||
.HP
|
||||
int DisplayHeight\^(\^Display *\fIdisplay\fP\^, \^int \fIscreen_number\fP\^);
|
||||
.HP
|
||||
int DisplayHeightMM\^(\^Display *\fIdisplay\fP\^, \^int \fIscreen_number\fP\^);
|
||||
.HP
|
||||
int DisplayWidth\^(\^Display *\fIdisplay\fP\^, \^int \fIscreen_number\fP\^);
|
||||
.HP
|
||||
int DisplayWidthMM\^(\^Display *\fIdisplay\fP\^, \^int \fIscreen_number\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/IsCKey.man,v 1.3 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,19 +144,19 @@
|
|||
.SH NAME
|
||||
IsCursorKey, IsFunctionKey, IsKeypadKey, IsMiscFunctionKey, IsModiferKey, IsPFKey, IsPrivateKeypadKey \- keysym classification macros
|
||||
.SH SYNTAX
|
||||
IsCursorKey\^(\^\fIkeysym\fP\^)
|
||||
int IsCursorKey\^(\^KeySym \fIkeysym\fP\^);
|
||||
.LP
|
||||
IsFunctionKey\^(\^\fIkeysym\fP\^)
|
||||
int IsFunctionKey\^(\^KeySym \fIkeysym\fP\^);
|
||||
.LP
|
||||
IsKeypadKey\^(\^\fIkeysym\fP\^)
|
||||
int IsKeypadKey\^(\^KeySym \fIkeysym\fP\^);
|
||||
.LP
|
||||
IsMiscFunctionKey\^(\^\fIkeysym\fP\^)
|
||||
int IsMiscFunctionKey\^(\^KeySym \fIkeysym\fP\^);
|
||||
.LP
|
||||
IsModifierKey\^(\^\fIkeysym\fP\^)
|
||||
int IsModifierKey\^(\^KeySym \fIkeysym\fP\^);
|
||||
.LP
|
||||
IsPFKey\^(\^\fIkeysym\fP\^)
|
||||
int IsPFKey\^(\^KeySym \fIkeysym\fP\^);
|
||||
.LP
|
||||
IsPrivateKeypadKey\^(\^\fIkeysym\fP\^)
|
||||
int IsPrivateKeypadKey\^(\^KeySym \fIkeysym\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.ds Fn tested
|
||||
.IP \fIkeysym\fP 1i
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XIntConn.man,v 1.4 2003/04/28 22:17:55 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,47 +144,21 @@
|
|||
.SH NAME
|
||||
XAddConnectionWatch, XRemoveConnectionWatch, XProcessInternalConnection, XInternalConnectionNumbers \- handle Xlib internal connections
|
||||
.SH SYNTAX
|
||||
typedef void (*XConnectionWatchProc)\^(\^\fIdisplay\fP, \fIclient_data\fP, \fIfd\fP, \fIopening\fP, \fIwatch_data\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
XPointer \fIclient_data\fP\^;
|
||||
.br
|
||||
int \fIfd\fP\^;
|
||||
.br
|
||||
Bool \fIopening\fP\^;
|
||||
.br
|
||||
XPointer *\fIwatch_data\fP\^;
|
||||
.LP
|
||||
Status XAddConnectionWatch\^(\^\fIdisplay\fP, \fIprocedure\fP\^, \fIclient_data\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
XWatchProc \fIprocedure\fP\^;
|
||||
.br
|
||||
XPointer \fIclient_data\fP\^;
|
||||
.LP
|
||||
Status XRemoveConnectionWatch\^(\^\fIdisplay\fP, \fIprocedure\fP\^, \fIclient_data\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
XWatchProc \fIprocedure\fP\^;
|
||||
.br
|
||||
XPointer \fIclient_data\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\^;
|
||||
.br
|
||||
int **\fIfd_return\fP\^;
|
||||
.br
|
||||
int *\fIcount_return\fP\^;
|
||||
.HP
|
||||
typedef void (*XConnectionWatchProc)\^(\^Display *\fIdisplay\fP\^, XPointer
|
||||
\fIclient_data\fP\^, int \fIfd\fP\^, Bool \fIopening\fP\^, XPointer
|
||||
*\fIwatch_data\fP\^);
|
||||
.HP
|
||||
Status XAddConnectionWatch\^(\^Display *\fIdisplay\fP\^, XWatchProc
|
||||
\fIprocedure\fP\^, XPointer \fIclient_data\fP\^);
|
||||
.HP
|
||||
Status XRemoveConnectionWatch\^(\^Display *\fIdisplay\fP\^, XWatchProc
|
||||
\fIprocedure\fP\^, XPointer \fIclient_data\fP\^);
|
||||
.HP
|
||||
void XProcessInternalConnection\^(\^Display *\fIdisplay\fP\^, int \fIfd\fP\^);
|
||||
.HP
|
||||
Status XInternalConnectionNumbers\^(\^Display *\fIdisplay\fP\^, int
|
||||
**\fIfd_return\fP\^, int *\fIcount_return\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIclient_data\fP 1i
|
||||
Specifies the additional client data.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XAddHost.man,v 1.3 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,55 +144,24 @@
|
|||
.SH NAME
|
||||
XAddHost, XAddHosts, XListHosts, XRemoveHost, XRemoveHosts, XSetAccessControl, XEnableAccessControl, XDisableAccessControl, XHostAddress \- control host access and host control structure
|
||||
.SH SYNTAX
|
||||
XAddHost\^(\^\fIdisplay\fP, \fIhost\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
XHostAddress *\fIhost\fP\^;
|
||||
.LP
|
||||
XAddHosts\^(\^\fIdisplay\fP, \fIhosts\fP, \fInum_hosts\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
XHostAddress *\fIhosts\fP\^;
|
||||
.br
|
||||
int \fInum_hosts\fP\^;
|
||||
.LP
|
||||
XHostAddress *XListHosts\^(\^\fIdisplay\fP, \fInhosts_return\fP, \fIstate_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
int *\fInhosts_return\fP\^;
|
||||
.br
|
||||
Bool *\fIstate_return\fP\^;
|
||||
.LP
|
||||
XRemoveHost\^(\^\fIdisplay\fP, \fIhost\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
XHostAddress *\fIhost\fP\^;
|
||||
.LP
|
||||
XRemoveHosts\^(\^\fIdisplay\fP, \fIhosts\fP, \fInum_hosts\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
XHostAddress *\fIhosts\fP\^;
|
||||
.br
|
||||
int \fInum_hosts\fP\^;
|
||||
.LP
|
||||
XSetAccessControl\^(\^\fIdisplay\fP, \fImode\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
int \fImode\fP\^;
|
||||
.LP
|
||||
XEnableAccessControl\^(\^\fIdisplay\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.LP
|
||||
XDisableAccessControl\^(\^\fIdisplay\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.HP
|
||||
int XAddHost\^(\^Display *\fIdisplay\fP, XHostAddress *\fIhost\fP\^);
|
||||
.HP
|
||||
int XAddHosts\^(\^Display *\fIdisplay\fP, XHostAddress *\fIhosts\fP,
|
||||
int \fInum_hosts\fP\^);
|
||||
.HP
|
||||
XHostAddress *XListHosts\^(\^Display *\fIdisplay\fP, int *\fInhosts_return\fP,
|
||||
Bool \fIstate_return\fP\^);
|
||||
.HP
|
||||
int XRemoveHost\^(\^Display *\fIdisplay\fP, XHostAddress *\fIhost\fP\^);
|
||||
.HP
|
||||
int XRemoveHosts\^(\^Display *\fIdisplay\fP, XHostAddress *\fIhosts\fP, int \fInum_hosts\fP\^);
|
||||
.HP
|
||||
int XSetAccessControl\^(\^Display *\fIdisplay\fP, int \fImode\fP\^);
|
||||
.HP
|
||||
int XEnableAccessControl\^(\^Display *\fIdisplay\fP\^);
|
||||
.HP
|
||||
int XDisableAccessControl\^(\^Display *\fIdisplay\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XACHints.man,v 1.3 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,23 +144,12 @@
|
|||
.SH NAME
|
||||
XAllocClassHint, XSetClassHint, XGetClassHint, XClassHint \- allocate class hints structure and set or read a window's WM_CLASS property
|
||||
.SH SYNTAX
|
||||
XClassHint *XAllocClassHint\^(\|)
|
||||
.LP
|
||||
XSetClassHint\^(\^\fIdisplay\fP, \fIw\fP, \fIclass_hints\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
XClassHint *\fIclass_hints\fP\^;
|
||||
.LP
|
||||
Status XGetClassHint\^(\^\fIdisplay\fP, \fIw\fP, \fIclass_hints_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP;
|
||||
.br
|
||||
XClassHint *\fIclass_hints_return\fP\^;
|
||||
.HP
|
||||
XClassHint *XAllocClassHint\^(void\^);
|
||||
.HP
|
||||
XSetClassHint\^(\^Display *\fIdisplay\fP, Window \fIw\fP, XClassHint *\fIclass_hints\fP\^);
|
||||
.HP
|
||||
Status XGetClassHint\^(\^Display *\fIdisplay\fP, Window \fIw\fP, XClassHint *\fIclass_hints_return\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XAllColor.man,v 1.4 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -146,74 +146,27 @@
|
|||
.SH NAME
|
||||
XAllocColor, XAllocNamedColor, XAllocColorCells, XAllocColorPlanes, XFreeColors \- allocate and free colors
|
||||
.SH SYNTAX
|
||||
Status XAllocColor\^(\^\fIdisplay\fP, \fIcolormap\fP\^, \fIscreen_in_out\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Colormap \fIcolormap\fP\^;
|
||||
.br
|
||||
XColor *\fIscreen_in_out\fP\^;
|
||||
.LP
|
||||
Status XAllocNamedColor\^(\^\fIdisplay\fP, \fIcolormap\fP\^,
|
||||
\fIcolor_name\fP\^, \fIscreen_def_return\fP\^, \fIexact_def_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Colormap \fIcolormap\fP\^;
|
||||
.br
|
||||
char *\fIcolor_name\fP\^;
|
||||
.br
|
||||
XColor *\fIscreen_def_return\fP\^, *\fIexact_def_return\fP\^;
|
||||
.LP
|
||||
Status XAllocColorCells\^(\^\fIdisplay\fP, \fIcolormap\fP\^, \fIcontig\fP\^,
|
||||
\fIplane_masks_return\fP\^, \fInplanes\fP\^,
|
||||
.br
|
||||
\fIpixels_return\fP\^, \fInpixels\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Colormap \fIcolormap\fP\^;
|
||||
.br
|
||||
Bool \fIcontig\fP\^;
|
||||
.br
|
||||
unsigned long \fIplane_masks_return\fP[\^]\^;
|
||||
.br
|
||||
unsigned int \fInplanes\fP\^;
|
||||
.br
|
||||
unsigned long \fIpixels_return\fP[\^]\^;
|
||||
.br
|
||||
unsigned int \fInpixels\fP\^;
|
||||
.LP
|
||||
Status XAllocColorPlanes\^(\^\fIdisplay\fP, \fIcolormap\fP\^, \fIcontig\fP\^, \fIpixels_return\fP\^, \fIncolors\fP\^, \fInreds\fP\^, \fIngreens\fP\^,
|
||||
.br
|
||||
\fInblues\fP\^, \fIrmask_return\fP\^, \fIgmask_return\fP\^, \fIbmask_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Colormap \fIcolormap\fP\^;
|
||||
.br
|
||||
Bool \fIcontig\fP\^;
|
||||
.br
|
||||
unsigned long \fIpixels_return\fP[\^]\^;
|
||||
.br
|
||||
int \fIncolors\fP\^;
|
||||
.br
|
||||
int \fInreds\fP\^, \fIngreens\fP\^, \fInblues\fP\^;
|
||||
.br
|
||||
unsigned long *\fIrmask_return\fP\^, *\fIgmask_return\fP\^, *\fIbmask_return\fP\^;
|
||||
.LP
|
||||
XFreeColors\^(\^\fIdisplay\fP, \fIcolormap\fP\^, \fIpixels\fP\^, \fInpixels\fP\^, \fIplanes\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Colormap \fIcolormap\fP\^;
|
||||
.br
|
||||
unsigned long \fIpixels\fP\^[\^];
|
||||
.br
|
||||
int \fInpixels\fP\^;
|
||||
.br
|
||||
unsigned long \fIplanes\fP\^;
|
||||
.SH ARGUMENTS
|
||||
.HP
|
||||
Status XAllocColor\^(\^Display *\fIdisplay\fP, Colormap \fIcolormap\fP\^,
|
||||
XColor *\fIscreen_in_out\fP\^);
|
||||
.HP
|
||||
Status XAllocNamedColor\^(\^Display *\fIdisplay\fP, Colormap \fIcolormap\fP\^,
|
||||
char *\fIcolor_name\fP\^, XColor *\fIscreen_def_return\fP\^, XColor
|
||||
*\fIexact_def_return\fP\^);
|
||||
.HP
|
||||
Status XAllocColorCells\^(\^Display *\fIdisplay\fP, Colormap \fIcolormap\fP\^,
|
||||
Bool \fIcontig\fP\^, unsigned long\fIplane_masks_return\fP[\^]\^, unsigned int
|
||||
\fInplanes\fP\^, unsigned long \fIpixels_return\fP[\^]\^, unsigned int
|
||||
\fInpixels\fP\^);
|
||||
.HP
|
||||
Status XAllocColorPlanes\^(\^Display *\fIdisplay\fP, Colormap
|
||||
\fIcolormap\fP\^, Bool \fIcontig\fP\^, unsigned long
|
||||
\fIpixels_return\fP[\^]\^, int \fIncolors\fP\^, int \fInreds\fP\^, int
|
||||
\fIngreens\fP\^, int \fInblues\fP\^, unsigned long *\fIrmask_return\fP\^,
|
||||
unsigned long *\fIgmask_return\fP\^, unsigned long *\fIbmask_return\fP\^);
|
||||
.HP
|
||||
int XFreeColors\^(\^Display *\fIdisplay\fP, Colormap \fIcolormap\fP\^, unsigned
|
||||
long \fIpixels\fP\^[\^], int \fInpixels\fP\^, unsigned long \fIplanes\fP\^);
|
||||
.IP \fIcolor_name\fP 1i
|
||||
Specifies the color name string (for example, red) whose color
|
||||
definition structure you want returned.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XAIcSize.man,v 1.3 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,27 +144,13 @@
|
|||
.SH NAME
|
||||
XAllocIconSize, XSetIconSizes, XGetIconSizes, XIconSize \- allocate icon size structure and set or read a window's WM_ICON_SIZES property
|
||||
.SH SYNTAX
|
||||
XIconSize *XAllocIconSize\^(\|)
|
||||
XIconSize *XAllocIconSize\^(void\^);
|
||||
.LP
|
||||
XSetIconSizes\^(\^\fIdisplay\fP, \fIw\fP, \fIsize_list\fP, \fIcount\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
XIconSize *\fIsize_list\fP\^;
|
||||
.br
|
||||
int \fIcount\fP\^;
|
||||
int XSetIconSizes\^(\^Display *\fIdisplay\fP, Window \fIw\fP, XIconSize
|
||||
*\fIsize_list\fP, int \fIcount\fP\^);
|
||||
.LP
|
||||
Status XGetIconSizes\^(\^\fIdisplay\fP, \fIw\fP, \fIsize_list_return\fP, \fIcount_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
XIconSize **\fIsize_list_return\fP\^;
|
||||
.br
|
||||
int *\fIcount_return\fP\^;
|
||||
Status XGetIconSizes\^(\^Display *\fIdisplay\fP, Window \fIw\fP, XIconSize
|
||||
**\fIsize_list_return\fP, int \fIcount_return\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
|
|||
|
|
@ -41,11 +41,11 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XASHints.man,v 1.5 2003/04/28 22:17:54 herrb 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
|
||||
.ds xL Xlib \- C Language X Interface, \fRO'Reilly and Associates,
|
||||
.ds xC Inter-Client Communication Conventions Manual
|
||||
.na
|
||||
.de Ds
|
||||
|
|
@ -146,49 +146,19 @@
|
|||
.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
|
||||
XSizeHints *XAllocSizeHints\^(\|)
|
||||
.LP
|
||||
void XSetWMNormalHints\^(\^\fIdisplay\fP, \fIw\fP, \fIhints\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
XSizeHints *\fIhints\fP\^;
|
||||
.LP
|
||||
Status XGetWMNormalHints\^(\^\fIdisplay\fP, \fIw\fP, \fIhints_return\fP,
|
||||
\fIsupplied_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
XSizeHints *\fIhints_return\fP\^;
|
||||
.br
|
||||
long *\fIsupplied_return\fP\^;
|
||||
.LP
|
||||
void XSetWMSizeHints\^(\^\fIdisplay\fP, \fIw\fP, \fIhints\fP, \fIproperty\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
XSizeHints *\fIhints\fP\^;
|
||||
.br
|
||||
Atom \fIproperty\fP\^;
|
||||
.LP
|
||||
Status XGetWMSizeHints\^(\^\fIdisplay\fP, \fIw\fP, \fIhints_return\fP,
|
||||
\fIsupplied_return\fP, \fIproperty\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
XSizeHints *\fIhints_return\fP\^;
|
||||
.br
|
||||
long *\fIsupplied_return\fP\^;
|
||||
.br
|
||||
Atom \fIproperty\fP\^;
|
||||
.HP
|
||||
XSizeHints *XAllocSizeHints\^(void\^);
|
||||
.HP
|
||||
void XSetWMNormalHints\^(\^Display *\fIdisplay\fP, Window \fIw\fP, XSizeHints *\fIhints\fP\^);
|
||||
.HP
|
||||
Status XGetWMNormalHints\^(\^Display *\fIdisplay\fP, Window \fIw\fP,
|
||||
XSizeHints *\fIhints_return\fP, long *\fIsupplied_return\fP\^);
|
||||
.HP
|
||||
void XSetWMSizeHints\^(\^Display *\fIdisplay\fP, Window \fIw\fP, XSizeHints
|
||||
*\fIhints\fP, Atom \fIproperty\fP\^);
|
||||
.HP
|
||||
Status XGetWMSizeHints\^(\^Display *\fIdisplay\fP, Window \fIw\fP, XSizeHints
|
||||
*\fIhints_return\fP, long *\fIsupplied_return\fP, Atom \fIproperty\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
@ -325,7 +295,7 @@ the supplied_return argument will contain the following bits:
|
|||
.LP
|
||||
.Ds
|
||||
(USPosition|USSize|PPosition|PSize|PMinSize|
|
||||
PMaxSize|PResizeInc|PAspect)
|
||||
PMaxSize|PResizeInc|PAspect);
|
||||
.De
|
||||
.LP
|
||||
If the property is large enough to contain the base size
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XASCmap.man,v 1.5 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -146,33 +146,16 @@
|
|||
.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,
|
||||
\fIcount\fP, \fIproperty\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
XStandardColormap *\fIstd_colormap\fP\^;
|
||||
.br
|
||||
int \fIcount\fP\^;
|
||||
.br
|
||||
Atom \fIproperty\fP\^;
|
||||
.LP
|
||||
Status XGetRGBColormaps\^(\^\fIdisplay\fP, \fIw\fP, \fIstd_colormap_return\fP,
|
||||
\fIcount_return\fP, \fIproperty\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
XStandardColormap **\fIstd_colormap_return\fP\^;
|
||||
.br
|
||||
int *\fIcount_return\fP\^;
|
||||
.br
|
||||
Atom \fIproperty\fP\^;
|
||||
.HP
|
||||
XStandardColormap *XAllocStandardColormap\^(void\^);
|
||||
.HP
|
||||
void XSetRGBColormaps\^(\^Display *\fIdisplay\fP, Window \fIw\fP,
|
||||
XStandardColormap *\fIstd_colormap\fP,
|
||||
int \fIcount\fP, Atom \fIproperty\fP\^);
|
||||
.HP
|
||||
Status XGetRGBColormaps\^(\^Display *\fIdisplay\fP, Window \fIw\fP,
|
||||
XStandardColormap **\fIstd_colormap_return\fP, int *\fIcount_return\fP,
|
||||
Atom \fIproperty\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
@ -308,7 +291,7 @@ T{
|
|||
T} T{
|
||||
.ZN ReleaseByFreeingColormap
|
||||
T} T{
|
||||
( (XID) 1L)
|
||||
( (XID) 1L);
|
||||
T}
|
||||
.TE
|
||||
/* Values */
|
||||
|
|
@ -346,7 +329,7 @@ green_max = 5, and blue_max = 5.
|
|||
.LP
|
||||
The red_mult, green_mult, and blue_mult members give the
|
||||
scale factors used to compose a full pixel value.
|
||||
(See the discussion of the base_pixel members for further information.)
|
||||
(See the discussion of the base_pixel members for further information.);
|
||||
For a 3/3/2 allocation, red_mult might be 32,
|
||||
green_mult might be 4, and blue_mult might be 1.
|
||||
For a 6-colors-each allocation, red_mult might be 36,
|
||||
|
|
@ -398,7 +381,7 @@ the cells held by this standard colormap are to be released
|
|||
by freeing the colormap ID or by calling the
|
||||
.ZN XKillClient
|
||||
function on the indicated resource.
|
||||
(Note that this method is necessary for allocating out of an existing colormap.)
|
||||
(Note that this method is necessary for allocating out of an existing colormap.);
|
||||
.LP
|
||||
The properties containing the
|
||||
.ZN XStandardColormap
|
||||
|
|
|
|||
|
|
@ -41,11 +41,12 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XAWMHints.man,v 1.4 2003/04/28 22:17:54 herrb 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
|
||||
.ds xL Xlib \- C Language X Interface, \fRO'Reilly and Associates, Sebastopol,
|
||||
1991.
|
||||
.ds xC Inter-Client Communication Conventions Manual
|
||||
.na
|
||||
.de Ds
|
||||
|
|
@ -146,22 +147,12 @@
|
|||
.SH NAME
|
||||
XAllocWMHints, XSetWMHints, XGetWMHints, XWMHints \- allocate window manager hints structure and set or read a window's WM_HINTS property
|
||||
.SH SYNTAX
|
||||
XWMHints *XAllocWMHints\^(\|)
|
||||
.LP
|
||||
XSetWMHints\^(\^\fIdisplay\fP, \fIw\fP, \fIwmhints\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
XWMHints *\fIwmhints\fP\^;
|
||||
|
||||
.LP
|
||||
XWMHints *XGetWMHints\^(\^\fIdisplay\fP, \fIw\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.HP
|
||||
XWMHints *XAllocWMHints\^(void\^);
|
||||
.HP
|
||||
int XSetWMHints\^(\^Display *\fIdisplay\fP, Window \fIw\fP, XWMHints *\fIwmhints\fP\^);
|
||||
.HP
|
||||
XWMHints *XGetWMHints\^(\^Display *\fIdisplay\fP, Window \fIw\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
@ -234,56 +225,56 @@ T{
|
|||
T} T{
|
||||
.ZN InputHint
|
||||
T} T{
|
||||
(1L << 0)
|
||||
(1L << 0);
|
||||
T}
|
||||
T{
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN StateHint
|
||||
T} T{
|
||||
(1L << 1)
|
||||
(1L << 1);
|
||||
T}
|
||||
T{
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN IconPixmapHint
|
||||
T} T{
|
||||
(1L << 2)
|
||||
(1L << 2);
|
||||
T}
|
||||
T{
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN IconWindowHint
|
||||
T} T{
|
||||
(1L << 3)
|
||||
(1L << 3);
|
||||
T}
|
||||
T{
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN IconPositionHint
|
||||
T} T{
|
||||
(1L << 4)
|
||||
(1L << 4);
|
||||
T}
|
||||
T{
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN IconMaskHint
|
||||
T} T{
|
||||
(1L << 5)
|
||||
(1L << 5);
|
||||
T}
|
||||
T{
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN WindowGroupHint
|
||||
T} T{
|
||||
(1L << 6)
|
||||
(1L << 6);
|
||||
T}
|
||||
T{
|
||||
\&#define
|
||||
T} T{
|
||||
.ZN UrgencyHint
|
||||
T} T{
|
||||
(1L << 8)
|
||||
(1L << 8);
|
||||
T}
|
||||
T{
|
||||
\&#define
|
||||
|
|
@ -294,7 +285,7 @@ T} T{
|
|||
.br
|
||||
IconWindowHint|IconPositionHint|
|
||||
.br
|
||||
IconMaskHint|WindowGroupHint)
|
||||
IconMaskHint|WindowGroupHint);
|
||||
T}
|
||||
.TE
|
||||
.IN "XWMHints" "" "@DEF@"
|
||||
|
|
@ -399,7 +390,7 @@ contents to be urgent, requiring the timely response of the user. The
|
|||
window manager will make some effort to draw the user's attention to this
|
||||
window while this flag is set. The client must provide some means by which the
|
||||
user can cause the urgency flag to be cleared (either mitigating
|
||||
the condition that made the window urgent or merely shutting off the alarm)
|
||||
the condition that made the window urgent or merely shutting off the alarm);
|
||||
or the window to be withdrawn.
|
||||
.SH DIAGNOSTICS
|
||||
.TP 1i
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XAllEvnt.man,v 1.3 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,13 +144,9 @@
|
|||
.SH NAME
|
||||
XAllowEvents \- release queued events
|
||||
.SH SYNTAX
|
||||
XAllowEvents\^(\^\fIdisplay\fP, \fIevent_mode\fP\^, \fItime\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
int \fIevent_mode\fP\^;
|
||||
.br
|
||||
Time \fItime\fP\^;
|
||||
.HP
|
||||
int XAllowEvents\^(\^Display *\fIdisplay\fP, int \fIevent_mode\fP\^,
|
||||
Time \fItime\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XCKCntrl.man,v 1.4 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -146,39 +146,20 @@
|
|||
.SH NAME
|
||||
XChangeKeyboardControl, XGetKeyboardControl, XAutoRepeatOn, XAutoRepeatOff, XBell, XQueryKeymap, XKeyboardControl \- manipulate keyboard settings and keyboard control structure
|
||||
.SH SYNTAX
|
||||
XChangeKeyboardControl\^(\^\fIdisplay\fP, \fIvalue_mask\fP\^, \fIvalues\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
unsigned long \fIvalue_mask\fP\^;
|
||||
.br
|
||||
XKeyboardControl *\fIvalues\fP\^;
|
||||
.LP
|
||||
XGetKeyboardControl\^(\^\fIdisplay\fP, \fIvalues_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
XKeyboardState *\fIvalues_return\fP\^;
|
||||
.LP
|
||||
XAutoRepeatOn\^(\^\fIdisplay\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.LP
|
||||
XAutoRepeatOff\^(\^\fIdisplay\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.LP
|
||||
XBell\^(\^\fIdisplay\fP, \fIpercent\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
int \fIpercent\fP\^;
|
||||
.LP
|
||||
XQueryKeymap\^(\^\fIdisplay\fP, \fIkeys_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
char \fIkeys_return\fP[32]\^;
|
||||
.HP
|
||||
int XChangeKeyboardControl\^(\^Display *\fIdisplay\fP, unsigned long
|
||||
\fIvalue_mask\fP\^, XKeyBoardControl *\fIvalues\fP\^);
|
||||
.HP
|
||||
int XGetKeyboardControl\^(\^Display *\fIdisplay\fP, XKeyBoardState
|
||||
*\fIvalues_return\fP\^);
|
||||
.HP
|
||||
int XAutoRepeatOn\^(\^Display *\fIdisplay\fP\^);
|
||||
.HP
|
||||
int XAutoRepeatOff\^(\^Display *\fIdisplay\fP\^);
|
||||
.HP
|
||||
int XBell\^(\^Display *\fIdisplay\fP, int \fIpercent\fP\^);
|
||||
.HP
|
||||
int XQueryKeymap\^(\^Display *\fIdisplay\fP, char \fIkeys_return\fP[32]\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XCKMping.man,v 1.4 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,73 +144,31 @@
|
|||
.SH NAME
|
||||
XChangeKeyboardMapping, XGetKeyboardMapping, XDisplayKeycodes, XSetModifierMapping, XGetModifierMapping, XNewModifiermap, XInsertModifiermapEntry, XDeleteModifiermapEntry, XFreeModifierMap XModifierKeymap \- manipulate keyboard encoding and keyboard encoding structure
|
||||
.SH SYNTAX
|
||||
XChangeKeyboardMapping(\^\fIdisplay\fP, \fIfirst_keycode\fP, \fIkeysyms_per_keycode\fP, \fIkeysyms\fP, \fInum_codes\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
int \fIfirst_keycode\fP\^;
|
||||
.br
|
||||
int \fIkeysyms_per_keycode\fP\^;
|
||||
.br
|
||||
KeySym *\fIkeysyms\fP\^;
|
||||
.br
|
||||
int \fInum_codes\fP\^;
|
||||
.LP
|
||||
KeySym *XGetKeyboardMapping(\^\fIdisplay\fP, \fIfirst_keycode\fP, \fIkeycode_count\fP,
|
||||
.br
|
||||
\fIkeysyms_per_keycode_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
KeyCode \fIfirst_keycode\fP\^;
|
||||
.br
|
||||
int \fIkeycode_count\fP\^;
|
||||
.br
|
||||
int *\fIkeysyms_per_keycode_return\fP\^;
|
||||
.LP
|
||||
XDisplayKeycodes\^(\^\fIdisplay\fP\^, \fImin_keycodes_return\fP\^,
|
||||
\fImax_keycodes_return\fP\^)
|
||||
.br
|
||||
Display *\^\fIdisplay\fP\^;
|
||||
.br
|
||||
int *\^\fImin_keycodes_return\fP\^, *\^\fImax_keycodes_return\fP\^;
|
||||
.LP
|
||||
int XSetModifierMapping(\^\fIdisplay\fP, \fImodmap\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
XModifierKeymap *\fImodmap\fP\^;
|
||||
.LP
|
||||
XModifierKeymap *XGetModifierMapping(\^\fIdisplay\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
|
||||
.LP
|
||||
XModifierKeymap *XNewModifiermap(\^\fImax_keys_per_mod\fP\^)
|
||||
.br
|
||||
int \fImax_keys_per_mod\fP\^;
|
||||
.LP
|
||||
XModifierKeymap *XInsertModifiermapEntry\^(\^\fImodmap\fP,
|
||||
\fIkeycode_entry\fP, \fImodifier\fP\^)
|
||||
.br
|
||||
XModifierKeymap *\fImodmap\fP\^;
|
||||
.br
|
||||
KeyCode \fIkeycode_entry\fP\^;
|
||||
.br
|
||||
int \fImodifier\fP\^;
|
||||
.LP
|
||||
XModifierKeymap *XDeleteModifiermapEntry\^(\^\fImodmap\fP,
|
||||
\fIkeycode_entry\fP, \fImodifier\fP\^)
|
||||
.br
|
||||
XModifierKeymap *\fImodmap\fP\^;
|
||||
.br
|
||||
KeyCode \fIkeycode_entry\fP\^;
|
||||
.br
|
||||
int \fImodifier\fP\^;
|
||||
.LP
|
||||
XFreeModifiermap(\^\fImodmap\fP\^)
|
||||
.br
|
||||
XModifierKeymap *\fImodmap\fP;
|
||||
.HP
|
||||
int XChangeKeyboardMapping(\^Display *\fIdisplay\fP, int \fIfirst_keycode\fP,
|
||||
int \fIkeysyms_per_keycode\fP, KeySym *\fIkeysyms\fP, int \fInum_codes\fP\^);
|
||||
.HP
|
||||
KeySym *XGetKeyboardMapping(\^Display *\fIdisplay\fP, KeyCode
|
||||
\fIfirst_keycode\fP, int \fIkeycode_count\fP, int
|
||||
*\fIkeysyms_per_keycode_return\fP\^);
|
||||
.HP
|
||||
int XDisplayKeycodes\^(\^Display *\fIdisplay\fP\^, int
|
||||
*\fImin_keycodes_return\fP\^, int *\fImax_keycodes_return\fP\^);
|
||||
.HP
|
||||
int XSetModifierMapping(\^Display *\fIdisplay\fP, XModifierKeymap
|
||||
*\fImodmap\fP\^);
|
||||
.HP
|
||||
XModifierKeymap *XGetModifierMapping(\^Display *\fIdisplay\fP\^);
|
||||
.HP
|
||||
XModifierKeymap *XNewModifiermap(\^int \fImax_keys_per_mod\fP\^);
|
||||
.HP
|
||||
XModifierKeymap *XInsertModifiermapEntry\^(\^XModifierKeymap *\fImodmap\fP,
|
||||
KeyCode \fIkeycode_entry\fP, int \fImodifier\fP\^);
|
||||
.HP
|
||||
XModifierKeymap *XDeleteModifiermapEntry\^(\^XModifierKeymap *\fImodmap\fP,
|
||||
KeyCode \fIkeycode_entry\fP, int \fImodifier\fP\^);
|
||||
.HP
|
||||
int XFreeModifiermap(\^XModifierKeymap *\fImodmap\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XCPCntrl.man,v 1.3 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,27 +144,14 @@
|
|||
.SH NAME
|
||||
XChangePointerControl, XGetPointerControl \- control pointer
|
||||
.SH SYNTAX
|
||||
XChangePointerControl\^(\^\fIdisplay\fP, \fIdo_accel\fP\^, \fIdo_threshold\fP\^, \fIaccel_numerator\fP\^,
|
||||
.br
|
||||
\fIaccel_denominator\fP\^, \fIthreshold\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Bool \fIdo_accel\fP\^, \fIdo_threshold\fP\^;
|
||||
.br
|
||||
int \fIaccel_numerator\fP\^, \fIaccel_denominator\fP\^;
|
||||
.br
|
||||
int \fIthreshold\fP\^;
|
||||
.LP
|
||||
XGetPointerControl\^(\^\fIdisplay\fP, \fIaccel_numerator_return\fP\^, \fIaccel_denominator_return\fP\^,
|
||||
.br
|
||||
\fIthreshold_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
int *\fIaccel_numerator_return\fP\^, *\fIaccel_denominator_return\fP\^;
|
||||
.br
|
||||
int *\fIthreshold_return\fP\^;
|
||||
.HP
|
||||
int XChangePointerControl\^(\^Display *\fIdisplay\fP\^, Bool \fIdo_accel\fP\^,
|
||||
Bool \fIdo_threshold\fP\^, int \fIaccel_numerator\fP\^, int
|
||||
\fIaccel_denominator\fP\^, int \fIthreshold\fP\^);
|
||||
.HP
|
||||
int XGetPointerControl\^(\^Display *\fIdisplay\fP\^, int
|
||||
*\fIaccel_numerator_return\fP\^, int *\fIaccel_denominator_return\fP\^, int
|
||||
*\fIthreshold_return\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIaccel_denominator\fP 1i
|
||||
Specifies the denominator for the acceleration multiplier.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XCSSet.man,v 1.3 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,25 +144,12 @@
|
|||
.SH NAME
|
||||
XChangeSaveSet, XAddToSaveSet, XRemoveFromSaveSet \- change a client's save set
|
||||
.SH SYNTAX
|
||||
XChangeSaveSet\^(\^\fIdisplay\fP, \fIw\fP\^, \fIchange_mode\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
int \fIchange_mode\fP\^;
|
||||
.LP
|
||||
XAddToSaveSet\^(\^\fIdisplay\fP, \fIw\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.LP
|
||||
XRemoveFromSaveSet\^(\^\fIdisplay\fP, \fIw\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.HP
|
||||
int XChangeSaveSet\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^, int \fIchange_mode\fP\^);
|
||||
.HP
|
||||
int XAddToSaveSet\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^);
|
||||
.HP
|
||||
int XRemoveFromSaveSet\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIchange_mode\fP 1i
|
||||
Specifies the mode.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XCWAttrib.man,v 1.3 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,55 +144,19 @@
|
|||
.SH NAME
|
||||
XChangeWindowAttributes, XSetWindowBackground, XSetWindowBackgroundPixmap, XSetWindowBorder, XSetWindowBorderPixmap, XSetWindowColormap \- change window attributes
|
||||
.SH SYNTAX
|
||||
XChangeWindowAttributes\^(\^\fIdisplay\fP, \fIw\fP\^, \fIvaluemask\fP\^, \fIattributes\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
unsigned long \fIvaluemask\fP\^;
|
||||
.br
|
||||
XSetWindowAttributes *\fIattributes\fP\^;
|
||||
.LP
|
||||
XSetWindowBackground\^(\^\fIdisplay\fP, \fIw\fP\^, \fIbackground_pixel\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
unsigned long \fIbackground_pixel\fP\^;
|
||||
.LP
|
||||
XSetWindowBackgroundPixmap\^(\^\fIdisplay\fP, \fIw\fP\^, \fIbackground_pixmap\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
Pixmap \fIbackground_pixmap\fP\^;
|
||||
.LP
|
||||
XSetWindowBorder\^(\^\fIdisplay\fP, \fIw\fP\^, \fIborder_pixel\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
unsigned long \fIborder_pixel\fP\^;
|
||||
.LP
|
||||
XSetWindowBorderPixmap\^(\^\fIdisplay\fP, \fIw\fP\^, \fIborder_pixmap\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
Pixmap \fIborder_pixmap\fP\^;
|
||||
.LP
|
||||
XSetWindowColormap\^(\^\fIdisplay\fP, \fIw\fP\^, \fIcolormap\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
Colormap \fIcolormap\fP\^;
|
||||
.HP
|
||||
int XChangeWindowAttributes\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^, unsigned long \fIvaluemask\fP\^, XSetWindowAttributes *\fIattributes\fP\^);
|
||||
.HP
|
||||
int XSetWindowBackground\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^, unsigned long \fIbackground_pixel\fP\^);
|
||||
.HP
|
||||
int XSetWindowBackgroundPixmap\^(\^Display *\fIdisplay\fP\^, Window
|
||||
\fIw\fP\^, Pixmap \fIbackground_pixmap\fP\^);
|
||||
.HP
|
||||
int XSetWindowBorder\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^, unsigned long \fIborder_pixel\fP\^);
|
||||
.HP
|
||||
int XSetWindowBorderPixmap\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^, Pixmap \fIborder_pixmap\fP\^);
|
||||
.HP
|
||||
int XSetWindowColormap\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^, Colormap \fIcolormap\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIattributes\fP 1i
|
||||
Specifies the structure from which the values (as specified by the value mask)
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XClrArea.man,v 1.4 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,23 +144,12 @@
|
|||
.SH NAME
|
||||
XClearArea, XClearWindow \- clear area or window
|
||||
.SH SYNTAX
|
||||
XClearArea\^(\^\fIdisplay\fP, \fIw\fP\^, \fIx\fP\^, \fIy\fP\^, \fIwidth\fP\^, \fIheight\fP\^, \fIexposures\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
int \fIx\fP\^, \fIy\fP\^;
|
||||
.br
|
||||
unsigned int \fIwidth\fP\^, \fIheight\fP\^;
|
||||
.br
|
||||
Bool \fIexposures\fP\^;
|
||||
.LP
|
||||
XClearWindow\^(\^\fIdisplay\fP, \fIw\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.HP
|
||||
int XClearArea\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^, int \fIx\fP\^,
|
||||
int \fIy\fP\^, unsigned \fIwidth\fP\^, unsigned \fIheight\fP\^,
|
||||
Bool \fIexposures\fP\^);
|
||||
.HP
|
||||
int XClearWindow\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XConfWin.man,v 1.5 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -146,49 +146,19 @@
|
|||
.SH NAME
|
||||
XConfigureWindow, XMoveWindow, XResizeWindow, XMoveResizeWindow, XSetWindowBorderWidth, XWindowChanges \- configure windows and window changes structure
|
||||
.SH SYNTAX
|
||||
XConfigureWindow\^(\^\fIdisplay\fP, \fIw\fP\^, \fIvalue_mask\fP\^, \fIvalues\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
unsigned int \fIvalue_mask\fP\^;
|
||||
.br
|
||||
XWindowChanges *\fIvalues\fP\^;
|
||||
.LP
|
||||
XMoveWindow\^(\^\fIdisplay\fP, \fIw\fP\^, \fIx\fP\^, \fIy\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
int \fIx\fP\^, \fIy\fP\^;
|
||||
.LP
|
||||
XResizeWindow\^(\^\fIdisplay\fP, \fIw\fP\^, \fIwidth\fP\^, \fIheight\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
unsigned int \fIwidth\fP\^, \fIheight\fP\^;
|
||||
.LP
|
||||
XMoveResizeWindow\^(\^\fIdisplay\fP, \fIw\fP\^, \fIx\fP\^, \fIy\fP\^, \fIwidth\fP\^, \fIheight\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
int \fIx\fP\^, \fIy\fP\^;
|
||||
.br
|
||||
unsigned int \fIwidth\fP\^, \fIheight\fP\^;
|
||||
.LP
|
||||
XSetWindowBorderWidth\^(\^\fIdisplay\fP, \fIw\fP, \fIwidth\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
unsigned int \fIwidth\fP\^;
|
||||
.HP
|
||||
int XConfigureWindow\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^, unsigned \fIvalue_mask\fP\^);
|
||||
.HP
|
||||
int XMoveWindow\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^, int \fIx\fP\^, \fIy\fP\^);
|
||||
.HP
|
||||
int XResizeWindow\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^, unsigned
|
||||
\fIwidth\fP\^, unsigned \fIheight\fP\^);
|
||||
.HP
|
||||
int XMoveResizeWindow\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^, int
|
||||
\fIx\fP\^, int \fIy\fP\^, unsigned \fIwidth\fP\^, unsigned \fIheight\fP\^);
|
||||
.HP
|
||||
int XSetWindowBorderWidth\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^,
|
||||
unsigned \fIwidth\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XCopyArea.man,v 1.4 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,35 +144,16 @@
|
|||
.SH NAME
|
||||
XCopyArea, XCopyPlane \- copy areas
|
||||
.SH SYNTAX
|
||||
XCopyArea\^(\^\fIdisplay\fP, \fIsrc\fP\^, \fIdest\fP\^, \fIgc\fP\^, \fIsrc_x\fP\^, \fIsrc_y\fP\^, \fIwidth\fP\^, \fIheight\fP\^, \fIdest_x\fP\^, \fIdest_y\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fIsrc\fP\^, \fIdest\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
int \fIsrc_x\fP\^, \fIsrc_y\fP\^;
|
||||
.br
|
||||
unsigned int \fIwidth\fP\^, \fIheight\fP\^;
|
||||
.br
|
||||
int \fIdest_x\fP\^, \fIdest_y\fP\^;
|
||||
.LP
|
||||
XCopyPlane\^(\^\fIdisplay\fP, \fIsrc\fP\^, \fIdest\fP\^, \fIgc\fP\^, \fIsrc_x\fP\^, \fIsrc_y\fP\^, \fIwidth\fP\^, \fIheight\fP\^, \fIdest_x\fP\^, \fIdest_y\fP\^, \fIplane\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fIsrc\fP\^, \fIdest\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
int \fIsrc_x\fP\^, \fIsrc_y\fP\^;
|
||||
.br
|
||||
unsigned int \fIwidth\fP\^, \fIheight\fP\^;
|
||||
.br
|
||||
int \fIdest_x\fP\^, \fIdest_y\fP\^;
|
||||
.br
|
||||
unsigned long \fIplane\fP\^;
|
||||
.HP
|
||||
int XCopyArea\^(\^Display *\fIdisplay\fP\^, Drawable \fIsrc\fP\^, Drawable
|
||||
\fIdest\fP\^, GC \fIgc\fP\^, int \fIsrc_x\fP\^, int \fIsrc_y\fP\^, unsigned
|
||||
int \fIwidth\fP\^, unsigned \fIheight\fP\^, int \fIdest_x\fP\^, int
|
||||
\fIdest_y\fP\^);
|
||||
.HP
|
||||
int XCopyPlane\^(\^Display *\fIdisplay\fP\^, Drawable \fIsrc\fP\^, Drawable
|
||||
\fIdest\fP\^, GC \fIgc\fP\^, int \fIsrc_x\fP\^, int \fIsrc_y\fP\^, unsigned
|
||||
\fIwidth\fP\^, int \fIheight\fP\^, int \fIdest_x\fP\^, int \fIdest_y\fP\^,
|
||||
unsigned long \fIplane\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.ds Dx , which are relative to the origin of the destination rectangle
|
||||
and specify its upper-left corner
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XCreCmap.man,v 1.4 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,27 +144,14 @@
|
|||
.SH NAME
|
||||
XCreateColormap, XCopyColormapAndFree, XFreeColormap, XColor \- create, copy, or destroy colormaps and color structure
|
||||
.SH SYNTAX
|
||||
Colormap XCreateColormap\^(\^\fIdisplay\fP, \fIw\fP\^, \fIvisual\fP\^, \fIalloc\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
Visual *\fIvisual\fP\^;
|
||||
.br
|
||||
int \fIalloc\fP\^;
|
||||
.LP
|
||||
Colormap XCopyColormapAndFree\^(\^\fIdisplay\fP, \fIcolormap\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Colormap \fIcolormap\fP\^;
|
||||
.LP
|
||||
XFreeColormap\^(\^\fIdisplay\fP, \fIcolormap\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Colormap \fIcolormap\fP\^;
|
||||
.HP
|
||||
Colormap XCreateColormap\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^,
|
||||
Visual *\fIvisual\fP\^, int \fIalloc\fP\^,);
|
||||
.HP
|
||||
Colormap XCopyColormapAndFree\^(\^Display *\fIdisplay\fP\^, Colormap
|
||||
\fIcolormap\fP\^);
|
||||
.HP
|
||||
int XFreeColormap\^(\^Display *\fIdisplay\fP\^, Colormap \fIcolormap\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIalloc\fP 1i
|
||||
Specifies the colormap entries to be allocated.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XCreFCur.man,v 1.4 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -145,40 +145,18 @@
|
|||
XCreateFontCursor, XCreatePixmapCursor, XCreateGlyphCursor \- create cursors
|
||||
.SH SYNTAX
|
||||
\&#include <X11/cursorfont.h>
|
||||
.sp 6p
|
||||
Cursor XCreateFontCursor\^(\^\fIdisplay\fP, \fIshape\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
unsigned int \fIshape\fP\^;
|
||||
.LP
|
||||
Cursor XCreatePixmapCursor\^(\^\fIdisplay\fP, \fIsource\fP\^, \fImask\fP\^, \fIforeground_color\fP\^, \fIbackground_color\fP\^, \fIx\fP\^, \fIy\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Pixmap \fIsource\fP\^;
|
||||
.br
|
||||
Pixmap \fImask\fP\^;
|
||||
.br
|
||||
XColor *\fIforeground_color\fP\^;
|
||||
.br
|
||||
XColor *\fIbackground_color\fP\^;
|
||||
.br
|
||||
unsigned int \fIx\fP\^, \fIy\fP\^;
|
||||
.LP
|
||||
Cursor XCreateGlyphCursor\^(\^\fIdisplay\fP, \fIsource_font\fP\^, \fImask_font\fP\^, \fIsource_char\fP\^, \fImask_char\fP\^,
|
||||
.br
|
||||
\fIforeground_color\fP\^, \fIbackground_color\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Font \fIsource_font\fP\^, \fImask_font\fP\^;
|
||||
.br
|
||||
unsigned int \fIsource_char\fP\^, \fImask_char\fP\^;
|
||||
.br
|
||||
XColor *\fIforeground_color\fP\^;
|
||||
.br
|
||||
XColor *\fIbackground_color\fP\^;
|
||||
.HP
|
||||
Cursor XCreateFontCursor\^(\^Display *\fIdisplay\fP\^, unsigned int
|
||||
\fIshape\fP\^);
|
||||
.HP
|
||||
Cursor XCreatePixmapCursor\^(\^Display *\fIdisplay\fP\^, Pixmap
|
||||
\fIsource\fP\^, Pixmap \fImask\fP\^, XColor *\fIforeground_color\fP\^, XColor
|
||||
*\fIbackground_color\fP\^, unsigned int \fIx\fP\^, \fIy\fP\^);
|
||||
.HP
|
||||
Cursor XCreateGlyphCursor\^(\^Display *\fIdisplay\fP\^, Font
|
||||
\fIsource_font\fP\^, Font \fImask_font\fP\^, unsigned int \fIsource_char\fP\^,
|
||||
unsigned int \fImask_char\fP\^, XColor *\fIforeground_color\fP\^, XColor
|
||||
*\fIbackground_color\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIbackground_color\fP 1i
|
||||
Specifies the RGB values for the background of the source.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XCreFSet.man,v 1.3 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,25 +144,12 @@
|
|||
.SH NAME
|
||||
XCreateFontSet, XFreeFontSet \- create and free an international text drawing font set
|
||||
.SH SYNTAX
|
||||
XFontSet XCreateFontSet\^(\^\fIdisplay\fP\^, \fIbase_font_name_list\fP\^, \fImissing_charset_list_return\fP\^,
|
||||
.br
|
||||
\fImissing_charset_count_return\fP\^, \fIdef_string_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
char *\fIbase_font_name_list\fP\^;
|
||||
.br
|
||||
char ***\fImissing_charset_list_return\fP\^;
|
||||
.br
|
||||
int *\fImissing_charset_count_return\fP\^;
|
||||
.br
|
||||
char **\fIdef_string_return\fP\^;
|
||||
.LP
|
||||
void XFreeFontSet\^(\^\fIdisplay\fP\^, \fIfont_set\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
XFontSet \fIfont_set\fP\^;
|
||||
.HP
|
||||
XFontSet XCreateFontSet\^(\^Display *\fIdisplay\fP\^, char
|
||||
*\fIbase_font_name_list\fP\^, char ***\fImissing_charset_list_return\fP\^, int
|
||||
*\fImissing_charset_count_return\fP\^, char **\fIdef_string_return\fP\^);
|
||||
.HP
|
||||
void XFreeFontSet\^(\^Display *\fIdisplay\fP\^, XFontSet \fIfont_set\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XCreGC.man,v 1.6 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -146,54 +146,22 @@
|
|||
.SH NAME
|
||||
XCreateGC, XCopyGC, XChangeGC, XGetGCValues, XFreeGC, XGContextFromGC, XGCValues \- create or free graphics contexts and graphics context structure
|
||||
.SH SYNTAX
|
||||
GC XCreateGC\^(\^\fIdisplay\fP, \fId\fP\^, \fIvaluemask\fP\^, \fIvalues\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fId\fP\^;
|
||||
.br
|
||||
unsigned long \fIvaluemask\fP\^;
|
||||
.br
|
||||
XGCValues *\^\fIvalues\fP\^;
|
||||
.LP
|
||||
XCopyGC\^(\^\fIdisplay\fP, \fIsrc\fP\^, \fIvaluemask\fP\^, \fIdest\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
GC \fIsrc\fP\^, \fIdest\fP\^;
|
||||
.br
|
||||
unsigned long \fIvaluemask\fP\^;
|
||||
.LP
|
||||
XChangeGC\^(\^\fIdisplay\fP, \fIgc\fP\^, \fIvaluemask\fP\^, \fIvalues\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
unsigned long \fIvaluemask\fP\^;
|
||||
.br
|
||||
XGCValues *\^\fIvalues\fP\^;
|
||||
.LP
|
||||
Status XGetGCValues\^(\^\fIdisplay\fP, \fIgc\fP, \fIvaluemask\fP,
|
||||
\fIvalues_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
unsigned long \fIvaluemask\fP\^;
|
||||
.br
|
||||
XGCValues *\fIvalues_return\fP\^;
|
||||
.LP
|
||||
XFreeGC\^(\^\fIdisplay\fP, \fIgc\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.LP
|
||||
GContext XGContextFromGC\^(\^\fIgc\fP\^)
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.HP
|
||||
GC XCreateGC\^(\^Display *\fIdisplay\fP\^, Drawable \fId\fP\^, unsigned long
|
||||
\fIvaluemask\fP\^, XGCValues *\^\fIvalues\fP\^);
|
||||
.HP
|
||||
int XCopyGC\^(\^Display *\fIdisplay\fP\^, GC \fIsrc\fP\^, GC \fIdest\fP\^,
|
||||
unsigned long \fIvaluemask\fP\^);
|
||||
.HP
|
||||
int XChangeGC\^(\^Display *\fIdisplay\fP\^, GC \fIgc\fP\^, unsigned long
|
||||
\fIvaluemask\fP\^, XGCValues *\^\fIvalues\fP\^);
|
||||
.HP
|
||||
Status XGetGCValues\^(\^Display *\fIdisplay\fP\^, GC \fIgc\fP\^, unsigned long
|
||||
\fIvaluemask\fP\^, XGCValues *\fIvalues_return\fP\^);
|
||||
.HP
|
||||
int XFreeGC\^(\^Display *\fIdisplay\fP\^, GC \fIgc\fP\^);
|
||||
.HP
|
||||
GContext XGContextFromGC\^(\^GC \fIgc\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fId\fP 1i
|
||||
Specifies the drawable.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XCreIC.man,v 1.3 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,17 +144,12 @@
|
|||
.SH NAME
|
||||
XCreateIC, XDestroyIC, XIMOfIC \- create, destroy, and obtain the input method of an input context
|
||||
.SH SYNTAX
|
||||
XIC XCreateIC\^(\^\fIim\fP\^, ...)
|
||||
.br
|
||||
XIM \fIim\fP\^;
|
||||
.LP
|
||||
void XDestroyIC\^(\^\fIic\fP\^)
|
||||
.br
|
||||
XIC \fIic\fP\^;
|
||||
.LP
|
||||
XIM XIMOfIC\^(\^\fIic\fP\^)
|
||||
.br
|
||||
XIC \fIic\fP\^;
|
||||
.HP
|
||||
XIC XCreateIC\^(\^XIM \fIim\fP\^, ...\^);
|
||||
.HP
|
||||
void XDestroyIC\^(\^XIC \fIic\fP\^);
|
||||
.HP
|
||||
XIM XIMOfIC\^(\^XIC \fIic\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIic\fP 1i
|
||||
Specifies the input context.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XCreOC.man,v 1.3 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,25 +144,16 @@
|
|||
.SH NAME
|
||||
XCreateOC, XDestroyOC, XSetOCValues, XGetOCValues, XOMOfOC \- create output contexts
|
||||
.SH SYNTAX
|
||||
XOC XCreateOC\^(\^\fIom\fP\^, ...)
|
||||
.br
|
||||
XOM \fIom\fP\^;
|
||||
.LP
|
||||
void XDestroyOC\^(\^\fIoc\fP\^)
|
||||
.br
|
||||
XOC \fIoc\fP\^;
|
||||
.LP
|
||||
char * XSetOCValues\^(\^\fIoc\fP\^, ...)
|
||||
.br
|
||||
XOC \fIoc\fP\^;
|
||||
.LP
|
||||
char * XGetOCValues\^(\^\fIoc\fP\^, ...)
|
||||
.br
|
||||
XOC \fIoc\fP\^;
|
||||
.LP
|
||||
XOM XOMOfOC\^(\^\fIoc\fP\^)
|
||||
.br
|
||||
XOC \fIoc\fP\^;
|
||||
.HP
|
||||
XOC XCreateOC\^(\^XOM \fIom\fP\^);
|
||||
.HP
|
||||
void XDestroyOC\^(\^XOC \fIoc\fP\^);
|
||||
.HP
|
||||
char * XSetOCValues\^(\^XOC \fIoc\fP\^, ...);
|
||||
.HP
|
||||
char * XGetOCValues\^(\^XOC \fIoc\fP\^, ...);
|
||||
.HP
|
||||
XOM XOMOfOC\^(\^XOC \fIoc\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIoc\fP 1i
|
||||
Specifies the output context.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XCrePmap.man,v 1.3 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,21 +144,12 @@
|
|||
.SH NAME
|
||||
XCreatePixmap, XFreePixmap \- create or destroy pixmaps
|
||||
.SH SYNTAX
|
||||
Pixmap XCreatePixmap\^(\^\fIdisplay\fP, \fId\fP\^, \fIwidth\fP\^, \fIheight\fP\^, \fIdepth\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fId\fP\^;
|
||||
.br
|
||||
unsigned int \fIwidth\fP\^, \fIheight\fP\^;
|
||||
.br
|
||||
unsigned int \fIdepth\fP\^;
|
||||
.LP
|
||||
XFreePixmap\^(\^\fIdisplay\fP, \fIpixmap\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Pixmap \fIpixmap\fP\^;
|
||||
.HP
|
||||
Pixmap XCreatePixmap\^(\^Display *\fIdisplay\fP\^, Drawable \fId\fP\^,
|
||||
unsigned int \fIwidth\fP\^, unsigned int \fIheight\fP\^, unsigned int
|
||||
\fIdepth\fP\^);
|
||||
.HP
|
||||
int XFreePixmap\^(\^Display *\fIdisplay\fP\^, Pixmap \fIpixmap\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fId\fP 1i
|
||||
Specifies which screen the pixmap is created on.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XCreReg.man,v 1.3 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,19 +144,12 @@
|
|||
.SH NAME
|
||||
XCreateRegion, XSetRegion, XDestroyRegion \- create or destroy regions
|
||||
.SH SYNTAX
|
||||
Region XCreateRegion\^()
|
||||
.LP
|
||||
XSetRegion\^(\^\fIdisplay\fP, \fIgc\fP\^, \fIr\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
Region \fIr\fP\^;
|
||||
.LP
|
||||
XDestroyRegion\^(\^\fIr\fP\^)
|
||||
.br
|
||||
Region \fIr\fP\^;
|
||||
.HP
|
||||
Region XCreateRegion\^(void\^);
|
||||
.HP
|
||||
int XSetRegion\^(\^Display *\fIdisplay\fP\^, GC \fIgc\fP\^, Region \fIr\fP\^);
|
||||
.HP
|
||||
int XDestroyRegion\^(\^Region \fIr\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XCreWin.man,v 1.5 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -146,47 +146,10 @@
|
|||
.SH NAME
|
||||
XCreateWindow, XCreateSimpleWindow, XSetWindowAttributes \- create windows and window attributes structure
|
||||
.SH SYNTAX
|
||||
Window XCreateWindow\^(\^\fIdisplay\fP, \fIparent\fP\^, \fIx\fP\^, \fIy\fP\^, \fIwidth\fP\^, \fIheight\fP\^, \fIborder_width\fP\^, \fIdepth\fP\^,
|
||||
.br
|
||||
\fIclass\fP\^, \fIvisual\fP\^, \fIvaluemask\fP\^, \fIattributes\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIparent\fP\^;
|
||||
.br
|
||||
int \fIx\fP\^, \fIy\fP\^;
|
||||
.br
|
||||
unsigned int \fIwidth\fP\^, \fIheight\fP\^;
|
||||
.br
|
||||
unsigned int \fIborder_width\fP\^;
|
||||
.br
|
||||
int \fIdepth\fP\^;
|
||||
.br
|
||||
unsigned int \fIclass\fP\^;
|
||||
.br
|
||||
Visual *\fIvisual\fP\^
|
||||
.br
|
||||
unsigned long \fIvaluemask\fP\^;
|
||||
.br
|
||||
XSetWindowAttributes *\fIattributes\fP\^;
|
||||
.LP
|
||||
Window XCreateSimpleWindow\^(\^\fIdisplay\fP, \fIparent\fP\^, \fIx\fP\^, \fIy\fP\^, \fIwidth\fP\^, \fIheight\fP\^, \fIborder_width\fP\^,
|
||||
.br
|
||||
\fIborder\fP\^, \fIbackground\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIparent\fP\^;
|
||||
.br
|
||||
int \fIx\fP\^, \fIy\fP\^;
|
||||
.br
|
||||
unsigned int \fIwidth\fP\^, \fIheight\fP\^;
|
||||
.br
|
||||
unsigned int \fIborder_width\fP\^;
|
||||
.br
|
||||
unsigned long \fIborder\fP\^;
|
||||
.br
|
||||
unsigned long \fIbackground\fP\^;
|
||||
.HP
|
||||
Window XCreateWindow\^(\^Display *\fIdisplay\fP\^, Window \fIparent\fP\^, int \fIx\fP\^, int \fIy\fP\^, unsigned int \fIwidth\fP\^, unsigned int \fIheight\fP\^, unsigned int \fIborder_width\fP\^, int \fIdepth\fP\^, unsigned int \fIclass\fP\^, Visual *\fIvisual\fP\^, unsigned long \fIvaluemask\fP\^, XSetWindowAttributes *\fIattributes\fP\^);
|
||||
.HP
|
||||
Window XCreateSimpleWindow\^(\^Display *\fIdisplay\fP\^, Window \fIparent\fP\^, int \fIx\fP\^, int \fIy\fP\^, unsigned int \fIwidth\fP\^, unsigned int \fIheight\fP\^, unsigned int \fIborder_width\fP\^, unsigned long \fIborder\fP\^, unsigned long \fIbackground\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIattributes\fP 1i
|
||||
Specifies the structure from which the values (as specified by the value mask)
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XDefCur.man,v 1.3 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,19 +144,11 @@
|
|||
.SH NAME
|
||||
XDefineCursor, XUndefineCursor \- define cursors
|
||||
.SH SYNTAX
|
||||
XDefineCursor\^(\^\fIdisplay\fP, \fIw\fP\^, \fIcursor\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
Cursor \fIcursor\fP\^;
|
||||
.LP
|
||||
XUndefineCursor\^(\^\fIdisplay\fP, \fIw\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.HP
|
||||
int XDefineCursor\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^, Cursor
|
||||
\fIcursor\fP\^);
|
||||
.HP
|
||||
int XUndefineCursor\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIcursor\fP 1i
|
||||
Specifies the cursor that is to be displayed or
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XDesWin.man,v 1.3 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,17 +144,10 @@
|
|||
.SH NAME
|
||||
XDestroyWindow, XDestroySubwindows \- destroy windows
|
||||
.SH SYNTAX
|
||||
XDestroyWindow\^(\^\fIdisplay\fP, \fIw\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.LP
|
||||
XDestroySubwindows\^(\^\fIdisplay\fP, \fIw\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.HP
|
||||
int XDestroyWindow\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^);
|
||||
.HP
|
||||
int XDestroySubwindows\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XDrArc.man,v 1.4 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -146,31 +146,13 @@
|
|||
.SH NAME
|
||||
XDrawArc, XDrawArcs, XArc \- draw arcs and arc structure
|
||||
.SH SYNTAX
|
||||
XDrawArc\^(\^\fIdisplay\fP, \fId\fP\^, \fIgc\fP\^, \fIx\fP\^, \fIy\fP\^, \fIwidth\fP\^, \fIheight\fP\^, \fIangle1\fP\^, \fIangle2\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fId\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
int \fIx\fP\^, \fIy\fP\^;
|
||||
.br
|
||||
unsigned int \fIwidth\fP\^, \fIheight\fP\^;
|
||||
.br
|
||||
int \fIangle1\fP\^, \fIangle2\fP\^;
|
||||
.LP
|
||||
XDrawArcs\^(\^\fIdisplay\fP, \fId\fP\^, \fIgc\fP\^, \fIarcs\fP\^, \fInarcs\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fId\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
XArc *\fIarcs\fP\^;
|
||||
.br
|
||||
int \fInarcs\fP\^;
|
||||
.HP
|
||||
int XDrawArc\^(\^Display *\fIdisplay\fP\^, Drawable \fId\fP\^, GC \fIgc\fP\^,
|
||||
int \fIx\fP\^, int \fIy\fP\^, unsigned int \fIwidth\fP\^, unsigned int
|
||||
\fIheight\fP\^, int \fIangle1\fP\^, int \fIangle2\fP\^);
|
||||
.HP
|
||||
int XDrawArcs\^(\^Display *\fIdisplay\fP\^, Drawable \fId\fP\^, GC \fIgc\fP\^,
|
||||
XArc *\fIarcs\fP\^, int \fInarcs\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIangle1\fP 1i
|
||||
Specifies the start of the arc relative to the three-o'clock position
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XDrIStr.man,v 1.4 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,33 +144,14 @@
|
|||
.SH NAME
|
||||
XDrawImageString, XDrawImageString16 \- draw image text
|
||||
.SH SYNTAX
|
||||
XDrawImageString\^(\^\fIdisplay\fP, \fId\fP\^, \fIgc\fP\^, \fIx\fP\^, \fIy\fP\^, \fIstring\fP\^, \fIlength\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fId\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
int \fIx\fP\^, \fIy\fP\^;
|
||||
.br
|
||||
char *\fIstring\fP\^;
|
||||
.br
|
||||
int \fIlength\fP\^;
|
||||
.LP
|
||||
XDrawImageString16\^(\^\fIdisplay\fP, \fId\fP\^, \fIgc\fP\^, \fIx\fP\^, \fIy\fP\^, \fIstring\fP\^, \fIlength\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fId\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
int \fIx\fP\^, \fIy\fP\^;
|
||||
.br
|
||||
XChar2b *\fIstring\fP\^;
|
||||
.br
|
||||
int \fIlength\fP\^;
|
||||
.HP
|
||||
int XDrawImageString\^(\^Display *\fIdisplay\fP\^, Drawable \fId\fP\^, GC
|
||||
\fIgc\fP\^, int \fIx\fP\^, int \fIy\fP\^, char *\fIstring\fP\^, int
|
||||
\fIlength\fP\^);
|
||||
.HP
|
||||
int XDrawImageString16\^(\^Display *\fIdisplay\fP\^, Drawable \fId\fP\^, GC
|
||||
\fIgc\fP\^, int \fIx\fP\^, int \fIy\fP\^, XChar2b *\fIstring\fP\^, int
|
||||
\fIlength\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fId\fP 1i
|
||||
Specifies the drawable.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XDrLine.man,v 1.3 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,41 +144,15 @@
|
|||
.SH NAME
|
||||
XDrawLine, XDrawLines, XDrawSegments, XSegment \- draw lines, polygons, and line structure
|
||||
.SH SYNTAX
|
||||
XDrawLine\^(\^\fIdisplay\fP, \fId\fP\^, \fIgc\fP\^, \fIx1\fP\^, \fIy1\fP\^, \fIx2\fP\^, \fIy2\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fId\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
int \fIx1\fP\^, \fIy1\fP\^, \fIx2\fP\^, \fIy2\fP\^;
|
||||
.LP
|
||||
XDrawLines\^(\^\fIdisplay\fP, \fId\fP\^, \fIgc\fP\^, \fIpoints\fP\^, \fInpoints\fP\^, \fImode\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fId\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
XPoint *\fIpoints\fP\^;
|
||||
.br
|
||||
int \fInpoints\fP\^;
|
||||
.br
|
||||
int \fImode\fP\^;
|
||||
.LP
|
||||
XDrawSegments\^(\^\fIdisplay\fP, \fId\fP\^, \fIgc\fP\^, \fIsegments\fP\^, \fInsegments\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fId\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
XSegment *\fIsegments\fP\^;
|
||||
.br
|
||||
int \fInsegments\fP\^;
|
||||
.HP
|
||||
int XDrawLine\^(\^Display *\fIdisplay\fP\^, Drawable \fId\fP\^, GC \fIgc\fP\^,
|
||||
int \fIx1\fP\^, int \fIy1\fP\^, int \fIx2\fP\^, int \fIy2\fP\^);
|
||||
.HP
|
||||
int XDrawLines\^(\^Display *\fIdisplay\fP\^, Drawable \fId\fP\^, GC
|
||||
\fIgc\fP\^, XPoint *\fIpoints\fP\^, int \fInpoints\fP\^, int \fImode\fP\^);
|
||||
.HP
|
||||
int XDrawSegments\^(\^Display *\fIdisplay\fP\^, Drawable \fId\fP\^, GC
|
||||
\fIgc\fP\^, XSegment *\fIsegments\fP\^, int \fInsegments\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fId\fP 1i
|
||||
Specifies the drawable.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XDrPoint.man,v 1.3 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,29 +144,12 @@
|
|||
.SH NAME
|
||||
XDrawPoint, XDrawPoints, XPoint \- draw points and points structure
|
||||
.SH SYNTAX
|
||||
XDrawPoint\^(\^\fIdisplay\fP, \fId\fP\^, \fIgc\fP\^, \fIx\fP\^, \fIy\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fId\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
int \fIx\fP\^, \fIy\fP\^;
|
||||
.LP
|
||||
XDrawPoints\^(\^\fIdisplay\fP, \fId\fP\^, \fIgc\fP\^, \fIpoints\fP\^, \fInpoints\fP\^, \fImode\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fId\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
XPoint *\fIpoints\fP\^;
|
||||
.br
|
||||
int \fInpoints\fP\^;
|
||||
.br
|
||||
int \fImode\fP\^;
|
||||
.HP
|
||||
int XDrawPoint\^(\^Display *\fIdisplay\fP\^, Drawable \fId\fP\^, GC
|
||||
\fIgc\fP\^, int \fIx\fP\^, int \fIy\fP\^);
|
||||
.HP
|
||||
int XDrawPoints\^(\^Display *\fIdisplay\fP\^, Drawable \fId\fP\^, GC
|
||||
\fIgc\fP\^, XPoint *\fIpoints\fP\^, int \fInpoints\fP\^, int \fImode\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fId\fP 1i
|
||||
Specifies the drawable.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XDrRect.man,v 1.3 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,29 +144,13 @@
|
|||
.SH NAME
|
||||
XDrawRectangle, XDrawRectangles, XRectangle \- draw rectangles and rectangles structure
|
||||
.SH SYNTAX
|
||||
XDrawRectangle\^(\^\fIdisplay\fP, \fId\fP\^, \fIgc\fP\^, \fIx\fP\^, \fIy\fP\^, \fIwidth\fP\^, \fIheight\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fId\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
int \fIx\fP\^, \fIy\fP\^;
|
||||
.br
|
||||
unsigned int \fIwidth\fP\^, \fIheight\fP\^;
|
||||
.LP
|
||||
XDrawRectangles\^(\^\fIdisplay\fP, \fId\fP\^, \fIgc\fP\^, \fIrectangles\fP\^, \fInrectangles\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fId\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
XRectangle \fIrectangles\fP\^[\^]\^;
|
||||
.br
|
||||
int \fInrectangles\fP\^;
|
||||
.HP
|
||||
int XDrawRectangle\^(\^Display *\fIdisplay\fP\^, Drawable \fId\fP\^, GC
|
||||
\fIgc\fP\^, int \fIx\fP\^, int \fIy\fP\^, unsigned int \fIwidth\fP\^, unsigned
|
||||
int \fIheight\fP\^);
|
||||
.HP
|
||||
int XDrawRectangles\^(\^Display *\fIdisplay\fP\^, Drawable \fId\fP\^, GC
|
||||
\fIgc\fP\^, XRectangle \fIrectangles\fP\^[\^]\^, int \fInrectangles\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fId\fP 1i
|
||||
Specifies the drawable.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XDrString.man,v 1.4 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,33 +144,14 @@
|
|||
.SH NAME
|
||||
XDrawString, XDrawString16 \- draw text characters
|
||||
.SH SYNTAX
|
||||
XDrawString\^(\^\fIdisplay\fP, \fId\fP\^, \fIgc\fP\^, \fIx\fP\^, \fIy\fP\^, \fIstring\fP\^, \fIlength\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fId\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
int \fIx\fP\^, \fIy\fP\^;
|
||||
.br
|
||||
char *\fIstring\fP\^;
|
||||
.br
|
||||
int \fIlength\fP\^;
|
||||
.LP
|
||||
XDrawString16\^(\^\fIdisplay\fP, \fId\fP\^, \fIgc\fP\^, \fIx\fP\^, \fIy\fP\^, \fIstring\fP\^, \fIlength\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fId\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
int \fIx\fP\^, \fIy\fP\^;
|
||||
.br
|
||||
XChar2b *\fIstring\fP\^;
|
||||
.br
|
||||
int \fIlength\fP\^;
|
||||
.HP
|
||||
int XDrawString\^(\^Display *\fIdisplay\fP\^, Drawable \fId\fP\^, GC
|
||||
\fIgc\fP\^, int \fIx\fP\^, int \fIy\fP\^, char *\fIstring\fP\^, int
|
||||
\fIlength\fP\^);
|
||||
.HP
|
||||
int XDrawString16\^(\^Display *\fIdisplay\fP\^, Drawable \fId\fP\^, GC
|
||||
\fIgc\fP\^, int \fIx\fP\^, int \fIy\fP\^, XChar2b *\fIstring\fP\^, int
|
||||
\fIlength\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fId\fP 1i
|
||||
Specifies the drawable.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XDrText.man,v 1.4 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,33 +144,13 @@
|
|||
.SH NAME
|
||||
XDrawText, XDrawText16, XTextItem, XTextItem16 \- draw polytext text and text drawing structures
|
||||
.SH SYNTAX
|
||||
XDrawText\^(\^\fIdisplay\fP, \fId\fP\^, \fIgc\fP\^, \fIx\fP\^, \fIy\fP\^, \fIitems\fP\^, \fInitems\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fId\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
int \fIx\fP\^, \fIy\fP\^;
|
||||
.br
|
||||
XTextItem *\fIitems\fP\^;
|
||||
.br
|
||||
int \fInitems\fP\^;
|
||||
.LP
|
||||
XDrawText16\^(\^\fIdisplay\fP, \fId\fP\^, \fIgc\fP\^, \fIx\fP\^, \fIy\fP\^, \fIitems\fP\^, \fInitems\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fId\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
int \fIx\fP\^, \fIy\fP\^;
|
||||
.br
|
||||
XTextItem16 *\fIitems\fP\^;
|
||||
.br
|
||||
int \fInitems\fP\^;
|
||||
.HP
|
||||
int XDrawText\^(\^Display *\fIdisplay\fP\^, Drawable \fId\fP\^, GC \fIgc\fP\^,
|
||||
int \fIx\fP\^, int \fIy\fP\^, XTextItem *\fIitems\fP\^, int \fInitems\fP\^);
|
||||
.HP
|
||||
int XDrawText16\^(\^Display *\fIdisplay\fP\^, Drawable \fId\fP\^, GC
|
||||
\fIgc\fP\^, int \fIx\fP\^, int \fIy\fP\^, XTextItem16 *\fIitems\fP\^, int
|
||||
\fInitems\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fId\fP 1i
|
||||
Specifies the drawable.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XERegion.man,v 1.4 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,27 +144,15 @@
|
|||
.SH NAME
|
||||
XEmptyRegion, XEqualRegion, XPointInRegion, XRectInRegion \- determine if regions are empty or equal
|
||||
.SH SYNTAX
|
||||
Bool XEmptyRegion\^(\^\fIr\fP\^)
|
||||
.br
|
||||
Region \fIr\fP\^;
|
||||
.LP
|
||||
Bool XEqualRegion\^(\^\fIr1\fP\^, \fIr2\fP\^)
|
||||
.br
|
||||
Region \fIr1\fP\^, \fIr2\fP\^;
|
||||
.LP
|
||||
Bool XPointInRegion\^(\^\fIr\fP\^, \fIx\fP\^, \fIy\fP\^)
|
||||
.br
|
||||
Region \fIr\fP\^;
|
||||
.br
|
||||
int \fIx\fP\^, \fIy\fP\^;
|
||||
.LP
|
||||
int XRectInRegion\^(\^\fIr\fP\^, \fIx\fP\^, \fIy\fP\^, \fIwidth\fP\^, \fIheight\fP\^)
|
||||
.br
|
||||
Region \fIr\fP\^;
|
||||
.br
|
||||
int \fIx\fP\^, \fIy\fP\^;
|
||||
.br
|
||||
unsigned int \fIwidth\fP\^, \fIheight\fP\^;
|
||||
.HP
|
||||
Bool XEmptyRegion\^(\^Region \fIr\fP\^);
|
||||
.HP
|
||||
Bool XEqualRegion\^(\^Region \fIr1\fP\^, Region \fIr2\fP\^);
|
||||
.HP
|
||||
Bool XPointInRegion\^(\^Region \fIr\fP\^, int \fIx\fP\^, int \fIy\fP\^);
|
||||
.HP
|
||||
int XRectInRegion\^(\^Region \fIr\fP\^, int \fIx\fP\^, int \fIy\fP\^, unsigned
|
||||
int \fIwidth\fP\^, unsigned int \fIheight\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIr\fP 1i
|
||||
Specifies the region.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XEofFSet.man,v 1.3 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,9 +144,8 @@
|
|||
.SH NAME
|
||||
XExtentsOfFontSet \- obtain the maximum extents structure for a font set
|
||||
.SH SYNTAX
|
||||
XFontSetExtents *XExtentsOfFontSet\^(\^\fIfont_set\fP\^)
|
||||
.br
|
||||
XFontSet \fIfont_set\fP\^;
|
||||
.HP
|
||||
XFontSetExtents *XExtentsOfFontSet\^(\^XFontSet \fIfont_set\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIfont_set\fP 1i
|
||||
Specifies the font set.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XFillRect.man,v 1.4 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,71 +144,24 @@
|
|||
.SH NAME
|
||||
XFillRectangle, XFillRectangles, XFillPolygon, XFillArc, XFillArcs \- fill rectangles, polygons, or arcs
|
||||
.SH SYNTAX
|
||||
XFillRectangle\^(\^\fIdisplay\fP, \fId\fP\^, \fIgc\fP\^, \fIx\fP\^, \fIy\fP\^, \fIwidth\fP\^, \fIheight\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fId\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
int \fIx\fP\^, \fIy\fP\^;
|
||||
.br
|
||||
unsigned int \fIwidth\fP\^, \fIheight\fP\^;
|
||||
.LP
|
||||
XFillRectangles\^(\^\fIdisplay\fP, \fId\fP\^, \fIgc\fP\^, \fIrectangles\fP\^, \fInrectangles\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fId\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
XRectangle *\fIrectangles\fP\^;
|
||||
.br
|
||||
int \fInrectangles\fP\^;
|
||||
.LP
|
||||
XFillPolygon\^(\^\fIdisplay\fP, \fId\fP\^, \fIgc\fP\^, \fIpoints\fP\^, \fInpoints\fP\^, \fIshape\fP\^, \fImode\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fId\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
XPoint *\fIpoints\fP\^;
|
||||
.br
|
||||
int \fInpoints\fP\^;
|
||||
.br
|
||||
int \fIshape\fP\^;
|
||||
.br
|
||||
int \fImode\fP\^;
|
||||
.LP
|
||||
XFillArc\^(\^\fIdisplay\fP, \fId\fP\^, \fIgc\fP\^, \fIx\fP\^, \fIy\fP\^, \fIwidth\fP\^, \fIheight\fP\^, \fIangle1\fP\^, \fIangle2\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fId\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
int \fIx\fP\^, \fIy\fP\^;
|
||||
.br
|
||||
unsigned int \fIwidth\fP\^, \fIheight\fP\^;
|
||||
.br
|
||||
int \fIangle1\fP\^, \fIangle2\fP\^;
|
||||
.LP
|
||||
XFillArcs\^(\^\fIdisplay\fP, \fId\fP\^, \fIgc\fP\^, \fIarcs\fP\^, \fInarcs\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fId\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
XArc *\fIarcs\fP\^;
|
||||
.br
|
||||
int \fInarcs\fP\^;
|
||||
.HP
|
||||
int XFillRectangle\^(\^Display *\fIdisplay\fP\^, Drawable \fId\fP\^, GC
|
||||
\fIgc\fP\^, int \fIx\fP\^, int \fIy\fP\^, unsigned int \fIwidth\fP\^, unsigned
|
||||
int \fIheight\fP\^);
|
||||
.HP
|
||||
int XFillRectangles\^(\^Display *\fIdisplay\fP\^, Drawable \fId\fP\^, GC
|
||||
\fIgc\fP\^, XRectangle *\fIrectangles\fP\^, int \fInrectangles\fP\^);
|
||||
.HP
|
||||
int XFillPolygon\^(\^Display *\fIdisplay\fP\^, Drawable \fId\fP\^, GC
|
||||
\fIgc\fP\^, XPoint *\fIpoints\fP\^, int \fInpoints\fP\^, int \fIshape\fP\^,
|
||||
int \fImode\fP\^);
|
||||
.HP
|
||||
int XFillArc\^(\^Display *\fIdisplay\fP\^, Drawable \fId\fP\^, GC \fIgc\fP\^,
|
||||
int \fIx\fP\^, int \fIy\fP\^, unsigned int \fIwidth\fP\^, unsigned int
|
||||
\fIheight\fP\^, int \fIangle1\fP\^, int \fIangle2\fP\^);
|
||||
.HP
|
||||
int XFillArcs\^(\^Display *\fIdisplay\fP\^, Drawable \fId\fP\^, GC \fIgc\fP\^,
|
||||
XArc *\fIarcs\fP\^, int \fInarcs\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIangle1\fP 1i
|
||||
Specifies the start of the arc relative to the three-o'clock position
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XFEvent.man,v 1.3 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,11 +144,8 @@
|
|||
.SH NAME
|
||||
XFilterEvent \- filter X events for an input method
|
||||
.SH SYNTAX
|
||||
Bool XFilterEvent\^(\^\fIevent\fP\^, \fIw\fP\^)
|
||||
.br
|
||||
XEvent *\fIevent\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.HP
|
||||
Bool XFilterEvent\^(\^XEvent *\fIevent\fP\^, Window \fIw\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.ds Ev event to filter
|
||||
.IP \fIevent\fP 1i
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XFlush.man,v 1.3 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,25 +144,14 @@
|
|||
.SH NAME
|
||||
XFlush, XSync, XEventsQueued, XPending \- handle output buffer or event queue
|
||||
.SH SYNTAX
|
||||
XFlush\^(\^\fIdisplay\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.LP
|
||||
XSync\^(\^\fIdisplay\fP, \fIdiscard\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Bool \fIdiscard\fP\^;
|
||||
.LP
|
||||
int XEventsQueued\^(\^\fIdisplay\fP, \fImode\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
int \fImode\fP\^;
|
||||
.LP
|
||||
int XPending\^(\^\fIdisplay\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.HP
|
||||
int XFlush\^(\^Display *\fIdisplay\fP\^);
|
||||
.HP
|
||||
int XSync\^(\^Display *\fIdisplay\fP\^, Bool \fIdiscard\fP\^);
|
||||
.HP
|
||||
int XEventsQueued\^(\^Display *\fIdisplay\fP\^, int \fImode\fP\^);
|
||||
.HP
|
||||
int XPending\^(\^Display *\fIdisplay\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdiscard\fP 1i
|
||||
Specifies a Boolean value that indicates whether
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XFofFSet.man,v 1.3 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,33 +144,19 @@
|
|||
.SH NAME
|
||||
XFontsOfFontSet, XBaseFontNameListOfFontSet, XLocaleOfFontSet, XContextDependentDrawing, XContextualDrawing, XDirectionalDependentDrawing \- obtain fontset information
|
||||
.SH SYNTAX
|
||||
int XFontsOfFontSet\^(\^\fIfont_set\fP\^, \fIfont_struct_list_return\fP\^, \fIfont_name_list_return\fP\^)
|
||||
.br
|
||||
XFontSet \fIfont_set\fP\^;
|
||||
.br
|
||||
XFontStruct ***\fIfont_struct_list_return\fP\^;
|
||||
.br
|
||||
char ***\fIfont_name_list_return\fP\^;
|
||||
.LP
|
||||
char *XBaseFontNameListOfFontSet\^(\^\fIfont_set\fP\^)
|
||||
.br
|
||||
XFontSet \fIfont_set\fP\^;
|
||||
.LP
|
||||
char *XLocaleOfFontSet\^(\^\fIfont_set\fP\^)
|
||||
.br
|
||||
XFontSet \fIfont_set\fP\^;
|
||||
.LP
|
||||
Bool XContextDependentDrawing\^(\^\fIfont_set\fP\^)
|
||||
.br
|
||||
XFontSet \fIfont_set\fP\^;
|
||||
.LP
|
||||
Bool XContextualDrawing\^(\^\fIfont_set\fP\^)
|
||||
.br
|
||||
XFontSet \fIfont_set\fP\^;
|
||||
.LP
|
||||
Bool XDirectionalDependentDrawing\^(\^\fIfont_set\fP\^)
|
||||
.br
|
||||
XFontSet \fIfont_set\fP\^;
|
||||
.HP
|
||||
int XFontsOfFontSet\^(\^XFontSet \fIfont_set\fP\^, XFontStruct
|
||||
***\fIfont_struct_list_return\fP\^, char ***\fIfont_name_list_return\fP\^);
|
||||
.HP
|
||||
char *XBaseFontNameListOfFontSet\^(\^XFontSet \fIfont_set\fP\^);
|
||||
.HP
|
||||
char *XLocaleOfFontSet\^(\^XFontSet \fIfont_set\fP\^);
|
||||
.HP
|
||||
Bool XContextDependentDrawing\^(\^XFontSet \fIfont_set\fP\^);
|
||||
.HP
|
||||
Bool XContextualDrawing\^(\^XFontSet \fIfont_set\fP\^);
|
||||
.HP
|
||||
Bool XDirectionalDependentDrawing\^(\^XFontSet \fIfont_set\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIfont_set\fP 1i
|
||||
Specifies the font set.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XFree.man,v 1.3 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,12 +144,10 @@
|
|||
.SH NAME
|
||||
XFree \- free client data
|
||||
.SH SYNTAX
|
||||
XFree\^(\^\fIdata\fP\^)
|
||||
.br
|
||||
void *\fIdata\fP\^;
|
||||
int XFree\^(\^void *\fIdata\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdata\fP 1i
|
||||
Specifies the data that is to be freed.
|
||||
Specifies the data that are to be freed.
|
||||
.SH DESCRIPTION
|
||||
The
|
||||
.ZN XFree
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XGetVInfo.man,v 1.4 2003/04/28 22:17:55 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -146,31 +146,15 @@
|
|||
.SH NAME
|
||||
XGetVisualInfo, XMatchVisualInfo, XVisualIDFromVisual, XVisualInfo \- obtain visual information and visual structure
|
||||
.SH SYNTAX
|
||||
XVisualInfo *XGetVisualInfo\^(\^\fIdisplay\fP, \fIvinfo_mask\fP, \fIvinfo_template\fP, \fInitems_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
long \fIvinfo_mask\fP\^;
|
||||
.br
|
||||
XVisualInfo *\fIvinfo_template\fP\^;
|
||||
.br
|
||||
int *\fInitems_return\fP\^;
|
||||
.LP
|
||||
Status XMatchVisualInfo\^(\^\fIdisplay\fP, \fIscreen\fP, \fIdepth\fP, \fIclass\fP, \fIvinfo_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
int \fIscreen\fP\^;
|
||||
.br
|
||||
int \fIdepth\fP\^;
|
||||
.br
|
||||
int \fIclass\fP\^;
|
||||
.br
|
||||
XVisualInfo *\fIvinfo_return\fP\^;
|
||||
.LP
|
||||
VisualID XVisualIDFromVisual\^(\^\fIvisual\fP\^)
|
||||
.br
|
||||
Visual *\^\fIvisual\fP\^;
|
||||
.HP
|
||||
XVisualInfo *XGetVisualInfo\^(\^Display *\fIdisplay\fP\^, long
|
||||
\fIvinfo_mask\fP\^, XVisualInfo *\fIvinfo_template\fP\^, int
|
||||
*\fInitems_return\fP\^);
|
||||
.HP
|
||||
Status XMatchVisualInfo\^(\^Display *\fIdisplay\fP\^, int \fIscreen\fP\^, int
|
||||
\fIdepth\fP\^, int \fIclass\fP\^, XVisualInfo *\fIvinfo_return\fP\^);
|
||||
.HP
|
||||
VisualID XVisualIDFromVisual\^(\^Visual *\^\fIvisual\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIclass\fP 1i
|
||||
Specifies the class of the screen.
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XGetWAttr.man,v 1.3 2003/04/28 22:17:55 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -146,31 +146,14 @@
|
|||
.SH NAME
|
||||
XGetWindowAttributes, XGetGeometry, XWindowAttributes \- get current window attribute or geometry and current window attributes structure
|
||||
.SH SYNTAX
|
||||
Status XGetWindowAttributes\^(\^\fIdisplay\fP, \fIw\fP\^, \fIwindow_attributes_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
XWindowAttributes *\fIwindow_attributes_return\fP\^;
|
||||
.LP
|
||||
Status XGetGeometry\^(\^\fIdisplay\fP, \fId\fP\^, \^\fIroot_return\fP\^, \fIx_return\fP\^, \fIy_return\fP\^, \fIwidth_return\fP\^,
|
||||
.br
|
||||
\fIheight_return\fP\^, \fIborder_width_return\fP\^, \fIdepth_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fId\fP\^;
|
||||
.br
|
||||
Window *\fIroot_return\fP\^;
|
||||
.br
|
||||
int *\fIx_return\fP\^, *\fIy_return\fP\^;
|
||||
.br
|
||||
unsigned int *\fIwidth_return\fP\^, *\fIheight_return\fP\^;
|
||||
.br
|
||||
unsigned int *\fIborder_width_return\fP\^;
|
||||
.br
|
||||
unsigned int *\fIdepth_return\fP\^;
|
||||
.HP
|
||||
Status XGetWindowAttributes\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^,
|
||||
XWindowAttributes *\fIwindow_attributes_return\fP\^);
|
||||
.HP
|
||||
Status XGetGeometry\^(\^Display *\fIdisplay\fP\^, Drawable \fId\fP\^, Window
|
||||
*\fIroot_return\fP\^, int *\fIx_return\fP\^, int *\fIy_return\fP\^, unsigned
|
||||
int *\fIwidth_return\fP\^, unsigned int *\fIheight_return\fP\^, unsigned int
|
||||
*\fIborder_width_return\fP\^, unsigned int *\fIdepth_return\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIborder_width_return\fP 1i
|
||||
Returns the border width in pixels.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XGetWProp.man,v 1.3 2003/04/28 22:17:55 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,77 +144,24 @@
|
|||
.SH NAME
|
||||
XGetWindowProperty, XListProperties, XChangeProperty, XRotateWindowProperties, XDeleteProperty \- obtain and change window properties
|
||||
.SH SYNTAX
|
||||
int XGetWindowProperty\^(\^\fIdisplay\fP, \fIw\fP\^, \fIproperty\fP\^, \fIlong_offset\fP\^, \fIlong_length\fP\^, \fIdelete\fP\^, \fIreq_type\fP\^,
|
||||
.br
|
||||
\fIactual_type_return\fP\^, \fIactual_format_return\fP\^, \fInitems_return\fP\^, \fIbytes_after_return\fP\^,
|
||||
.br
|
||||
\fIprop_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
Atom \fIproperty\fP\^;
|
||||
.br
|
||||
long \fIlong_offset\fP\^, \fIlong_length\fP\^;
|
||||
.br
|
||||
Bool \fIdelete\fP\^;
|
||||
.br
|
||||
Atom \fIreq_type\fP\^;
|
||||
.br
|
||||
Atom *\fIactual_type_return\fP\^;
|
||||
.br
|
||||
int *\fIactual_format_return\fP\^;
|
||||
.br
|
||||
unsigned long *\fInitems_return\fP\^;
|
||||
.br
|
||||
unsigned long *\fIbytes_after_return\fP\^;
|
||||
.br
|
||||
unsigned char **\fIprop_return\fP\^;
|
||||
.LP
|
||||
Atom *XListProperties\^(\^\fIdisplay\fP, \fIw\fP\^, \fInum_prop_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
int *\fInum_prop_return\fP\^;
|
||||
.LP
|
||||
XChangeProperty\^(\^\fIdisplay\fP, \fIw\fP\^, \fIproperty\fP\^, \fItype\fP\^, \fIformat\fP\^, \fImode\fP\^, \fIdata\fP\^, \fInelements\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
Atom \fIproperty\fP\^, \fItype\fP\^;
|
||||
.br
|
||||
int \fIformat\fP\^;
|
||||
.br
|
||||
int \fImode\fP\^;
|
||||
.br
|
||||
unsigned char *\fIdata\fP\^;
|
||||
.br
|
||||
int \fInelements\fP\^;
|
||||
.LP
|
||||
XRotateWindowProperties\^(\^\fIdisplay\fP, \fIw\fP, \fIproperties\fP, \fInum_prop\fP, \fInpositions\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
Atom \fIproperties\fP\^[]\^;
|
||||
.br
|
||||
int \fInum_prop\fP\^;
|
||||
.br
|
||||
int \fInpositions\fP\^;
|
||||
.LP
|
||||
XDeleteProperty\^(\^\fIdisplay\fP, \fIw\fP\^, \fIproperty\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
Atom \fIproperty\fP\^;
|
||||
.HP
|
||||
int XGetWindowProperty\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^, Atom
|
||||
\fIproperty\fP\^, long \fIlong_offset\fP\^, long \fIlong_length\fP\^, Bool
|
||||
\fIdelete\fP\^, Atom \fIreq_type\fP\^, Atom *\fIactual_type_return\fP\^, int
|
||||
*\fIactual_format_return\fP\^, unsigned long *\fInitems_return\fP\^, unsigned
|
||||
long *\fIbytes_after_return\fP\^, unsigned char **\fIprop_return\fP\^);
|
||||
.HP
|
||||
Atom *XListProperties\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^, int
|
||||
*\fInum_prop_return\fP\^);
|
||||
int XChangeProperty\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^, Atom
|
||||
\fIproperty\fP\^, Atom \fItype\fP\^, int \fIformat\fP\^, int \fImode\fP\^,
|
||||
unsigned char *\fIdata\fP\^, int \fInelements\fP\^);
|
||||
.HP
|
||||
int XRotateWindowProperties\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^,
|
||||
Atom \fIproperties\fP\^[]\^, int \fInum_prop\fP\^, int \fInpositions\fP\^);
|
||||
.HP
|
||||
int XDeleteProperty\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^, Atom
|
||||
\fIproperty\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIactual_format_return\fP 1i
|
||||
Returns the actual format of the property.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XGrButton.man,v 1.3 2003/04/28 22:17:55 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,37 +144,15 @@
|
|||
.SH NAME
|
||||
XGrabButton, XUngrabButton \- grab pointer buttons
|
||||
.SH SYNTAX
|
||||
XGrabButton\^(\^\fIdisplay\fP, \fIbutton\fP\^, \fImodifiers\fP\^, \fIgrab_window\fP\^, \fIowner_events\fP\^, \fIevent_mask\fP\^,
|
||||
.br
|
||||
\fIpointer_mode\fP\^, \fIkeyboard_mode\fP\^, \fIconfine_to\fP\^, \fIcursor\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
unsigned int \fIbutton\fP\^;
|
||||
.br
|
||||
unsigned int \fImodifiers\fP\^;
|
||||
.br
|
||||
Window \fIgrab_window\fP\^;
|
||||
.br
|
||||
Bool \fIowner_events\fP\^;
|
||||
.br
|
||||
unsigned int \fIevent_mask\fP\^;
|
||||
.br
|
||||
int \fIpointer_mode\fP\^, \fIkeyboard_mode\fP\^;
|
||||
.br
|
||||
Window \fIconfine_to\fP\^;
|
||||
.br
|
||||
Cursor \fIcursor\fP\^;
|
||||
.LP
|
||||
XUngrabButton\^(\^\fIdisplay\fP, \fIbutton\fP\^, \fImodifiers\fP\^, \fIgrab_window\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
unsigned int \fIbutton\fP\^;
|
||||
.br
|
||||
unsigned int \fImodifiers\fP\^;
|
||||
.br
|
||||
Window \fIgrab_window\fP\^;
|
||||
.HP
|
||||
int XGrabButton\^(\^Display *\fIdisplay\fP\^, unsigned int \fIbutton\fP\^,
|
||||
unsigned int \fImodifiers\fP\^, Window \fIgrab_window\fP\^, Bool
|
||||
\fIowner_events\fP\^, unsigned int \fIevent_mask\fP\^, int
|
||||
\fIpointer_mode\fP\^, \fIkeyboard_mode\fP\^, Window \fIconfine_to\fP\^, Cursor
|
||||
\fIcursor\fP\^);
|
||||
.HP
|
||||
int XUngrabButton\^(\^Display *\fIdisplay\fP\^, unsigned int \fIbutton\fP\^,
|
||||
unsigned int \fImodifiers\fP\^, Window \fIgrab_window\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.ds Bu grabbed or released
|
||||
.IP \fIbutton\fP 1i
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XGrKey.man,v 1.3 2003/04/28 22:17:55 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,31 +144,13 @@
|
|||
.SH NAME
|
||||
XGrabKey, XUngrabKey \- grab keyboard keys
|
||||
.SH SYNTAX
|
||||
XGrabKey\^(\^\fIdisplay\fP, \fIkeycode\fP\^, \fImodifiers\fP\^, \fIgrab_window\fP\^, \fIowner_events\fP\^, \fIpointer_mode\fP\^,
|
||||
.br
|
||||
\fIkeyboard_mode\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
int \fIkeycode\fP\^;
|
||||
.br
|
||||
unsigned int \fImodifiers\fP\^;
|
||||
.br
|
||||
Window \fIgrab_window\fP\^;
|
||||
.br
|
||||
Bool \fIowner_events\fP\^;
|
||||
.br
|
||||
int \fIpointer_mode\fP\^, \fIkeyboard_mode\fP\^;
|
||||
.LP
|
||||
XUngrabKey\^(\^\fIdisplay\fP, \fIkeycode\fP\^, \fImodifiers\fP\^, \fIgrab_window\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
int \fIkeycode\fP\^;
|
||||
.br
|
||||
unsigned int \fImodifiers\fP\^;
|
||||
.br
|
||||
Window \fIgrab_window\fP\^;
|
||||
.HP
|
||||
int XGrabKey\^(\^Display *\fIdisplay\fP\^, int \fIkeycode\fP\^, unsigned int
|
||||
\fImodifiers\fP\^, Window \fIgrab_window\fP\^, Bool \fIowner_events\fP\^, int
|
||||
\fIpointer_mode\fP\^, int \fIkeyboard_mode\fP\^);
|
||||
.HP
|
||||
int XUngrabKey\^(\^Display *\fIdisplay\fP\^, int \fIkeycode\fP\^, unsigned int
|
||||
\fImodifiers\fP\^, Window \fIgrab_window\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XGrKeybrd.man,v 1.3 2003/04/28 22:17:55 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,23 +144,12 @@
|
|||
.SH NAME
|
||||
XGrabKeyboard, XUngrabKeyboard \- grab the keyboard
|
||||
.SH SYNTAX
|
||||
int XGrabKeyboard\^(\^\fIdisplay\fP, \fIgrab_window\fP\^, \fIowner_events\fP\^, \fIpointer_mode\fP\^, \fIkeyboard_mode\fP\^, \fItime\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIgrab_window\fP\^;
|
||||
.br
|
||||
Bool \fIowner_events\fP\^;
|
||||
.br
|
||||
int \fIpointer_mode\fP\^, \fIkeyboard_mode\fP\^;
|
||||
.br
|
||||
Time \fItime\fP\^;
|
||||
.LP
|
||||
XUngrabKeyboard\^(\^\fIdisplay\fP, \fItime\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Time \fItime\fP\^;
|
||||
.HP
|
||||
int XGrabKeyboard\^(\^Display *\fIdisplay\fP\^, Window \fIgrab_window\fP\^,
|
||||
Bool \fIowner_events\fP\^, int \fIpointer_mode\fP\^, int
|
||||
\fIkeyboard_mode\fP\^, Time \fItime\fP\^);
|
||||
.HP
|
||||
int XUngrabKeyboard\^(\^Display *\fIdisplay\fP\^, Time \fItime\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XGrPntr.man,v 1.3 2003/04/28 22:17:55 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,40 +144,16 @@
|
|||
.SH NAME
|
||||
XGrabPointer, XUngrabPointer, XChangeActivePointerGrab \- grab the pointer
|
||||
.SH SYNTAX
|
||||
int XGrabPointer\^(\^\fIdisplay\fP, \fIgrab_window\fP\^, \fIowner_events\fP\^, \fIevent_mask\fP\^, \fIpointer_mode\fP\^,
|
||||
\fIkeyboard_mode\fP\^, \fIconfine_to\fP\^, \fIcursor\fP\^, \fItime\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIgrab_window\fP\^;
|
||||
.br
|
||||
Bool \fIowner_events\fP\^;
|
||||
.br
|
||||
unsigned int \fIevent_mask\fP\^;
|
||||
.br
|
||||
int \fIpointer_mode\fP\^, \fIkeyboard_mode\fP\^;
|
||||
.br
|
||||
Window \fIconfine_to\fP\^;
|
||||
.br
|
||||
Cursor \fIcursor\fP\^;
|
||||
.br
|
||||
Time \fItime\fP\^;
|
||||
.LP
|
||||
XUngrabPointer\^(\^\fIdisplay\fP, \fItime\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Time \fItime\fP\^;
|
||||
.LP
|
||||
XChangeActivePointerGrab\^(\^\fIdisplay\fP, \fIevent_mask\fP\^, \fIcursor\fP\^, \fItime\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
unsigned int \fIevent_mask\fP\^;
|
||||
.br
|
||||
Cursor \fIcursor\fP\^;
|
||||
.br
|
||||
Time \fItime\fP\^;
|
||||
.HP
|
||||
int XGrabPointer\^(\^Display *\fIdisplay\fP\^, Window \fIgrab_window\fP\^,
|
||||
Bool \fIowner_events\fP\^, unsigned int \fIevent_mask\fP\^, int
|
||||
\fIpointer_mode\fP\^, int \fIkeyboard_mode\fP\^, Window \fIconfine_to\fP\^,
|
||||
Cursor \fIcursor\fP\^, Time \fItime\fP\^);
|
||||
.HP
|
||||
int XUngrabPointer\^(\^Display *\fIdisplay\fP\^, Time \fItime\fP\^);
|
||||
.HP
|
||||
int XChangeActivePointerGrab\^(\^Display *\fIdisplay\fP\^, unsigned int
|
||||
\fIevent_mask\fP\^, Cursor \fIcursor\fP\^, Time \fItime\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIconfine_to\fP 1i
|
||||
Specifies the window to confine the pointer in or
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XGrServer.man,v 1.3 2003/04/28 22:17:55 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,13 +144,10 @@
|
|||
.SH NAME
|
||||
XGrabServer, XUngrabServer \- grab the server
|
||||
.SH SYNTAX
|
||||
XGrabServer\^(\^\fIdisplay\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.LP
|
||||
XUngrabServer\^(\^\fIdisplay\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.HP
|
||||
int XGrabServer\^(\^Display *\fIdisplay\fP\^);
|
||||
.HP
|
||||
int XUngrabServer\^(\^Display *\fIdisplay\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XIcWin.man,v 1.4 2003/04/28 22:17:55 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,34 +144,16 @@
|
|||
.SH NAME
|
||||
XIconifyWindow, XWithdrawWindow, XReconfigureWMWindow \- manipulate top-level windows
|
||||
.SH SYNTAX
|
||||
Status XIconifyWindow\^(\^\fIdisplay\fP, \fIw\fP, \fIscreen_number\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP;
|
||||
.br
|
||||
int \fIscreen_number\fP\^;
|
||||
.LP
|
||||
Status XWithdrawWindow\^(\^\fIdisplay\fP, \fIw\fP, \fIscreen_number\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
int \fIscreen_number\fP\^;
|
||||
.LP
|
||||
Status XReconfigureWMWindow\^(\^\fIdisplay\fP, \fIw\fP, \fIscreen_number\fP,
|
||||
\fIvalue_mask\fP, \fIvalues\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
int \fIscreen_number\fP\^;
|
||||
.br
|
||||
unsigned int \fIvalue_mask\fP\^;
|
||||
.br
|
||||
XWindowChanges *\fIvalues\fP;
|
||||
.HP
|
||||
Status XIconifyWindow\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP, int
|
||||
\fIscreen_number\fP\^);
|
||||
.HP
|
||||
Status XWithdrawWindow\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^, int
|
||||
\fIscreen_number\fP\^);
|
||||
.HP
|
||||
Status XReconfigureWMWindow\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^,
|
||||
int \fIscreen_number\fP\^, unsigned int \fIvalue_mask\fP\^, XWindowChanges
|
||||
*\fIvalues\fP);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XIfEvent.man,v 1.3 2003/04/28 22:17:55 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,35 +144,15 @@
|
|||
.SH NAME
|
||||
XIfEvent, XCheckIfEvent, XPeekIfEvent \- check the event queue with a predicate procedure
|
||||
.SH SYNTAX
|
||||
XIfEvent\^(\^\fIdisplay\fP, \fIevent_return\fP, \fIpredicate\fP, \fIarg\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
XEvent *\fIevent_return\fP\^;
|
||||
.br
|
||||
Bool (\^*\fIpredicate\fP\^)\^(\^)\^;
|
||||
.br
|
||||
XPointer \fIarg\fP\^;
|
||||
.LP
|
||||
Bool XCheckIfEvent\^(\^\fIdisplay\fP, \fIevent_return\fP, \fIpredicate\fP, \fIarg\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
XEvent *\fIevent_return\fP\^;
|
||||
.br
|
||||
Bool (\^*\fIpredicate\fP\^)\^(\^)\^;
|
||||
.br
|
||||
XPointer \fIarg\fP\^;
|
||||
.LP
|
||||
XPeekIfEvent\^(\^\fIdisplay\fP, \fIevent_return\fP, \fIpredicate\fP, \fIarg\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
XEvent *\fIevent_return\fP\^;
|
||||
.br
|
||||
Bool (\^*\fIpredicate\fP\^)\^(\^)\^;
|
||||
.br
|
||||
XPointer \fIarg\fP\^;
|
||||
.HP
|
||||
int XIfEvent\^(\^Display *\fIdisplay\fP\^, XEvent *\fIevent_return\fP\^, Bool
|
||||
(\^*\fIpredicate\fP\^)\^(\^)\^, XPointer \fIarg\fP\^);
|
||||
.HP
|
||||
Bool XCheckIfEvent\^(\^Display *\fIdisplay\fP\^, XEvent *\fIevent_return\fP\^,
|
||||
Bool (\^*\fIpredicate\fP\^)\^(\^)\^, XPointer \fIarg\fP\^);
|
||||
.HP
|
||||
int XPeekIfEvent\^(\^Display *\fIdisplay\fP\^, XEvent *\fIevent_return\fP\^,
|
||||
Bool (\^*\fIpredicate\fP\^)\^(\^)\^, XPointer \fIarg\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIarg\fP 1i
|
||||
Specifies the user-supplied argument that will be passed to the predicate procedure.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XCreImage.man,v 1.3 2003/04/28 22:17:54 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,73 +144,26 @@
|
|||
.SH NAME
|
||||
XInitImage, XCreateImage, XGetPixel, XPutPixel, XSubImage, XAddPixel, XDestroyImage \- image utilities
|
||||
.SH SYNTAX
|
||||
Status XInitImage\^(\^\fIimage\fP\^)
|
||||
.br
|
||||
XImage *\fIimage\fP\^;
|
||||
.LP
|
||||
XImage *XCreateImage\^(\^\fIdisplay\fP, \fIvisual\fP, \fIdepth\fP, \fIformat\fP, \fIoffset\fP, \fIdata\fP, \fIwidth\fP, \fIheight\fP\^, \fIbitmap_pad\fP,
|
||||
.br
|
||||
\fIbytes_per_line\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Visual *\fIvisual\fP\^;
|
||||
.br
|
||||
unsigned int \fIdepth\fP\^;
|
||||
.br
|
||||
int \fIformat\fP\^;
|
||||
.br
|
||||
int \fIoffset\fP\^;
|
||||
.br
|
||||
char *\fIdata\fP\^;
|
||||
.br
|
||||
unsigned int \fIwidth\fP\^;
|
||||
.br
|
||||
unsigned int \fIheight\fP\^;
|
||||
.br
|
||||
int \fIbitmap_pad\fP\^;
|
||||
.br
|
||||
int \fIbytes_per_line\fP\^;
|
||||
.LP
|
||||
unsigned long XGetPixel\^(\^\fIximage\fP, \fIx\fP, \fIy\fP\^)
|
||||
.br
|
||||
XImage *\fIximage\fP\^;
|
||||
.br
|
||||
int \fIx\fP\^;
|
||||
.br
|
||||
int \fIy\fP\^;
|
||||
.LP
|
||||
XPutPixel\^(\^\fIximage\fP, \fIx\fP, \fIy\fP, \fIpixel\fP\^)
|
||||
.br
|
||||
XImage *\fIximage\fP\^;
|
||||
.br
|
||||
int \fIx\fP\^;
|
||||
.br
|
||||
int \fIy\fP\^;
|
||||
.br
|
||||
unsigned long \fIpixel\fP\^;
|
||||
.LP
|
||||
XImage *XSubImage\^(\^\fIximage\fP, \fIx\fP, \fIy\fP, \fIsubimage_width\fP, \fIsubimage_height\fP\^)
|
||||
.br
|
||||
XImage *\fIximage\fP\^;
|
||||
.br
|
||||
int \fIx\fP\^;
|
||||
.br
|
||||
int \fIy\fP\^;
|
||||
.br
|
||||
unsigned int \fIsubimage_width\fP\^;
|
||||
.br
|
||||
unsigned int \fIsubimage_height\fP\^;
|
||||
.LP
|
||||
XAddPixel\^(\^\fIximage\fP, \fIvalue\fP\^)
|
||||
.br
|
||||
XImage *\fIximage\fP\^;
|
||||
.br
|
||||
long \fIvalue\fP\^;
|
||||
.LP
|
||||
XDestroyImage\^(\^\fIximage\fP\^)
|
||||
.br
|
||||
XImage *\^\fIximage\fP\^;
|
||||
.HP
|
||||
Status XInitImage\^(\^XImage *\fIimage\fP\^);
|
||||
.HP
|
||||
XImage *XCreateImage\^(\^Display *\fIdisplay\fP\^, Visual *\fIvisual\fP\^,
|
||||
unsigned int \fIdepth\fP\^, int \fIformat\fP\^, int \fIoffset\fP\^, char
|
||||
*\fIdata\fP\^, unsigned int \fIwidth\fP\^, unsigned int \fIheight\fP\^, int
|
||||
\fIbitmap_pad\fP\^, int \fIbytes_per_line\fP\^);
|
||||
.HP
|
||||
unsigned long XGetPixel\^(\^XImage *\fIximage\fP\^, int \fIx\fP\^, int
|
||||
\fIy\fP\^);
|
||||
.HP
|
||||
int XPutPixel\^(\^XImage *\fIximage\fP\^, int \fIx\fP\^, int \fIy\fP\^,
|
||||
unsigned long \fIpixel\fP\^);
|
||||
.HP
|
||||
XImage *XSubImage\^(\^XImage *\fIximage\fP\^, int \fIx\fP\^, int \fIy\fP\^,
|
||||
unsigned int \fIsubimage_width\fP\^, unsigned int \fIsubimage_height\fP\^);
|
||||
.HP
|
||||
int XAddPixel\^(\^XImage *\fIximage\fP\^, long \fIvalue\fP\^);
|
||||
.HP
|
||||
int XDestroyImage\^(\^XImage *\^\fIximage\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIbitmap_pad\fP 1i
|
||||
Specifies the quantum of a scanline (8, 16, or 32).
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XThreads.man,v 1.3 2003/04/28 22:17:57 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,15 +144,12 @@
|
|||
.SH NAME
|
||||
XInitThreads, XLockDisplay, XUnlockDisplay \- multi-threading support
|
||||
.SH SYNTAX
|
||||
Status XInitThreads\^(\|);
|
||||
.LP
|
||||
void XLockDisplay\^(\^\fIdisplay\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.LP
|
||||
void XUnlockDisplay\^(\^\fIdisplay\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.HP
|
||||
Status XInitThreads\^(void);
|
||||
.HP
|
||||
void XLockDisplay\^(\^Display *\fIdisplay\fP\^);
|
||||
.HP
|
||||
void XUnlockDisplay\^(\^Display *\fIdisplay\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XInstCmap.man,v 1.4 2003/04/28 22:17:55 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,25 +144,14 @@
|
|||
.SH NAME
|
||||
XInstallColormap, XUninstallColormap, XListInstalledColormaps \- control colormaps
|
||||
.SH SYNTAX
|
||||
XInstallColormap\^(\^\fIdisplay\fP, \fIcolormap\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Colormap \fIcolormap\fP\^;
|
||||
.LP
|
||||
XUninstallColormap\^(\^\fIdisplay\fP, \fIcolormap\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Colormap \fIcolormap\fP\^;
|
||||
.LP
|
||||
Colormap *XListInstalledColormaps\^(\^\fIdisplay\fP, \fIw\fP, \fInum_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
int *\fInum_return\fP\^;
|
||||
.HP
|
||||
int XInstallColormap\^(\^Display *\fIdisplay\fP\^, Colormap \fIcolormap\fP\^);
|
||||
.HP
|
||||
int XUninstallColormap\^(\^Display *\fIdisplay\fP\^, Colormap
|
||||
\fIcolormap\fP\^);
|
||||
.HP
|
||||
Colormap *XListInstalledColormaps\^(\^Display *\fIdisplay\fP\^, Window
|
||||
\fIw\fP\^, int *\fInum_return\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIcolormap\fP 1i
|
||||
Specifies the colormap.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XInternA.man,v 1.3 2003/04/28 22:17:55 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,41 +144,17 @@
|
|||
.SH NAME
|
||||
XInternAtom, XInternAtoms, XGetAtomName, XGetAtomNames \- create or return atom names
|
||||
.SH SYNTAX
|
||||
Atom XInternAtom\^(\^\fIdisplay\fP, \fIatom_name\fP\^, \fIonly_if_exists\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
char *\fIatom_name\fP\^;
|
||||
.br
|
||||
Bool \fIonly_if_exists\fP\^;
|
||||
.LP
|
||||
Status XInternAtoms\^(\^\fIdisplay\fP, \fInames\fP\^, \fIcount\fP\^, \fIonly_if_exists\fP, \fIatoms_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
char **\fInames\fP\^;
|
||||
.br
|
||||
int \fIcount\fP\^;
|
||||
.br
|
||||
Bool \fIonly_if_exists\fP\^;
|
||||
.br
|
||||
Atom *\fIatoms_return\fP\^;
|
||||
.LP
|
||||
char *XGetAtomName\^(\^\fIdisplay\fP, \fIatom\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Atom \fIatom\fP\^;
|
||||
.LP
|
||||
Status XGetAtomNames\^(\^\fIdisplay\fP, \fIatoms\fP, \fIcount\fP\^, \fInames_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Atom *\fIatoms\fP\^;
|
||||
.br
|
||||
int \fIcount\fP\^;
|
||||
.br
|
||||
char **\fInames_return\fP\^;
|
||||
.HP
|
||||
Atom XInternAtom\^(\^Display *\fIdisplay\fP\^, char *\fIatom_name\fP\^, Bool
|
||||
\fIonly_if_exists\fP\^);
|
||||
.HP
|
||||
Status XInternAtoms\^(\^Display *\fIdisplay\fP\^, char **\fInames\fP\^, int
|
||||
\fIcount\fP\^, Bool \fIonly_if_exists\fP\^, Atom *\fIatoms_return\fP\^);
|
||||
.HP
|
||||
char *XGetAtomName\^(\^Display *\fIdisplay\fP\^, Atom \fIatom\fP\^);
|
||||
.HP
|
||||
Status XGetAtomNames\^(\^Display *\fIdisplay\fP\^, Atom *\fIatoms\fP\^, int
|
||||
\fIcount\fP\^, char **\fInames_return\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIatom\fP 1i
|
||||
Specifies the atom for the property name you want returned.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XInterReg.man,v 1.4 2003/04/28 22:17:55 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,42 +144,25 @@
|
|||
.SH NAME
|
||||
XIntersectRegion, XUnionRegion, XUnionRectWithRegion, XSubtractRegion, XXorRegion, XOffsetRegion, XShrinkRegion \- region arithmetic
|
||||
.SH SYNTAX
|
||||
XIntersectRegion\^(\^\fIsra\fP\^, \fIsrb\fP\^, \fIdr_return\fP\^)
|
||||
.br
|
||||
Region \fIsra\fP\^, \fIsrb\fP\^, \fIdr_return\fP\^;
|
||||
.LP
|
||||
XUnionRegion\^(\^\fIsra\fP\^, \fIsrb\fP\^, \fIdr_return\fP\^)
|
||||
.br
|
||||
Region \fIsra\fP\^, \fIsrb\fP\^, \fIdr_return\fP\^;
|
||||
.LP
|
||||
XUnionRectWithRegion\^(\^\fIrectangle\fP, \fIsrc_region\fP,
|
||||
\fIdest_region_return\fP\^)
|
||||
.br
|
||||
XRectangle *\fIrectangle\fP\^;
|
||||
.br
|
||||
Region \fIsrc_region\fP\^;
|
||||
.br
|
||||
Region \fIdest_region_return\fP\^;
|
||||
.LP
|
||||
XSubtractRegion\^(\^\fIsra\fP\^, \fIsrb\fP\^, \fIdr_return\fP\^)
|
||||
.br
|
||||
Region \fIsra\fP\^, \fIsrb\fP\^, \fIdr_return\fP\^;
|
||||
.LP
|
||||
XXorRegion\^(\^\fIsra\fP\^, \fIsrb\fP\^, \fIdr_return\fP\^)
|
||||
.br
|
||||
Region \fIsra\fP\^, \fIsrb\fP\^, \fIdr_return\fP\^;
|
||||
.LP
|
||||
XOffsetRegion\^(\^\fIr\fP\^, \fIdx\fP\^, \fIdy\fP\^)
|
||||
.br
|
||||
Region \fIr\fP\^;
|
||||
.br
|
||||
int \fIdx\fP\^, \fIdy\fP\^;
|
||||
.LP
|
||||
XShrinkRegion\^(\^\fIr\fP\^, \fIdx\fP\^, \fIdy\fP\^)
|
||||
.br
|
||||
Region \fIr\fP\^;
|
||||
.br
|
||||
int \fIdx\fP\^, \fIdy\fP\^;
|
||||
.HP
|
||||
int XIntersectRegion\^(\^Region \fIsra\fP\^, Region \fIsrb\fP\^, Region
|
||||
\fIdr_return\fP\^);
|
||||
.HP
|
||||
int XUnionRegion\^(\^Region \fIsra\fP\^, Region \fIsrb\fP\^, Region
|
||||
\fIdr_return\fP\^);
|
||||
.HP
|
||||
int XUnionRectWithRegion\^(\^XRectangle *\fIrectangle\fP\^, Region
|
||||
\fIsrc_region\fP\^, Region \fIdest_region_return\fP\^);
|
||||
.HP
|
||||
int XSubtractRegion\^(\^Region \fIsra\fP\^, Region \fIsrb\fP\^, Region
|
||||
\fIdr_return\fP\^);
|
||||
.HP
|
||||
int XXorRegion\^(\^Region \fIsra\fP\^, Region \fIsrb\fP\^, Region
|
||||
\fIdr_return\fP\^);
|
||||
.HP
|
||||
int XOffsetRegion\^(\^Region \fIr\fP\^, int \fIdx\fP\^, int \fIdy\fP\^);
|
||||
.HP
|
||||
int XShrinkRegion\^(\^Region \fIr\fP\^, int \fIdx\fP\^, int \fIdy\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdest_region_return\fP 1i
|
||||
Returns the destination region.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XListFont.man,v 1.3 2003/04/28 22:17:55 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,39 +144,18 @@
|
|||
.SH NAME
|
||||
XListFonts, XFreeFontNames, XListFontsWithInfo, XFreeFontInfo \- obtain or free font names and information
|
||||
.SH SYNTAX
|
||||
char **XListFonts\^(\^\fIdisplay\fP, \fIpattern\fP\^, \fImaxnames\fP, \fIactual_count_return\fP\^)
|
||||
.br
|
||||
Display *\^\fIdisplay\fP\^;
|
||||
.br
|
||||
char *\^\fIpattern\fP\^;
|
||||
.br
|
||||
int \fImaxnames\fP\^;
|
||||
.br
|
||||
int *\^\fIactual_count_return\fP\^;
|
||||
.LP
|
||||
XFreeFontNames\^(\^\fIlist\fP\^)
|
||||
.br
|
||||
char *\fIlist\fP\^[\^]\^;
|
||||
.LP
|
||||
char **XListFontsWithInfo\^(\^\fIdisplay\fP, \fIpattern\fP, \fImaxnames\fP, \fIcount_return\fP, \fIinfo_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
char *\fIpattern\fP\^;
|
||||
.br
|
||||
int \fImaxnames\fP\^;
|
||||
.br
|
||||
int *\fIcount_return\fP\^;
|
||||
.br
|
||||
XFontStruct **\fIinfo_return\fP\^;
|
||||
.LP
|
||||
XFreeFontInfo(\^\fInames\fP, \fIfree_info\fP, \fIactual_count\fP\^)
|
||||
.br
|
||||
char **\fInames\fP\^;
|
||||
.br
|
||||
XFontStruct *\fIfree_info\fP;
|
||||
.br
|
||||
int \fIactual_count\fP\^;
|
||||
.HP
|
||||
char **XListFonts\^(\^Display *\^\fIdisplay\fP\^, char *\^\fIpattern\fP\^, int
|
||||
\fImaxnames\fP\^, int *\^\fIactual_count_return\fP\^);
|
||||
.HP
|
||||
int XFreeFontNames\^(\^char *\fIlist\fP\^[\^]\^);
|
||||
.HP
|
||||
char **XListFontsWithInfo\^(\^Display *\fIdisplay\fP\^, char *\fIpattern\fP\^,
|
||||
int \fImaxnames\fP\^, int *\fIcount_return\fP\^, XFontStruct
|
||||
**\fIinfo_return\fP\^);
|
||||
.HP
|
||||
int XFreeFontInfo(\^char **\fInames\fP\^, XFontStruct *\fIfree_info\fP, int
|
||||
\fIactual_count\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIactual_count\fP 1i
|
||||
Specifies the actual number of font names.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XLoadFont.man,v 1.3 2003/04/28 22:17:55 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,43 +144,20 @@
|
|||
.SH NAME
|
||||
XLoadFont, XQueryFont, XLoadQueryFont, XFreeFont, XGetFontProperty, XUnloadFont, XCharStruct, XFontProp, XChar2b, XFontStruct \- load or unload fonts and font metric structures
|
||||
.SH SYNTAX
|
||||
Font XLoadFont\^(\^\fIdisplay\fP, \fIname\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
char *\fIname\fP\^;
|
||||
.LP
|
||||
XFontStruct *XQueryFont\^(\^\fIdisplay\fP, \fIfont_ID\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
XID \fIfont_ID\fP\^;
|
||||
.LP
|
||||
XFontStruct *XLoadQueryFont\^(\^\fIdisplay\fP, \fIname\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
char *\fIname\fP\^;
|
||||
.LP
|
||||
XFreeFont\^(\^\fIdisplay\fP, \fIfont_struct\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
XFontStruct *\fIfont_struct\fP\^;
|
||||
.LP
|
||||
Bool XGetFontProperty\^(\^\fIfont_struct\fP\^, \^\fIatom\fP\^, \^\fIvalue_return\fP\^)
|
||||
.br
|
||||
XFontStruct *\fIfont_struct\fP\^;
|
||||
.br
|
||||
Atom \fIatom\fP\^;
|
||||
.br
|
||||
unsigned long *\fIvalue_return\fP\^;
|
||||
.LP
|
||||
XUnloadFont\^(\^\fIdisplay\fP, \fIfont\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Font \fIfont\fP\^;
|
||||
.HP
|
||||
Font XLoadFont\^(\^Display *\fIdisplay\fP\^, char *\fIname\fP\^);
|
||||
.HP
|
||||
XFontStruct *XQueryFont\^(\^Display *\fIdisplay\fP\^, XID \fIfont_ID\fP\^);
|
||||
.HP
|
||||
XFontStruct *XLoadQueryFont\^(\^Display *\fIdisplay\fP\^, char
|
||||
*\fIname\fP\^);
|
||||
.HP
|
||||
int XFreeFont\^(\^Display *\fIdisplay\fP\^, XFontStruct *\fIfont_struct\fP\^);
|
||||
.HP
|
||||
Bool XGetFontProperty\^(\^XFontStruct *\fIfont_struct\fP\^, Atom \fIatom\fP\^,
|
||||
unsigned long *\fIvalue_return\fP\^);
|
||||
.HP
|
||||
int XUnloadFont\^(\^Display *\fIdisplay\fP\^, Font \fIfont\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIatom\fP 1i
|
||||
Specifies the atom for the property name you want returned.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XLookKsym.man,v 1.5 2003/04/28 22:17:55 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,42 +144,18 @@
|
|||
.SH NAME
|
||||
XLookupKeysym, XRefreshKeyboardMapping, XLookupString, XRebindKeysym \- handle keyboard input events in Latin-1
|
||||
.SH SYNTAX
|
||||
KeySym XLookupKeysym(\^\fIkey_event\fP, \fIindex\fP\^)
|
||||
.br
|
||||
XKeyEvent *\fIkey_event\fP\^;
|
||||
.br
|
||||
int \fIindex\fP\^;
|
||||
.LP
|
||||
XRefreshKeyboardMapping(\^\fIevent_map\fP\^)
|
||||
.br
|
||||
XMappingEvent *\fIevent_map\fP\^;
|
||||
.LP
|
||||
int XLookupString(\^\fIevent_struct\fP, \fIbuffer_return\fP,
|
||||
\fIbytes_buffer\fP, \fIkeysym_return\fP, \fIstatus_in_out\fP\^)
|
||||
.br
|
||||
XKeyEvent *\fIevent_struct\fP\^;
|
||||
.br
|
||||
char *\fIbuffer_return\fP\^;
|
||||
.br
|
||||
int \fIbytes_buffer\fP\^;
|
||||
.br
|
||||
KeySym *\fIkeysym_return\fP\^;
|
||||
.br
|
||||
XComposeStatus *\fIstatus_in_out\fP\^;
|
||||
.LP
|
||||
XRebindKeysym(\^\fIdisplay\fP, \fIkeysym\fP, \fIlist\fP, \fImod_count\fP, \fIstring\fP, \fInum_bytes\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
KeySym \fIkeysym\fP\^;
|
||||
.br
|
||||
KeySym \fIlist\fP\^[\^]\^;
|
||||
.br
|
||||
int \fImod_count\fP\^;
|
||||
.br
|
||||
unsigned char *\fIstring\fP\^;
|
||||
.br
|
||||
int \fInum_bytes\fP\^;
|
||||
.HP
|
||||
KeySym XLookupKeysym(\^XKeyEvent *\fIkey_event\fP\^, int \fIindex\fP\^);
|
||||
.HP
|
||||
int XRefreshKeyboardMapping(\^XMappingEvent *\fIevent_map\fP\^);
|
||||
.HP
|
||||
int XLookupString(\^XKeyEvent *\fIevent_struct\fP\^, char
|
||||
*\fIbuffer_return\fP\^, int \fIbytes_buffer\fP\^, KeySym
|
||||
*\fIkeysym_return\fP\^, XComposeStatus *\fIstatus_in_out\fP\^);
|
||||
.HP
|
||||
int XRebindKeysym(\^Display *\fIdisplay\fP\^, KeySym \fIkeysym\fP\^, KeySym
|
||||
\fIlist\fP\^[\^]\^, int \fImod_count\fP\^, unsigned char *\fIstring\fP\^, int
|
||||
\fInum_bytes\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIbuffer_return\fP 1i
|
||||
Returns the translated characters.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XMapWin.man,v 1.3 2003/04/28 22:17:55 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,23 +144,12 @@
|
|||
.SH NAME
|
||||
XMapWindow, XMapRaised, XMapSubwindows \- map windows
|
||||
.SH SYNTAX
|
||||
XMapWindow\^(\^\fIdisplay\fP, \fIw\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.LP
|
||||
XMapRaised\^(\^\fIdisplay\fP, \fIw\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.LP
|
||||
XMapSubwindows\^(\^\fIdisplay\fP, \fIw\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.HP
|
||||
int XMapWindow\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^);
|
||||
.HP
|
||||
int XMapRaised\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^);
|
||||
.HP
|
||||
int XMapSubwindows\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XNEvent.man,v 1.3 2003/04/28 22:17:55 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,71 +144,28 @@
|
|||
.SH NAME
|
||||
XNextEvent, XPeekEvent, XWindowEvent, XCheckWindowEvent, XMaskEvent, XCheckMaskEvent, XCheckTypedEvent, XCheckTypedWindowEvent \- select events by type
|
||||
.SH SYNTAX
|
||||
XNextEvent\^(\^\fIdisplay\fP, \fIevent_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
XEvent *\fIevent_return\fP\^;
|
||||
.LP
|
||||
XPeekEvent\^(\^\fIdisplay\fP, \fIevent_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
XEvent *\fIevent_return\fP\^;
|
||||
.LP
|
||||
XWindowEvent\^(\^\fIdisplay\fP, \fIw\fP\^, \fIevent_mask\fP\^, \fIevent_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
long \fIevent_mask\fP\^;
|
||||
.br
|
||||
XEvent *\fIevent_return\fP\^;
|
||||
.LP
|
||||
Bool XCheckWindowEvent\^(\^\fIdisplay\fP, \fIw\fP\^, \fIevent_mask\fP\^, \fIevent_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
long \fIevent_mask\fP\^;
|
||||
.br
|
||||
XEvent *\fIevent_return\fP\^;
|
||||
.LP
|
||||
XMaskEvent\^(\^\fIdisplay\fP, \fIevent_mask\fP\^, \fIevent_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
long \fIevent_mask\fP\^;
|
||||
.br
|
||||
XEvent *\fIevent_return\fP\^;
|
||||
.LP
|
||||
Bool XCheckMaskEvent\^(\^\fIdisplay\fP, \fIevent_mask\fP\^, \fIevent_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
long \fIevent_mask\fP\^;
|
||||
.br
|
||||
XEvent *\fIevent_return\fP\^;
|
||||
.LP
|
||||
Bool XCheckTypedEvent\^(\^\fIdisplay\fP, \fIevent_type\fP\^, \fIevent_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
int \fIevent_type\fP\^;
|
||||
.br
|
||||
XEvent *\fIevent_return\fP\^;
|
||||
.LP
|
||||
Bool XCheckTypedWindowEvent\^(\^\fIdisplay\fP, \fIw\fP\^, \fIevent_type\fP\^, \fIevent_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
int \fIevent_type\fP\^;
|
||||
.br
|
||||
XEvent *\fIevent_return\fP\^;
|
||||
.HP
|
||||
int XNextEvent\^(\^Display *\fIdisplay\fP\^, XEvent *\fIevent_return\fP\^);
|
||||
.HP
|
||||
int XPeekEvent\^(\^Display *\fIdisplay\fP\^, XEvent *\fIevent_return\fP\^);
|
||||
.HP
|
||||
int XWindowEvent\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^, long
|
||||
\fIevent_mask\fP\^, XEvent *\fIevent_return\fP\^);
|
||||
.HP
|
||||
Bool XCheckWindowEvent\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^, long
|
||||
\fIevent_mask\fP\^, XEvent *\fIevent_return\fP\^);
|
||||
.HP
|
||||
int XMaskEvent\^(\^Display *\fIdisplay\fP\^, long \fIevent_mask\fP\^, XEvent
|
||||
*\fIevent_return\fP\^);
|
||||
.HP
|
||||
Bool XCheckMaskEvent\^(\^Display *\fIdisplay\fP\^, long \fIevent_mask\fP\^,
|
||||
XEvent *\fIevent_return\fP\^);
|
||||
.HP
|
||||
Bool XCheckTypedEvent\^(\^Display *\fIdisplay\fP\^, int \fIevent_type\fP\^,
|
||||
XEvent *\fIevent_return\fP\^);
|
||||
.HP
|
||||
Bool XCheckTypedWindowEvent\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^,
|
||||
int \fIevent_type\fP\^, XEvent *\fIevent_return\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XNoOp.man,v 1.3 2003/04/28 22:17:55 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,9 +144,7 @@
|
|||
.SH NAME
|
||||
XNoOp \- No Operation
|
||||
.SH SYNTAX
|
||||
XNoOp\^(\^\fIdisplay\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
int XNoOp\^(\^Display *\fIdisplay\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XOpDsply.man,v 1.3 2003/04/28 22:17:55 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,13 +144,10 @@
|
|||
.SH NAME
|
||||
XOpenDisplay, XCloseDisplay \- connect or disconnect to X server
|
||||
.SH SYNTAX
|
||||
Display *XOpenDisplay\^(\^\fIdisplay_name\fP\^)
|
||||
.br
|
||||
char *\fIdisplay_name\fP\^;
|
||||
.LP
|
||||
XCloseDisplay\^(\fIdisplay\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.HP
|
||||
Display *XOpenDisplay\^(\^char *\fIdisplay_name\fP\^);
|
||||
.HP
|
||||
int XCloseDisplay\^(Display *\fIdisplay\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XOpenIM.man,v 1.3 2003/04/28 22:17:55 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,63 +144,27 @@
|
|||
.SH NAME
|
||||
XOpenIM, XCloseIM, XSetIMValues, XGetIMValues, XDisplayOfIM, XLocaleOfIM, XRegisterIMInstantiateCallback, XUnregisterIMInstantiateCallback \- open, close, and otain input method information
|
||||
.SH SYNTAX
|
||||
XIM XOpenIM\^(\^\fIdisplay\fP\^, \fIdb\fP\^, \fIres_name\fP\^, \fIres_class\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
XrmDatabase \fIdb\fP\^;
|
||||
.br
|
||||
char *\fIres_name\fP\^;
|
||||
.br
|
||||
char *\fIres_class\fP\^;
|
||||
.LP
|
||||
Status XCloseIM\^(\^\fIim\fP\^)
|
||||
.br
|
||||
XIM \fIim\fP\^;
|
||||
.LP
|
||||
char * XSetIMValues\^(\^\fIim\fP\^, ...)
|
||||
.br
|
||||
XIM \fIim\fP\^;
|
||||
.LP
|
||||
char * XGetIMValues\^(\^\fIim\fP\^, ...)
|
||||
.br
|
||||
XIM \fIim\fP\^;
|
||||
.LP
|
||||
Display * XDisplayOfIM\^(\^\fIim\fP\^)
|
||||
.br
|
||||
XIM \fIim\fP\^;
|
||||
.LP
|
||||
char * XLocaleOfIM\^(\^\fIim\fP\^)
|
||||
.br
|
||||
XIM \fIim\fP\^;
|
||||
.LP
|
||||
Bool XRegisterIMInstantiateCallback\^(\^\fIdisplay\fP\^, \fIdb\fP\^, \fIres_name\fP\^, \fIres_class\fP\^, \fIcallback\fP\^, \fIclient_data\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
XrmDatabase \fIdb\fP\^;
|
||||
.br
|
||||
char *\fIres_name\fP\^;
|
||||
.br
|
||||
char *\fIres_class\fP\^;
|
||||
.br
|
||||
XIMProc \fIcallback\fP\^;
|
||||
.br
|
||||
XPointer *\fIclient_data\fP\^;
|
||||
.LP
|
||||
Bool XUnregisterIMInstantiateCallback\^(\^\fIdisplay\fP\^, \fIdb\fP\^, \fIres_name\fP\^, \fIres_class\fP\^, \fIcallback\fP\^, \fIclient_data\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
XrmDatabase \fIdb\fP\^;
|
||||
.br
|
||||
char *\fIres_name\fP\^;
|
||||
.br
|
||||
char *\fIres_class\fP\^;
|
||||
.br
|
||||
XIMProc \fIcallback\fP\^;
|
||||
.br
|
||||
XPointer *\fIclient_data\fP\^;
|
||||
.HP
|
||||
XIM XOpenIM\^(\^Display *\fIdisplay\fP\^, XrmDatabase \fIdb\fP\^, char
|
||||
*\fIres_name\fP\^, char *\fIres_class\fP\^);
|
||||
.HP
|
||||
Status XCloseIM\^(\^XIM \fIim\fP\^);
|
||||
.HP
|
||||
char *XSetIMValues\^(\^XIM \fIim\fP\^, ...);
|
||||
.HP
|
||||
char *XGetIMValues\^(\^XIM \fIim\fP\^, ...);
|
||||
.HP
|
||||
Display *XDisplayOfIM\^(\^XIM \fIim\fP\^);
|
||||
.HP
|
||||
char *XLocaleOfIM\^(\^XIM \fIim\fP\^);
|
||||
.HP
|
||||
Bool XRegisterIMInstantiateCallback\^(\^Display *\fIdisplay\fP\^, XrmDatabase
|
||||
\fIdb\fP\^, char *\fIres_name\fP\^, char *\fIres_class\fP\^, XIMProc
|
||||
\fIcallback\fP\^, XPointer *\fIclient_data\fP\^);
|
||||
.HP
|
||||
Bool XUnregisterIMInstantiateCallback\^(\^Display *\fIdisplay\fP\^,
|
||||
XrmDatabase \fIdb\fP\^, char *\fIres_name\fP\^, char *\fIres_class\fP\^,
|
||||
XIMProc \fIcallback\fP\^, XPointer *\fIclient_data\fP\^);
|
||||
.LP
|
||||
.SH ARGUMENTS
|
||||
.IP \fIcallback\fP 1i
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XOpenOM.man,v 1.5 2003/04/28 22:17:55 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -145,35 +145,19 @@
|
|||
.SH NAME
|
||||
XOpenOM, XCloseOM, XSetOMValues, XGetOMValues, XDisplayOfOM, XLocaleOfOM \- open output methods
|
||||
.SH SYNTAX
|
||||
XOM XOpenOM\^(\^\fIdisplay\fP\^, \fIdb\fP\^, \fIres_name\fP\^, \fIres_class\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
XrmDatabase \fIdb\fP\^;
|
||||
.br
|
||||
char *\fIres_name\fP\^;
|
||||
.br
|
||||
char *\fIres_class\fP\^;
|
||||
.LP
|
||||
Status XCloseOM\^(\^\fIom\fP\^)
|
||||
.br
|
||||
XOM \fIom\fP\^;
|
||||
.LP
|
||||
char * XSetOMValues\^(\^\fIom\fP\^, ...)
|
||||
.br
|
||||
XOM \fIom\fP\^;
|
||||
.LP
|
||||
char * XGetOMValues\^(\^\fIom\fP\^, ...)
|
||||
.br
|
||||
XOM \fIom\fP\^;
|
||||
.LP
|
||||
Display * XDisplayOfOM\^(\^\fIom\fP\^)
|
||||
.br
|
||||
XOM \fIom\fP\^;
|
||||
.LP
|
||||
char * XLocaleOfOM\^(\^\fIom\fP\^)
|
||||
.br
|
||||
XOM \fIom\fP\^;
|
||||
.HP
|
||||
XOM XOpenOM\^(\^Display *\fIdisplay\fP\^, XrmDatabase \fIdb\fP\^, char
|
||||
*\fIres_name\fP\^, char *\fIres_class\fP\^);
|
||||
.HP
|
||||
Status XCloseOM\^(\^XOM \fIom\fP\^);
|
||||
.HP
|
||||
char *XSetOMValues\^(\^XOM \fIom\fP\^);
|
||||
.HP
|
||||
char *XGetOMValues\^(\^XOM \fIom\fP\^);
|
||||
.HP
|
||||
Display *XDisplayOfOM\^(\^XOM \fIom\fP\^);
|
||||
.HP
|
||||
char *XLocaleOfOM\^(\^XOM \fIom\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XParGeom.man,v 1.4 2003/04/28 22:17:56 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,38 +144,16 @@
|
|||
.SH NAME
|
||||
XParseGeometry, XWMGeometry \- parse window geometry
|
||||
.SH SYNTAX
|
||||
int XParseGeometry\^(\^\fIparsestring\fP\^, \fIx_return\fP\^, \fIy_return\fP\^, \fIwidth_return\fP\^, \fIheight_return\fP\^)
|
||||
.br
|
||||
char *\fIparsestring\fP\^;
|
||||
.br
|
||||
int *\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,
|
||||
\fIdef_geom\fP, \fIbwidth\fP, \fIhints\fP, \fIx_return\fP, \fIy_return\fP,
|
||||
.br
|
||||
\fIwidth_return\fP, \fIheight_return\fP, \fIgravity_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
int \fIscreen\fP\^;
|
||||
.br
|
||||
char *\fIuser_geom\fP\^;
|
||||
.br
|
||||
char *\fIdef_geom\fP\^;
|
||||
.br
|
||||
unsigned int \fIbwidth\fP\^;
|
||||
.br
|
||||
XSizeHints *\fIhints\fP\^;
|
||||
.br
|
||||
int *\fIx_return\fP, *\fIy_return\fP\^;
|
||||
.br
|
||||
int *\fIwidth_return\fP\^;
|
||||
.br
|
||||
int *\fIheight_return\fP\^;
|
||||
.br
|
||||
int *\fIgravity_return\fP\^;
|
||||
.HP
|
||||
int XParseGeometry\^(\^char *\fIparsestring\fP\^, int *\fIx_return\fP\^, int
|
||||
*\fIy_return\fP\^, unsigned int *\fIwidth_return\fP\^, unsigned int
|
||||
*\fIheight_return\fP\^);
|
||||
.HP
|
||||
int XWMGeometry\^(\^Display *\fIdisplay\fP\^, int \fIscreen\fP\^, char
|
||||
*\fIuser_geom\fP\^, char *\fIdef_geom\fP\^, unsigned int \fIbwidth\fP\^,
|
||||
XSizeHints *\fIhints\fP\^, int *\fIx_return\fP, int *\fIy_return\fP\^, int
|
||||
*\fIwidth_return\fP\^, int *\fIheight_return\fP\^, int
|
||||
*\fIgravity_return\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIposition\fP 1i
|
||||
.br
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" 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 $
|
||||
.\" $XFree86: xc/doc/man/X11/XPolyReg.man,v 1.3 2003/04/28 22:17:56 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,19 +144,11 @@
|
|||
.SH NAME
|
||||
XPolygonRegion, XClipBox \- generate regions
|
||||
.SH SYNTAX
|
||||
Region XPolygonRegion\^(\^\fIpoints\fP\^, \fIn\fP\^, \fIfill_rule\fP\^)
|
||||
.br
|
||||
XPoint \fIpoints[]\fP\^;
|
||||
.br
|
||||
int \fIn\fP\^;
|
||||
.br
|
||||
int \fIfill_rule\fP\^;
|
||||
.LP
|
||||
XClipBox\^(\^\fIr\fP\^, \fIrect_return\fP\^)
|
||||
.br
|
||||
Region \fIr\fP\^;
|
||||
.br
|
||||
XRectangle *\fIrect_return\fP\^;
|
||||
.HP
|
||||
Region XPolygonRegion\^(\^XPoint \fIpoints\fP[]\^, int \fIn\fP\^, int
|
||||
\fIfill_rule\fP\^);
|
||||
.HP
|
||||
int XClipBox\^(\^Region \fIr\fP\^, XRectangle *\fIrect_return\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIfill_rule\fP 1i
|
||||
Specifies the fill-rule you want to set for the specified GC.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XPutBEvnt.man,v 1.2 2001/01/27 18:20:02 dawes Exp $
|
||||
.\" $XFree86: xc/doc/man/X11/XPutBEvnt.man,v 1.3 2003/04/28 22:17:56 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,11 +144,8 @@
|
|||
.SH NAME
|
||||
XPutBackEvent \- put events back on the queue
|
||||
.SH SYNTAX
|
||||
XPutBackEvent\^(\^\fIdisplay\fP, \fIevent\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
XEvent *\fIevent\fP\^;
|
||||
.HP
|
||||
XPutBackEvent\^(\^Display *\fIdisplay\fP\^, XEvent *\fIevent\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XPutImage.man,v 1.3 2001/02/09 03:47:46 tsi Exp $
|
||||
.\" $XFree86: xc/doc/man/X11/XPutImage.man,v 1.4 2003/04/28 22:17:56 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,55 +144,20 @@
|
|||
.SH NAME
|
||||
XPutImage, XGetImage, XGetSubImage \- transfer images
|
||||
.SH SYNTAX
|
||||
XPutImage\^(\^\fIdisplay\fP, \fId\fP\^, \fIgc\fP\^, \fIimage\fP\^, \fIsrc_x\fP, \fIsrc_y\fP, \fIdest_x\fP\^, \fIdest_y\fP\^, \fIwidth\fP\^, \fIheight\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fId\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
XImage *\fIimage\fP\^;
|
||||
.br
|
||||
int \fIsrc_x\fP\^, \fIsrc_y\fP\^;
|
||||
.br
|
||||
int \fIdest_x\fP\^, \fIdest_y\fP\^;
|
||||
.br
|
||||
unsigned int \fIwidth\fP\^, \fIheight\fP\^;
|
||||
.LP
|
||||
XImage *XGetImage\^(\^\fIdisplay\fP, \fId\fP\^, \fIx\fP\^, \fIy\fP\^, \fIwidth\fP\^, \fIheight\fP\^, \fIplane_mask\fP, \fIformat\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fId\fP\^;
|
||||
.br
|
||||
int \fIx\fP\^, \fIy\fP\^;
|
||||
.br
|
||||
unsigned int \fIwidth\fP\^, \fIheight\fP\^;
|
||||
.br
|
||||
unsigned long \fIplane_mask\fP\^;
|
||||
.br
|
||||
int \fIformat\fP\^;
|
||||
.LP
|
||||
XImage *XGetSubImage\^(\^\fIdisplay\fP, \fId\fP\^, \fIx\fP\^, \fIy\fP\^, \fIwidth\fP\^, \fIheight\fP\^, \fIplane_mask\fP, \fIformat\fP\^, \fIdest_image\fP\^, \fIdest_x\fP\^,
|
||||
.br
|
||||
\fIdest_y\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fId\fP\^;
|
||||
.br
|
||||
int \fIx\fP\^, \fIy\fP\^;
|
||||
.br
|
||||
unsigned int \fIwidth\fP\^, \fIheight\fP\^;
|
||||
.br
|
||||
unsigned long \fIplane_mask\fP\^;
|
||||
.br
|
||||
int \fIformat\fP\^;
|
||||
.br
|
||||
XImage *\fIdest_image\fP\^;
|
||||
.br
|
||||
int \fIdest_x\fP\^, \fIdest_y\fP\^;
|
||||
.HP
|
||||
int XPutImage\^(\^Display *\fIdisplay\fP\^, Drawable \fId\fP\^, GC \fIgc\fP\^,
|
||||
XImage *\fIimage\fP\^, int \fIsrc_x\fP\^, int \fIsrc_y\fP\^, int
|
||||
\fIdest_x\fP\^, int \fIdest_y\fP\^, unsigned int \fIwidth\fP\^, unsigned int
|
||||
\fIheight\fP\^);
|
||||
.HP
|
||||
XImage *XGetImage\^(\^Display *\fIdisplay\fP\^, Drawable \fId\fP\^, int
|
||||
\fIx\fP\^, int \fIy\fP\^, unsigned int \fIwidth\fP\^, unsigned int
|
||||
\fIheight\fP\^, unsigned long \fIplane_mask\fP\^, int \fIformat\fP\^);
|
||||
.HP
|
||||
XImage *XGetSubImage\^(\^Display *\fIdisplay\fP\^, Drawable \fId\fP\^, int
|
||||
\fIx\fP\^, int \fIy\fP\^, unsigned int \fIwidth\fP\^, unsigned int
|
||||
\fIheight\fP\^, unsigned long \fIplane_mask\fP\^, int \fIformat\fP\^, XImage
|
||||
*\fIdest_image\fP\^, int \fIdest_x\fP\^, \fIdest_y\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fId\fP 1i
|
||||
Specifies the drawable.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XQBSize.man,v 1.2 2001/01/27 18:20:02 dawes Exp $
|
||||
.\" $XFree86: xc/doc/man/X11/XQBSize.man,v 1.3 2003/04/28 22:17:56 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,37 +144,19 @@
|
|||
.SH NAME
|
||||
XQueryBestSize, XQueryBestTile, XQueryBestStipple \- determine efficient sizes
|
||||
.SH SYNTAX
|
||||
Status XQueryBestSize\^(\^\fIdisplay\fP, \fIclass\fP, \fIwhich_screen\fP, \fIwidth\fP, \fIheight\fP, \fIwidth_return\fP, \fIheight_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
int \fIclass\fP\^;
|
||||
.br
|
||||
Drawable \fIwhich_screen\fP\^;
|
||||
.br
|
||||
unsigned int \fIwidth\fP, \fIheight\fP\^;
|
||||
.br
|
||||
unsigned int *\fIwidth_return\fP, *\fIheight_return\fP\^;
|
||||
.LP
|
||||
Status XQueryBestTile\^(\^\fIdisplay\fP, \fIwhich_screen\fP, \fIwidth\fP, \fIheight\fP, \fIwidth_return\fP, \fIheight_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fIwhich_screen\fP\^;
|
||||
.br
|
||||
unsigned int \fIwidth\fP, \fIheight\fP\^;
|
||||
.br
|
||||
unsigned int *\fIwidth_return\fP, *\fIheight_return\fP\^;
|
||||
.LP
|
||||
Status XQueryBestStipple\^(\^\fIdisplay\fP, \fIwhich_screen\fP, \fIwidth\fP, \fIheight\fP, \fIwidth_return\fP, \fIheight_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fIwhich_screen\fP\^;
|
||||
.br
|
||||
unsigned int \fIwidth\fP, \fIheight\fP\^;
|
||||
.br
|
||||
unsigned int *\fIwidth_return\fP, *\fIheight_return\fP\^;
|
||||
.HP
|
||||
Status XQueryBestSize\^(\^Display *\fIdisplay\fP\^, int \fIclass\fP\^,
|
||||
Drawable \fIwhich_screen\fP\^, unsigned int \fIwidth\fP, unsigned int
|
||||
\fIheight\fP\^, unsigned int *\fIwidth_return\fP, unsigned int
|
||||
*\fIheight_return\fP\^);
|
||||
.HP
|
||||
Status XQueryBestTile\^(\^Display *\fIdisplay\fP\^, Drawable
|
||||
\fIwhich_screen\fP\^, unsigned int \fIwidth\fP, unsigned int \fIheight\fP\^,
|
||||
unsigned int *\fIwidth_return\fP, unsigned int *\fIheight_return\fP\^);
|
||||
.HP
|
||||
Status XQueryBestStipple\^(\^Display *\fIdisplay\fP\^, Drawable
|
||||
\fIwhich_screen\fP\^, unsigned int \fIwidth\fP, unsigned int \fIheight\fP\^,
|
||||
unsigned int *\fIwidth_return\fP, unsigned int *\fIheight_return\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIclass\fP 1i
|
||||
Specifies the class that you are interested in.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XQColor.man,v 1.4 2001/02/09 03:47:46 tsi Exp $
|
||||
.\" $XFree86: xc/doc/man/X11/XQColor.man,v 1.5 2003/04/28 22:17:56 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,44 +144,19 @@
|
|||
.SH NAME
|
||||
XQueryColor, XQueryColors, XLookupColor, XParseColor \- obtain color values
|
||||
.SH SYNTAX
|
||||
XQueryColor\^(\^\fIdisplay\fP, \fIcolormap\fP\^, \fIdef_in_out\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Colormap \fIcolormap\fP\^;
|
||||
.br
|
||||
XColor *\fIdef_in_out\fP\^;
|
||||
.LP
|
||||
XQueryColors\^(\^\fIdisplay\fP, \fIcolormap\fP\^, \fIdefs_in_out\fP\^, \fIncolors\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Colormap \fIcolormap\fP\^;
|
||||
.br
|
||||
XColor \fIdefs_in_out\fP[\^]\^;
|
||||
.br
|
||||
int \fIncolors\fP\^;
|
||||
.LP
|
||||
Status XLookupColor\^(\^\fIdisplay\fP, \fIcolormap\fP, \fIcolor_name\fP,
|
||||
\fIexact_def_return\fP\^, \fIscreen_def_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Colormap \fIcolormap\fP\^;
|
||||
.br
|
||||
char *\fIcolor_name\fP\^;
|
||||
.br
|
||||
XColor *\fIexact_def_return\fP\^, *\fIscreen_def_return\fP\^;
|
||||
.LP
|
||||
Status XParseColor\^(\^\fIdisplay\fP, \fIcolormap\fP\^, \^\fIspec\fP\^, \fIexact_def_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Colormap \fIcolormap\fP\^;
|
||||
.br
|
||||
char *\fIspec\fP\^;
|
||||
.br
|
||||
XColor *\fIexact_def_return\fP\^;
|
||||
.HP
|
||||
int XQueryColor\^(\^Display *\fIdisplay\fP\^, Colormap \fIcolormap\fP\^, XColor
|
||||
*\fIdef_in_out\fP\^);
|
||||
.HP
|
||||
int XQueryColors\^(\^Display *\fIdisplay\fP\^, Colormap \fIcolormap\fP\^,
|
||||
XColor \fIdefs_in_out\fP[\^]\^, int \fIncolors\fP\^);
|
||||
.HP
|
||||
Status XLookupColor\^(\^Display *\fIdisplay\fP\^, Colormap \fIcolormap\fP\^,
|
||||
char *\fIcolor_name\fP\^, XColor *\fIexact_def_return\fP\^, XColor
|
||||
*\fIscreen_def_return\fP\^);
|
||||
.HP
|
||||
Status XParseColor\^(\^Display *\fIdisplay\fP\^, Colormap \fIcolormap\fP\^,
|
||||
char *\fIspec\fP\^, XColor *\fIexact_def_return\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIcolormap\fP 1i
|
||||
Specifies the colormap.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XQPointer.man,v 1.2 2001/01/27 18:20:02 dawes Exp $
|
||||
.\" $XFree86: xc/doc/man/X11/XQPointer.man,v 1.3 2003/04/28 22:17:56 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,21 +144,11 @@
|
|||
.SH NAME
|
||||
XQueryPointer \- get pointer coordinates
|
||||
.SH SYNTAX
|
||||
Bool XQueryPointer\^(\^\fIdisplay\fP, \fIw\fP\^, \fIroot_return\fP\^, \fIchild_return\fP\^, \fIroot_x_return\fP\^, \fIroot_y_return\fP\^,
|
||||
.br
|
||||
\fIwin_x_return\fP\^, \fIwin_y_return\fP\^, \fImask_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
Window *\fIroot_return\fP\^, *\fIchild_return\fP\^;
|
||||
.br
|
||||
int *\fIroot_x_return\fP\^, *\fIroot_y_return\fP\^;
|
||||
.br
|
||||
int *\fIwin_x_return\fP\^, *\fIwin_y_return\fP\^;
|
||||
.br
|
||||
unsigned int *\fImask_return\fP\^;
|
||||
.HP
|
||||
Bool XQueryPointer\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^, Window
|
||||
*\fIroot_return\fP\^, Window *\fIchild_return\fP\^, int
|
||||
*\fIroot_x_return\fP\^, int *\fIroot_y_return\fP\^, int *\fIwin_x_return\fP\^,
|
||||
int *\fIwin_y_return\fP\^, unsigned int *\fImask_return\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIchild_return\fP 1i
|
||||
Returns the child window that the pointer is located in, if any.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XQTree.man,v 1.3 2001/02/09 03:47:46 tsi Exp $
|
||||
.\" $XFree86: xc/doc/man/X11/XQTree.man,v 1.4 2003/04/28 22:17:56 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,19 +144,10 @@
|
|||
.SH NAME
|
||||
XQueryTree \- query window tree information
|
||||
.SH SYNTAX
|
||||
Status XQueryTree\^(\^\fIdisplay\fP, \fIw\fP\^, \fIroot_return\fP\^, \fIparent_return\fP\^, \fIchildren_return\fP\^, \fInchildren_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
Window *\fIroot_return\fP\^;
|
||||
.br
|
||||
Window *\fIparent_return\fP\^;
|
||||
.br
|
||||
Window **\fIchildren_return\fP\^;
|
||||
.br
|
||||
unsigned int *\fInchildren_return\fP\^;
|
||||
.HP
|
||||
Status XQueryTree\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^, Window
|
||||
*\fIroot_return\fP\^, Window *\fIparent_return\fP\^, Window
|
||||
**\fIchildren_return\fP\^, unsigned int *\fInchildren_return\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIchildren_return\fP 1i
|
||||
Returns the list of children.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XRaiseWin.man,v 1.2 2001/01/27 18:20:03 dawes Exp $
|
||||
.\" $XFree86: xc/doc/man/X11/XRaiseWin.man,v 1.3 2003/04/28 22:17:56 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,45 +144,20 @@
|
|||
.SH NAME
|
||||
XRaiseWindow, XLowerWindow, XCirculateSubwindows, XCirculateSubwindowsUp, XCirculateSubwindowsDown, XRestackWindows \- change window stacking order
|
||||
.SH SYNTAX
|
||||
XRaiseWindow\^(\^\fIdisplay\fP, \fIw\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.LP
|
||||
XLowerWindow\^(\^\fIdisplay\fP, \fIw\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.LP
|
||||
XCirculateSubwindows\^(\^\fIdisplay\fP, \fIw\fP\^, \fIdirection\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
int \fIdirection\fP\^;
|
||||
.LP
|
||||
XCirculateSubwindowsUp\^(\^\fIdisplay\fP, \fIw\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.LP
|
||||
XCirculateSubwindowsDown\^(\^\fIdisplay\fP, \fIw\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.LP
|
||||
XRestackWindows\^(\^\fIdisplay\fP, \fIwindows\fP\^, \^\fInwindows\fP\^);
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIwindows\fP\^[];
|
||||
.br
|
||||
int \fInwindows\fP\^;
|
||||
.HP
|
||||
int XRaiseWindow\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^);
|
||||
.HP
|
||||
int XLowerWindow\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^);
|
||||
.HP
|
||||
int XCirculateSubwindows\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^, int
|
||||
\fIdirection\fP\^);
|
||||
.HP
|
||||
int XCirculateSubwindowsUp\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^);
|
||||
.HP
|
||||
int XCirculateSubwindowsDown\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^);
|
||||
.HP
|
||||
int XRestackWindows\^(\^Display *\fIdisplay\fP\^, Window \fIwindows\fP\^[], int
|
||||
\fInwindows\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdirection\fP 1i
|
||||
Specifies the direction (up or down) that you want to circulate
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XReadBF.man,v 1.3 2001/02/07 22:35:20 tsi Exp $
|
||||
.\" $XFree86: xc/doc/man/X11/XReadBF.man,v 1.4 2003/04/28 22:17:56 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,67 +144,27 @@
|
|||
.SH NAME
|
||||
XReadBitmapFile, XReadBitmapFileData, XWriteBitmapFile, XCreatePixmapFromBitmapData, XCreateBitmapFromData \- manipulate bitmaps
|
||||
.SH SYNTAX
|
||||
int XReadBitmapFile(\^\fIdisplay\fP, \fId\fP, \fIfilename\fP, \fIwidth_return\fP, \fIheight_return\fP, \fIbitmap_return\fP, \fIx_hot_return\fP,
|
||||
.br
|
||||
\fIy_hot_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fId\fP\^;
|
||||
.br
|
||||
char *\fIfilename\fP\^;
|
||||
.br
|
||||
unsigned int *\fIwidth_return\fP, *\fIheight_return\fP\^;
|
||||
.br
|
||||
Pixmap *\fIbitmap_return\fP\^;
|
||||
.br
|
||||
int *\fIx_hot_return\fP, *\fIy_hot_return\fP\^;
|
||||
.LP
|
||||
int XReadBitmapFileData(\^\fIfilename\fP, \fIwidth_return\fP, \fIheight_return\fP, \fIdata_return\fP, \fIx_hot_return\fP, \fIy_hot_return\fP\^)
|
||||
.br
|
||||
char *\fIfilename\fP\^;
|
||||
.br
|
||||
unsigned int *\fIwidth_return\fP, *\fIheight_return\fP\^;
|
||||
.br
|
||||
unsigned char *\fIdata_return\fP\^;
|
||||
.br
|
||||
int *\fIx_hot_return\fP, *\fIy_hot_return\fP\^;
|
||||
.LP
|
||||
int XWriteBitmapFile(\^\fIdisplay\fP, \fIfilename\fP, \fIbitmap\fP, \fIwidth\fP, \fIheight\fP, \fIx_hot\fP, \fIy_hot\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
char *\fIfilename\fP\^;
|
||||
.br
|
||||
Pixmap \fIbitmap\fP\^;
|
||||
.br
|
||||
unsigned int \fIwidth\fP, \fIheight\fP\^;
|
||||
.br
|
||||
int \fIx_hot\fP, \fIy_hot\fP\^;
|
||||
.LP
|
||||
Pixmap XCreatePixmapFromBitmapData\^(\^\fIdisplay\fP, \fId\fP, \fIdata\fP, \fIwidth\fP, \fIheight\fP, \fIfg\fP, \fIbg\fP, \fIdepth\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fId\fP\^;
|
||||
.br
|
||||
char *\fIdata\fP\^;
|
||||
.br
|
||||
unsigned int \fIwidth\fP, \fIheight\fP\^;
|
||||
.br
|
||||
unsigned long \fIfg\fP, \fIbg\fP\^;
|
||||
.br
|
||||
unsigned int \fIdepth\fP\^;
|
||||
.LP
|
||||
Pixmap XCreateBitmapFromData(\^\fIdisplay\fP, \fId\fP, \fIdata\fP, \fIwidth\fP, \fIheight\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fId\fP\^;
|
||||
.br
|
||||
char *\fIdata\fP\^;
|
||||
.br
|
||||
unsigned int \fIwidth\fP, \fIheight\fP\^;
|
||||
.HP
|
||||
int XReadBitmapFile(\^Display *\fIdisplay\fP\^, Drawable \fId\fP\^, char
|
||||
*\fIfilename\fP\^, unsigned int *\fIwidth_return\fP, unsigned int
|
||||
*\fIheight_return\fP\^, Pixmap *\fIbitmap_return\fP\^, int
|
||||
*\fIx_hot_return\fP, int *\fIy_hot_return\fP\^);
|
||||
.HP
|
||||
int XReadBitmapFileData(\^char *\fIfilename\fP\^, unsigned int
|
||||
*\fIwidth_return\fP, unsigned int *\fIheight_return\fP\^, unsigned char
|
||||
*\fIdata_return\fP\^, int *\fIx_hot_return\fP, int *\fIy_hot_return\fP\^);
|
||||
.HP
|
||||
int XWriteBitmapFile(\^Display *\fIdisplay\fP\^, char *\fIfilename\fP\^,
|
||||
Pixmap \fIbitmap\fP\^, unsigned int \fIwidth\fP, unsigned int \fIheight\fP\^,
|
||||
int \fIx_hot\fP, int \fIy_hot\fP\^);
|
||||
.HP
|
||||
Pixmap XCreatePixmapFromBitmapData\^(\^Display *\fIdisplay\fP\^, Drawable
|
||||
\fId\fP\^, char *\fIdata\fP\^, unsigned int \fIwidth\fP, unsigned int
|
||||
\fIheight\fP\^, unsigned long \fIfg\fP, unsigned int \fIbg\fP\^, unsigned int
|
||||
\fIdepth\fP\^);
|
||||
.HP
|
||||
Pixmap XCreateBitmapFromData(\^Display *\fIdisplay\fP\^, Drawable \fId\fP\^,
|
||||
char *\fIdata\fP\^, unsigned int \fIwidth\fP, unsigned int \fIheight\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIbitmap\fP 1i
|
||||
Specifies the bitmap.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XRecCur.man,v 1.2 2001/01/27 18:20:03 dawes Exp $
|
||||
.\" $XFree86: xc/doc/man/X11/XRecCur.man,v 1.3 2003/04/28 22:17:56 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,29 +144,15 @@
|
|||
.SH NAME
|
||||
XRecolorCursor, XFreeCursor, XQueryBestCursor \- manipulate cursors
|
||||
.SH SYNTAX
|
||||
XRecolorCursor\^(\^\fIdisplay\fP, \fIcursor\fP\^, \fIforeground_color\fP\^, \fIbackground_color\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Cursor \fIcursor\fP\^;
|
||||
.br
|
||||
XColor *\fIforeground_color\fP\^, *\fIbackground_color\fP\^;
|
||||
.LP
|
||||
XFreeCursor\^(\^\fIdisplay\fP, \fIcursor\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Cursor \fIcursor\fP\^;
|
||||
.LP
|
||||
Status XQueryBestCursor\^(\^\fIdisplay\fP, \fId\fP, \fIwidth\fP\^, \fIheight\fP\^, \fIwidth_return\fP\^, \fIheight_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Drawable \fId\fP\^;
|
||||
.br
|
||||
unsigned int \fIwidth\fP\^, \fIheight\fP\^;
|
||||
.br
|
||||
unsigned int *\fIwidth_return\fP\^, *\fIheight_return\fP\^;
|
||||
.HP
|
||||
int XRecolorCursor\^(\^Display *\fIdisplay\fP\^, Cursor \fIcursor\fP\^, XColor
|
||||
*\fIforeground_color\fP\^, XColor *\fIbackground_color\fP\^);
|
||||
.HP
|
||||
int XFreeCursor\^(\^Display *\fIdisplay\fP\^, Cursor \fIcursor\fP\^);
|
||||
.HP
|
||||
Status XQueryBestCursor\^(\^Display *\fIdisplay\fP\^, Drawable \fId\fP\^,
|
||||
unsigned int \fIwidth\fP\^, unsigned int \fIheight\fP\^, unsigned int
|
||||
*\fIwidth_return\fP\^, unsigned int *\fIheight_return\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIbackground_color\fP 1i
|
||||
Specifies the RGB values for the background of the source.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XReparWin.man,v 1.2 2001/01/27 18:20:03 dawes Exp $
|
||||
.\" $XFree86: xc/doc/man/X11/XReparWin.man,v 1.3 2003/04/28 22:17:56 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,15 +144,9 @@
|
|||
.SH NAME
|
||||
XReparentWindow \- reparent windows
|
||||
.SH SYNTAX
|
||||
XReparentWindow\^(\^\fIdisplay\fP, \fIw\fP\^, \fIparent\fP\^, \fIx\fP\^, \fIy\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
Window \fIparent\fP\^;
|
||||
.br
|
||||
int \fIx\fP\^, \fIy\fP\^;
|
||||
.HP
|
||||
int XReparentWindow\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^, Window
|
||||
\fIparent\fP\^, int \fIx\fP\^, int \fIy\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XRMStr.man,v 1.2 2001/01/27 18:20:03 dawes Exp $
|
||||
.\" $XFree86: xc/doc/man/X11/XRMStr.man,v 1.3 2003/04/28 22:17:56 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,13 +144,10 @@
|
|||
.SH NAME
|
||||
XResourceManagerString, XScreenResourceString \- obtain server resource properties
|
||||
.SH SYNTAX
|
||||
char *XResourceManagerString\^(\^\fIdisplay\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.LP
|
||||
char *XScreenResourceString\^(\^\fIscreen\fP\^)
|
||||
.br
|
||||
Screen *\fIscreen\fP\^;
|
||||
.HP
|
||||
char *XResourceManagerString\^(\^Display *\fIdisplay\fP\^);
|
||||
.HP
|
||||
char *XScreenResourceString\^(\^Screen *\fIscreen\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XSContext.man,v 1.2 2001/01/27 18:20:03 dawes Exp $
|
||||
.\" $XFree86: xc/doc/man/X11/XSContext.man,v 1.3 2003/04/28 22:17:56 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,38 +144,20 @@
|
|||
.SH NAME
|
||||
XSaveContext, XFindContext, XDeleteContext, XUniqueContext \- associative look-up routines
|
||||
.SH SYNTAX
|
||||
int XSaveContext(\^\fIdisplay\fP, \fIrid\fP, \fIcontext\fP, \fIdata\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
XID \fIrid\fP\^;
|
||||
.br
|
||||
XContext \fIcontext\fP\^;
|
||||
.br
|
||||
XPointer \fIdata\fP\^;
|
||||
.HP
|
||||
int XSaveContext(\^Display *\fIdisplay\fP\^, XID \fIrid\fP\^, XContext
|
||||
\fIcontext\fP\^, XPointer \fIdata\fP\^);
|
||||
.HP
|
||||
int XFindContext(\^Display *\fIdisplay\fP\^, XID \fIrid\fP\^, XContext
|
||||
\fIcontext\fP\^, XPointer *\fIdata_return\fP\^);
|
||||
.HP
|
||||
int XDeleteContext(\^Display *\fIdisplay\fP\^, XID \fIrid\fP, XContext
|
||||
\fIcontext\fP);
|
||||
.LP
|
||||
int XFindContext(\^\fIdisplay\fP, \fIrid\fP, \fIcontext\fP, \fIdata_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
XID \fIrid\fP\^;
|
||||
.br
|
||||
XContext \fIcontext\fP\^;
|
||||
.br
|
||||
XPointer *\fIdata_return\fP\^;
|
||||
.LP
|
||||
int XDeleteContext(\^\fIdisplay\fP, \fIrid\fP, \fIcontext\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
XID \fIrid\fP;
|
||||
.br
|
||||
XContext \fIcontext\fP;
|
||||
.LP
|
||||
XContext XUniqueContext(\^)
|
||||
XContext XUniqueContext(void);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIcontext\fP 1i
|
||||
Specifies the context type to which the data belongs.
|
||||
Specifies the context type to which the data belongs.
|
||||
.IP \fIdata\fP 1i
|
||||
Specifies the data to be associated with the window and type.
|
||||
.IP \fIdata_return\fP 1i
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XSInput.man,v 1.2 2001/01/27 18:20:03 dawes Exp $
|
||||
.\" $XFree86: xc/doc/man/X11/XSInput.man,v 1.3 2003/04/28 22:17:56 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,13 +144,9 @@
|
|||
.SH NAME
|
||||
XSelectInput \- select input events
|
||||
.SH SYNTAX
|
||||
XSelectInput\^(\^\fIdisplay\fP, \fIw\fP\^, \fIevent_mask\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
long \fIevent_mask\fP\^;
|
||||
.HP
|
||||
int XSelectInput\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^, long
|
||||
\fIevent_mask\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XSeEvent.man,v 1.3 2001/02/09 03:47:46 tsi Exp $
|
||||
.\" $XFree86: xc/doc/man/X11/XSeEvent.man,v 1.4 2003/04/28 22:17:57 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,31 +144,14 @@
|
|||
.SH NAME
|
||||
XSendEvent, XDisplayMotionBufferSize, XGetMotionEvents, XTimeCoord \- send events and pointer motion history structure
|
||||
.SH SYNTAX
|
||||
Status XSendEvent\^(\^\fIdisplay\fP, \fIw\fP\^, \fIpropagate\fP\^, \fIevent_mask\fP\^, \fIevent_send\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
Bool \fIpropagate\fP\^;
|
||||
.br
|
||||
long \fIevent_mask\fP\^;
|
||||
.br
|
||||
XEvent *\fIevent_send\fP\^;
|
||||
.LP
|
||||
unsigned long XDisplayMotionBufferSize\^(\^\fIdisplay\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.LP
|
||||
XTimeCoord *XGetMotionEvents\^(\^\fIdisplay\fP, \fIw\fP\^, \fIstart\fP\^, \fIstop\fP\^, \fInevents_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
Time \fIstart\fP\^, \fIstop\fP\^;
|
||||
.br
|
||||
int *\fInevents_return\fP\^;
|
||||
.HP
|
||||
Status XSendEvent\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^, Bool
|
||||
\fIpropagate\fP\^, long \fIevent_mask\fP\^, XEvent *\fIevent_send\fP\^);
|
||||
.HP
|
||||
unsigned long XDisplayMotionBufferSize\^(\^Display *\fIdisplay\fP\^);
|
||||
.HP
|
||||
XTimeCoord *XGetMotionEvents\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^,
|
||||
Time \fIstart\fP\^, Time \fIstop\fP\^, int *\fInevents_return\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XSeArcMod.man,v 1.2 2001/01/27 18:20:04 dawes Exp $
|
||||
.\" $XFree86: xc/doc/man/X11/XSeArcMod.man,v 1.3 2003/04/28 22:17:56 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,29 +144,15 @@
|
|||
.SH NAME
|
||||
XSetArcMode, XSetSubwindowMode, XSetGraphicsExposure \- GC convenience routines
|
||||
.SH SYNTAX
|
||||
XSetArcMode\^(\^\fIdisplay\fP, \fIgc\fP\^, \fIarc_mode\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
int \fIarc_mode\fP\^;
|
||||
.LP
|
||||
XSetSubwindowMode\^(\^\fIdisplay\fP, \fIgc\fP\^, \fIsubwindow_mode\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
int \fIsubwindow_mode\fP\^;
|
||||
.LP
|
||||
XSetGraphicsExposures\^(\^\fIdisplay\fP, \fIgc\fP\^, \fIgraphics_exposures\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
Bool \fIgraphics_exposures\fP\^;
|
||||
.HP
|
||||
int XSetArcMode\^(\^Display *\fIdisplay\fP\^, GC \fIgc\fP\^, int
|
||||
\fIarc_mode\fP\^);
|
||||
.HP
|
||||
int XSetSubwindowMode\^(\^Display *\fIdisplay\fP\^, GC \fIgc\fP\^, int
|
||||
\fIsubwindow_mode\fP\^);
|
||||
.HP
|
||||
int XSetGraphicsExposures\^(\^Display *\fIdisplay\fP\^, GC \fIgc\fP\^, Bool
|
||||
\fIgraphics_exposures\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIarc_mode\fP 1i
|
||||
Specifies the arc mode.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XSeClipO.man,v 1.2 2001/01/27 18:20:04 dawes Exp $
|
||||
.\" $XFree86: xc/doc/man/X11/XSeClipO.man,v 1.3 2003/04/28 22:17:56 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,35 +144,16 @@
|
|||
.SH NAME
|
||||
XSetClipOrigin, XSetClipMask, XSetClipRectangles \- GC convenience routines
|
||||
.SH SYNTAX
|
||||
XSetClipOrigin\^(\^\fIdisplay\fP, \fIgc\fP\^, \fIclip_x_origin\fP\^, \fIclip_y_origin\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
int \fIclip_x_origin\fP\^, \fIclip_y_origin\fP\^;
|
||||
.LP
|
||||
XSetClipMask\^(\^\fIdisplay\fP, \fIgc\fP, \fIpixmap\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
Pixmap \fIpixmap\fP\^;
|
||||
.LP
|
||||
XSetClipRectangles\^(\^\fIdisplay\fP, \fIgc\fP\^, \fIclip_x_origin\fP\^, \fIclip_y_origin\fP\^, \fIrectangles\fP\^, \fIn\fP\^, \fIordering\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
int \fIclip_x_origin\fP\^, \fIclip_y_origin\fP\^;
|
||||
.br
|
||||
XRectangle \fIrectangles\fP[]\^;
|
||||
.br
|
||||
int \fIn\fP\^;
|
||||
.br
|
||||
int \fIordering\fP\^;
|
||||
.HP
|
||||
int XSetClipOrigin\^(\^Display *\fIdisplay\fP\^, GC \fIgc\fP\^, int
|
||||
\fIclip_x_origin\fP\^, int \fIclip_y_origin\fP\^);
|
||||
.HP
|
||||
int XSetClipMask\^(\^Display *\fIdisplay\fP\^, GC \fIgc\fP\^, Pixmap
|
||||
\fIpixmap\fP\^);
|
||||
.HP
|
||||
int XSetClipRectangles\^(\^Display *\fIdisplay\fP\^, GC \fIgc\fP\^, int
|
||||
\fIclip_x_origin\fP\^, int \fIclip_y_origin\fP\^, XRectangle
|
||||
\fIrectangles\fP[]\^, int \fIn\fP\^, int \fIordering\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XSeClosDM.man,v 1.2 2001/01/27 18:20:04 dawes Exp $
|
||||
.\" $XFree86: xc/doc/man/X11/XSeClosDM.man,v 1.3 2003/04/28 22:17:57 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,17 +144,10 @@
|
|||
.SH NAME
|
||||
XSetCloseDownMode, XKillClient \- control clients
|
||||
.SH SYNTAX
|
||||
XSetCloseDownMode\^(\^\fIdisplay\fP, \fIclose_mode\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
int \fIclose_mode\fP\^;
|
||||
.LP
|
||||
XKillClient\^(\^\fIdisplay\fP, \fIresource\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
XID \fIresource\fP\^;
|
||||
.HP
|
||||
int XSetCloseDownMode\^(\^Display *\fIdisplay\fP\^, int \fIclose_mode\fP\^);
|
||||
.HP
|
||||
int XKillClient\^(\^Display *\fIdisplay\fP\^, XID \fIresource\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIclose_mode\fP 1i
|
||||
Specifies the client close-down mode.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XSeCmd.man,v 1.3 2001/02/09 03:47:46 tsi Exp $
|
||||
.\" $XFree86: xc/doc/man/X11/XSeCmd.man,v 1.4 2003/04/28 22:17:57 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,26 +144,12 @@
|
|||
.SH NAME
|
||||
XSetCommand, XGetCommand \- set or read a window's WM_COMMAND property
|
||||
.SH SYNTAX
|
||||
XSetCommand\^(\^\fIdisplay\fP, \fIw\fP, \fIargv\fP, \fIargc\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
char **\fIargv\fP\^;
|
||||
.br
|
||||
int \fIargc\fP\^;
|
||||
.LP
|
||||
Status XGetCommand\^(\^\fIdisplay\fP, \fIw\fP, \fIargv_return\fP,
|
||||
\fIargc_return\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
Window \fIw\fP\^;
|
||||
.br
|
||||
char ***\fIargv_return\fP\^;
|
||||
.br
|
||||
int *\fIargc_return\fP\^;
|
||||
.HP
|
||||
int XSetCommand\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^, char
|
||||
**\fIargv\fP\^, int \fIargc\fP\^);
|
||||
.HP
|
||||
Status XGetCommand\^(\^Display *\fIdisplay\fP\^, Window \fIw\fP\^, char
|
||||
***\fIargv_return\fP\^, int *\fIargc_return\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIargc\fP 1i
|
||||
Specifies the number of arguments.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XSeErrHan.man,v 1.2 2001/01/27 18:20:04 dawes Exp $
|
||||
.\" $XFree86: xc/doc/man/X11/XSeErrHan.man,v 1.3 2003/04/28 22:17:57 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,39 +144,21 @@
|
|||
.SH NAME
|
||||
XSetErrorHandler, XGetErrorText, XDisplayName, XSetIOErrorHandler, XGetErrorDatabaseText \- default error handlers
|
||||
.SH SYNTAX
|
||||
int (*XSetErrorHandler\^(\^\fIhandler\fP\^)\^)\^(\^)
|
||||
.br
|
||||
int (\^*\^\fIhandler\fP\^)\^(Display *, XErrorEvent *)
|
||||
.LP
|
||||
XGetErrorText\^(\^\fIdisplay\fP, \fIcode\fP, \fIbuffer_return\fP, \fIlength\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
int \fIcode\fP\^;
|
||||
.br
|
||||
char *\fIbuffer_return\fP\^;
|
||||
.br
|
||||
int \fIlength\fP\^;
|
||||
.LP
|
||||
char *XDisplayName\^(\^\fIstring\fP\^)
|
||||
.br
|
||||
char *\fIstring\fP\^;
|
||||
.LP
|
||||
int (*XSetIOErrorHandler\^(\^\fIhandler\fP\^)\^)\^(\^)
|
||||
.br
|
||||
int (\^*\^\fIhandler\fP\^)(Display *);
|
||||
.LP
|
||||
XGetErrorDatabaseText\^(\^\fIdisplay\fP, \fIname\fP, \fImessage\fP, \fIdefault_string\fP, \fIbuffer_return\fP, \fIlength\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
char *\fIname\fP, *\fImessage\fP\^;
|
||||
.br
|
||||
char *\fIdefault_string\fP\^;
|
||||
.br
|
||||
char *\fIbuffer_return\fP\^;
|
||||
.br
|
||||
int \fIlength\fP\^;
|
||||
.HP
|
||||
int (*XSetErrorHandler\^(\^int (\^*\^\fIhandler\fP\^)\^(Display *, XErrorEvent
|
||||
*)\^)\^)\^(\^);
|
||||
.HP
|
||||
int XGetErrorText\^(\^Display *\fIdisplay\fP\^, int \fIcode\fP\^, char
|
||||
*\fIbuffer_return\fP\^, int \fIlength\fP\^);
|
||||
.HP
|
||||
char *XDisplayName\^(\^char *\fIstring\fP\^);
|
||||
.HP
|
||||
int (*XSetIOErrorHandler\^(\^int (\^*\^\fIhandler\fP\^)(Display
|
||||
*)\^)\^)\^(\^);
|
||||
.HP
|
||||
int XGetErrorDatabaseText\^(\^Display *\fIdisplay\fP\^, char *\fIname\fP, char
|
||||
*\fImessage\fP\^, char *\fIdefault_string\fP\^, char *\fIbuffer_return\fP\^,
|
||||
int \fIlength\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIbuffer_return\fP 1i
|
||||
Returns the error description.
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
.\" of this documentation for any purpose.
|
||||
.\" It is provided ``as is'' without express or implied warranty.
|
||||
.\"
|
||||
.\" $XFree86: xc/doc/man/X11/XSeFillS.man,v 1.2 2001/01/27 18:20:04 dawes Exp $
|
||||
.\" $XFree86: xc/doc/man/X11/XSeFillS.man,v 1.3 2003/04/28 22:17:57 herrb Exp $
|
||||
.\"
|
||||
.ds xT X Toolkit Intrinsics \- C Language Interface
|
||||
.ds xW Athena X Widgets \- C Language X Toolkit Interface
|
||||
|
|
@ -144,21 +144,12 @@
|
|||
.SH NAME
|
||||
XSetFillStyle, XSetFillRule \- GC convenience routines
|
||||
.SH SYNTAX
|
||||
XSetFillStyle\^(\^\fIdisplay\fP, \fIgc\fP\^, \fIfill_style\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
int \fIfill_style\fP\^;
|
||||
.LP
|
||||
XSetFillRule\^(\^\fIdisplay\fP, \fIgc\fP\^, \fIfill_rule\fP\^)
|
||||
.br
|
||||
Display *\fIdisplay\fP\^;
|
||||
.br
|
||||
GC \fIgc\fP\^;
|
||||
.br
|
||||
int \fIfill_rule\fP\^;
|
||||
.HP
|
||||
int XSetFillStyle\^(\^Display *\fIdisplay\fP\^, GC \fIgc\fP\^, int
|
||||
\fIfill_style\fP\^);
|
||||
.HP
|
||||
int XSetFillRule\^(\^Display *\fIdisplay\fP\^, GC \fIgc\fP\^, int
|
||||
\fIfill_rule\fP\^);
|
||||
.SH ARGUMENTS
|
||||
.IP \fIdisplay\fP 1i
|
||||
Specifies the connection to the X server.
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue