1. NAME

XInternAtom, XInternAtoms, XGetAtomName, XGetAtomNames - create or return atom names

2. SYNTAX

Atom XInternAtom(Display *display, char *atom_name, Bool only_if_exists); Status XInternAtoms(Display *display, char **names, int count, Bool only_if_exists, Atom *atoms_return); char *XGetAtomName(Display *display, Atom atom); Status XGetAtomNames(Display *display, Atom *atoms, int count, char **names_return);

3. ARGUMENTS

atom 1i Specifies the atom for the property name you want returned.

atoms 1i Specifies the array of atoms.

atom_name 1i Specifies the name associated with the atom you want returned.

atoms_return 1i Returns the atoms.

count 1i Specifies the number of \*(Cn.

count 1i Specifies the number of \*(Cn.

display 1i Specifies the connection to the X server.

names 1i Specifies the array of atom names.

names_return 1i Returns the atom names.

only_if_exists 1i Specifies a Boolean value that indicates whether the atom must be created.

4. DESCRIPTION

The .ZN XInternAtom function returns the atom identifier associated with the specified atom_name string. If only_if_exists is .ZN False , the atom is created if it does not exist. Therefore, .ZN XInternAtom can return .ZN 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.

.ZN XInternAtom can generate .ZN BadAlloc and .ZN BadValue errors.

The .ZN 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 .ZN 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.

.ZN XInternAtoms can generate .ZN BadAlloc and .ZN BadValue errors.

The .ZN XGetAtomName function returns the name associated with the specified 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 .ZN XFree .

.ZN XGetAtomName can generate a .ZN BadAtom error.

The .ZN XGetAtomNames function returns the names associated with the specified atoms. The names are stored in the names_return array supplied by the caller. Calling this function is equivalent to calling .ZN 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.

.ZN XGetAtomNames can generate a .ZN BadAtom error.

5. DIAGNOSTICS

  • .ZN BadAlloc
     The server failed to allocate the requested resource or server memory.
  • .ZN BadAtom
     A value for an Atom argument does not name a defined Atom.
  • .ZN BadValue
     Some numeric 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.

6. SEE ALSO

XFree(3), XGetWindowProperty(3)
\*(xL