Links and Further Reading
- GTK+ home page.
- GTK+ Tutorial. (This is
what I learned GTK off!)
- GTK+ FAQ.
- Glade. Glade is a free
graphical user interface builder for GTK+ and Gnome.
- Installed info pages ("info gtk", "info glib", "info gdk"). As opposed to the man pages.
- "Developing Linux Applications with GTK+ and GDK." Eric Harlow.
New Riders, 1999.
- The installed header files (/usr/include/gtk/* etc) can be useful
too, and often reveal functionality not yet mentioned in the
documentation. (e.g.) the ability to reorder the elements of a list,
type GtkCList. (Use
gtk_clist_set_reorderable ( (GtkCList
*)list, TRUE);
)
Previous: Supplementary libraries: GDK, GLIB
Back to index