X Toolkit Intrinsics

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by 50.53.1.33 (talk) at 23:06, 8 July 2016 (File). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Xt (mint-green) in the X Window System graphics stack

X Toolkit Intrinsics (also known as Xt, for X toolkit) is a library that implements an API to facilitate the development of programs with a graphical user interface (GUI) 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 e.g. 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 can for example 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 are reluctant to write own ones, and instead rather use the ones provided by libraries such as Xaw, Motif and OLIT.

Most modern toolkits such as FLTK, GTK+, and Qt do not use the Xt library, preferring to use Xlib or even XCB directly.

External links

  • X Toolkit Intrinsics - C Language Interface, X.Org Foundation
  • "comp.windows.x.intrinsics Frequently Asked Questions". faqs.org. 1997-04-18. Retrieved 2008-07-13.
  • The place of Intrinsics in X11, Professor David Marshall, Cardiff School of Computer Science, Cardiff University
  • TestXt2, Example C program that creates a Menu Bar using just Xt/Xaw
  • http://portal.acm.org/citation.cfm?id=62402.62407