*** UNIX MANUAL PAGE BROWSER ***

A Nergahak database for man pages research.

Navigation

Directory Browser

1Browse 4.4BSD4.4BSD
1Browse Digital UNIXDigital UNIX 4.0e
1Browse FreeBSDFreeBSD 14.3
1Browse MINIXMINIX 3.4.0rc6-d5e4fc0
1Browse NetBSDNetBSD 10.1
1Browse OpenBSDOpenBSD 7.7
1Browse UNIX v7Version 7 UNIX
1Browse UNIX v10Version 10 UNIX

Manual Page Search

Manual Page Result

0 Command: XGetAtomNames | Section: 3 | Source: Digital UNIX | File: XGetAtomNames.3X11.gz
XInternAtom(3X11) XInternAtom(3X11) NAME XInternAtom, XInternAtoms, XGetAtomName, XGetAtomNames - create or re- turn atom names SYNOPSIS Atom XInternAtom(display, atom_name, only_if_exists) Display *display; char *atom_name; Bool only_if_exists; Status XInternAtoms(display, names, count, only_if_exists, atoms_re- turn) Display *display; char **names; int count; Bool only_if_exists; Atom *atoms_return; char *XGetAtomName(display, atom) Display *display; Atom atom; Status XGetAtomNames(display, atoms, count, names_return) Display *display; Atom *atoms; int count; char **names_return; ARGUMENTS Specifies the atom for the property name you want returned. Specifies the array of atoms. Specifies the name associated with the atom you want returned. Returns the atoms. Specifies the number of atom names in the array. Specifies the number of atoms in the array. Specifies the connection to the X server. Specifies the array of atom names. Returns the atom names. Specifies a Boolean value that indicates whether the atom must be created. DESCRIPTION The XInternAtom function returns the atom identifier associated with the specified atom_name string. If only_if_exists is False, the atom is created if it does not exist. Therefore, XInternAtom can return None. If the atom name is not in the Host Portable Character Encoding, the result is implementation dependent. Uppercase and lowercase matter; the strings "thing", "Thing", and "thinG" all designate different atoms. The atom will remain defined even after the client's connection closes. It will become undefined only when the last connection to the X server closes. XInternAtom can generate BadAlloc and BadValue errors. The XInternAtoms function returns the atom identifiers associated with the specified names. The atoms are stored in the atoms_return array supplied by the caller. Calling this function is equivalent to calling XInternAtom for each of the names in turn with the specified value of only_if_exists, but this function minimizes the number of round trip protocol exchanges between the client and the X server. This function returns a nonzero status if atoms are returned for all of the names; otherwise, it returns zero. XInternAtoms can generate BadAlloc and BadValue errors. The XGetAtomName function returns the name associated with the speci- fied atom. If the data returned by the server is in the Latin Portable Character Encoding, then the returned string is in the Host Portable Character Encoding. Otherwise, the result is implementation dependent. To free the resulting string, call XFree. XGetAtomName can generate a BadAtom error. The XGetAtomNames function returns the names associated with the speci- fied atoms. The names are stored in the names_return array supplied by the caller. Calling this function is equivalent to calling XGetAtomName for each of the atoms in turn, but this function minimizes the number of round trip protocol exchanges between the client and the X server. This function returns a nonzero status if names are returned for all of the atoms; otherwise, it returns zero. XGetAtomNames can generate a BadAtom error. DIAGNOSTICS The server failed to allocate the requested resource or server memory. A value for an Atom argument does not name a defined Atom. Some nu- meric value falls outside the range of values accepted by the request. Unless a specific range is specified for an argument, the full range defined by the argument's type is accepted. Any argument defined as a set of alternatives can generate this error. SEE ALSO XFree(3X11), XGetWindowProperty(3X11) Xlib - C Language X Interface XInternAtom(3X11)

Navigation Options