This chapter is intended to be a reference to the libgnomeui.
Cesar Miquel <miquel@df.uba.ar>
A very specialized widget to display "About this program"-like boxes.
Main routine that creates the widget
gchar *authors[] = {"author1", "author2",..., NULL}; GtkWidget *about = gnome_about_new (_ ("GnoApp"), "1.2b", _ ("Copyright FSF (C) 1998"), authors, "Comment line 1\nLine 2", "/usr/local/share/pixmaps/gnoapp-logo.xpm"); gtk_widget_show (about);
gchar *title
Name of the application.
gchar *version
Version.
gchar *copyright
Copyright notice (one line.)
gchar **authors
NULL terminated list of authors.
gchar *comments
Other comments.
gchar *logo
A logo pixmap file.