Next Previous Contents

3. GUI Toolkits

The standard graphical subsystem for UNIX and Linux, called X, has its own libraries for GUI development. They provide a low-level programming interface to X, but tend to be hard to use. Old end-user applications and other toolkits of course make good use of them. Nowadays the Linux GUI scene is dominated by GTK+ and Qt, since two popular, complete user environments - GNOME and KDE - are based on them.

3.1 Concepts in the Table

Library

Common name or abbreviation of the toolkit.

Beginner

Whether the toolkit is suitable for a newbie programmer.

License

Different licenses for different GUI toolkits have practical significance. GTK+, TK and GNUstep licenses allow you to develop both open source and closed source applications without paying for a license. Motif license requires payment, while the QT license requires payment only if you write closed source programs.

Language

The language that is most often used with the toolkit.

Bindings

Other languages which can use the toolkit.

Examples

Applications that use the toolkit.

Comments

Additional information on the toolkit.

3.2 Major GUI Toolkits


Library
BeginnerLicenseLanguageBindingsExamplesComments
TKYesFreeTCLPerl, Python, othersmake xconfig, TKDesk
GTK+NoFree (LGPL)CPerl, C++, Python, many othersGNOME, GimpVery popular
QTNoFree for open sourceC++Python, Perl, C, others?KDEVery popular
MotifNoNon-freeC/C++Python, others?Netscape, Wordperfect Lesstif isa free replacement
GNUstepNoFree (LGPL)Objective CGuile, Java?None widely known, but see the application listGNUstep is still under development

3.3 Links


Next Previous Contents