X Toolkit Intrinsics
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 language (or any language that can use the C API, such as C++). Design took place late 1980s to early 1990s.[citation needed ]
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 ("widgets"), such as buttons or menus. The Xt library provides support for creating widget types, but does not provide any itself. A programmer could use the Xt library to create and use a new type of widget. Xt implemented some object oriented concepts, such as inheritance (the user could make their own button by reusing code written for another type of button), events, and callbacks.
Since the graphical user interface of applications typically requires a number of widget types, most developers were reluctant to write their own, and instead prefer to use libraries such as Xaw, Motif and OLIT that provide a set of widgets.
Developers of Xt applications were expected to provide an "app-defaults Xrm database": text files describing the appearance, labels, and positions of all the widgets.[1] Although there was a way to put fallback resource specifications in the code, this was often not done, or not tested, and required totally different syntax than the database.[citation needed ]} This resulted in totally unusable apps if the correct database was not found during application initialization, (which could be complicated if the search path was changed by loading other resource files).[citation needed ]
Most modern, widely used toolkits such as GTK and Qt do not use the Xt library. Rather, they use Xlib or XCB directly.
References
[edit ]- ^ Converse, Donna. "Loading the Resource Database". www.x.org. X Consortium. Retrieved 2025年10月16日.
- X Toolkit Intrinsics – C Language Interface (pdf), 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
- McCormack, Joel; Asente, Paul (January 1988), "An overview of the X toolkit", UIST '88: Proceedings of the 1st annual ACM SIGGRAPH symposium on User Interface Software , pp. 46–55, doi:10.1145/62402.62407, ISBN 0-89791-283-7, S2CID 12924752
- Nye, Adrian; O'Reilly, Tim (1990). X Toolkit Intrinsics Programming Manual. The Definitive Guides to the X Window System. Vol. 4. O'Reilly Media. ISBN 978-1-56592-003-3.[discuss ]
- O'Reilly, Tim; Langley, Mark (1990). X Toolkit Intrinsics Reference Manual. The Definitive Guides to the X Window System. Vol. 5. O'Reilly Media. ISBN 978-0-937175-35-4.[discuss ]
This computer graphics–related article is a stub. You can help Wikipedia by expanding it.
This programming-language-related article is a stub. You can help Wikipedia by expanding it.