Guide to X11/Xt Clients

From Wikibooks, open books for an open world
Jump to navigation Jump to search

Authors · History · Print · License

Introduction · Configuring · Building · Starting Sessions · Starting Programs · Fonts · Window Managers · Xt Clients · Political History · References and Links

Supplements: Commands

Edit this template

Xt Clients[edit | edit source]

This window from "xman" contains three rectangular buttons. Each button is a widget using the X Toolkit Intrinsics.

Some X clients are Xt clients, that is, they use the X Toolkit Intrinsics. This is a mechanism to divide a window into smaller windows called widgets such as buttons and menus. You can configure these widgets using X resources.

For example, a typical "xterm" window contains a scroll bar and the emulated screen of the terminal. The "xman" program, for viewing manual pages, contains three widgets of buttons on its tiny main screen. By using the "Manual Page" button, you obtain a larger window with several widgets: menu buttons, a scroll bar, and a text box containing the manual page.

However, developers of libraries like GTK+ and Qt have decided not to use these intrinsics. Thus, X resources are not available to GTK+ and Qt programs.

Clipboard

To do:
Why they did that? Alternative mechanisms?


The X resources are settings that you write in a text file in a certain syntax and then load with xrdb.

xrdb[edit | edit source]

To set X resources, you need to put them in some text file like ~/.Xresources and then load it with:

$ xrdb -merge ~/.Xresources

There is a difference between "XTerm.resource" and "xterm.resource".

If you want one xterm to use the resources "GameTerm.resource" instead of "XTerm.resource", you would start it with:

$ xterm -class GameTerm

xrdb with standard input[edit | edit source]

You can also input resources using standard input.

xterm[edit | edit source]

Clipboard

To do:


xterm has menus. You must hold Control and click with mouse button 1, 2, or 3.