Whole document tree
    

Whole document tree

GTK+ FAQ: General Information Next Previous Contents

1. General Information

1.1 Before anything else: the greetings

The FAQ authors want to thank:

  • Havoc Pennington
  • Erik Mouw
  • Owen Taylor
  • Tim Janik
  • Thomas Mailund Jensen
  • Joe Pfeiffer
  • Andy Kahn
  • Federico Mena Quintero
  • Damon Chaplin
  • and all the members of the GTK+ lists
If we forgot you, please email us ! Thanks again (I know, it's really short :)

1.2 Authors

The original authors of GTK+ were:

  • Peter Mattis
  • Spencer Kimball
  • Josh MacDonald

Since then, much has been added by others. Please see the AUTHORS file in the distribution for the GTK+ Team.

1.3 What is GTK+?

GTK+ is a small and efficient widget set designed with the general look and feel of Motif. In reality, it looks much better than Motif. It contains common widgets and some more complex widgets such as a file selection, and color selection widgets.

GTK+ provides some unique features. (At least, I know of no other widget library which provides them). For example, a button does not contain a label, it contains a child widget, which in most instances will be a label. However, the child widget can also be a pixmap, image or any combination possible the programmer desires. This flexibility is adhered to throughout the library.

1.4 What is the + in GTK+?

Peter Mattis informed the gtk mailing list that:

"I originally wrote gtk which included the three libraries, libglib, libgdk and libgtk. It featured a flat widget hierarchy. That is, you couldn't derive a new widget from an existing one. And it contained a more standard callback mechanism instead of the signal mechanism now present in gtk+. The + was added to distinguish between the original version of gtk and the new version. You can think of it as being an enhancement to the original gtk that adds object oriented features."

1.5 Does the G in GTK+, GDK and GLib stand for?

GTK+ == Gimp Toolkit

GDK == GTK+ Drawing Kit

GLib == G Libray

1.6 Where is the documentation for GTK+?

In the GTK+ distribution's doc/ directory you will find the reference material for both GTK and GDK, this FAQ and the GTK Tutorial.

In addition, you can find links to HTML versions of these documents by going to http://www.gtk.org/. A packaged version of the GTK Tutorial, with SGML, HTML, Postscript, DVI and text versions can be found in ftp://ftp.gtk.org/pub/gtk/tutorial

There are now a couple of books available that deal with programming GTK+, GDK and GNOME:

1.7 Is there a mailing list (or mailing list archive) for GTK+?

Information on mailing lists relating to GTK+ can be found at:

http://www.gtk.org/mailinglists.html

1.8 How to get help with GTK+

First, make sure your question isn't answered in the documentation, this FAQ or the tutorial. Done that? You're sure you've done that, right? In that case, the best place to post questions is to the GTK+ mailing list.

1.9 How to report bugs in GTK+

Bugs should be reported to the GNOME bug tracking system ( http://bugs.gnome.org). To report a problem about GTK+, send mail to submit@bugs.gnome.org.

The subject of the mail should describe your problem. In the body of the mail, you should first include a "pseudo-header" that gives the package and version number. This should be separated by a blank line from the actual headers.

 Package: gtk+
 Version: 1.2.0

Substitute 1.2.0 with the version of GTK+ that you have installed.

Then describe the bug. Include:

  • Information about your system. For instance:
    • What operating system and version
    • What version of X
    • For Linux, what version of the C library
    And anything else you think is relevant.
  • How to reproduce the bug. If you can reproduce it with the testgtk program that is built in the gtk/ subdirectory, that will be most convenient. Otherwise, please include a short test program that exhibits the behavior. As a last resort, you can also provide a pointer to a larger piece of software that can be downloaded. (Bugs that can be reproduced within the GIMP are almost as good as bugs that can be reproduced in testgtk. If you are reporting a bug found with the GIMP, please include the version number of the GIMP you are using)
  • If the bug was a crash, the exact text that was printed out when the crash occured.
  • Further information such as stack traces may be useful, but are not necessary. If you do send a stack trace, and the error is an X error, it will be more useful if the stacktrace is produced running the test program with the --sync command line option.

1.10 Is there a Windows version of GTK+?

There is an on going port of GTK+ to the Windows platform which is making impressive progress.

See http://www.iki.fi/tml/gimp/win32 for more information.

1.11 What applications have been written with GTK+?

A list of some GTK+ based application can be found on the GTK+ web server at http://www.gtk.org/apps/ and contains more than 350 applications.

Failing that, look for a project to work on for the GNOME project, http://www.gnome.org/ Write a game. Write something that is useful.

Some of these are:

In addition to the above, the GNOME project ( http://www.gnome.org) is using GTK+ to build a free desktop for Linux. Many more programs can be found there.

1.12 I'm looking for an application to write in GTK+. How about an IRC client?

Ask on gtk-list for suggestions. There are at least three IRC clients already under development (probably more in fact. The server at http://www.forcix.cx/irc-clients.html list a bunch of them).

  • X-Chat.
  • girc. (Included with GNOME)
  • gsirc. (In the gnome CVS tree)


Next Previous Contents