X Toolkit Intrinsics


X Toolkit Intrinsics is a library that implements an API to facilitate the development of programs with a graphical user interface for the X Window System. It can be used in the C or C++ languages.
The low-level library Xlib is the client-side implementation of the X11 protocol. It communicates with an X server, but does not provide any function for implementing graphical control elements, such as buttons or menus. The Xt library provides support for creating and using graphical control elements, but does not provide any itself. Instead graphical control elements are implemented by other libraries using Xt, such as Xaw, Motif and OLIT.
A programmer could use the Xt library to create and use a new graphical control element, e.g., a "two-side button". Since the graphical user interface of applications typically requires a number of graphical control elements, most developers are reluctant to write their own, and instead prefer to use libraries such as Xaw, Motif and OLIT.
Some other widely-used toolkits FLTK, GTK, and Qt do not use the Xt library. Rather, they use Xlib or XCB directly.