A standard way of providing a small about box for your application.
You provide the name of your application, version, copyright, a list
of authors and some comments about your application. It also allows
the programmer to provide a logo to be displayed.
The following is a simple example of its use, note that the descriptive
text is surrounded by the _(). This
will have the text translated to the the user's language at runtime.
const gchar *authors[] = {
"Wanda the sexy fish",
NULL
};
gtk_widget_show (gnome_about_new ("Gnome Wizit", VERSION,
"Copyright 1999 Gnome Programming Inc.",
(const gchar **) authors,
_("The gnome wizit is the most fabulous thing ever "
"written for the GNOME desktop environment. You must "
"use this everyday."),
NULL));
Creates a new GNOME About dialog. title, version,
copyright, and authors are displayed first, in that order.
comments is typically the location for multiple lines of text, if
necessary. (Separate with "\n".) logo is the filename of a
optional pixmap to be displayed in the dialog, typically a product or
company logo of some sort; set to NULL if no logo file is available.
Constructs a new GNOME About dialog, given an object
about newly created via the Gtk type system. title, version,
copyright, and authors are displayed first, in that order.
comments is typically the location for multiple lines of text, if
necessary. (Separate with "\n".) logo is the filename of a
optional pixmap to be displayed in the dialog, typically a product or
company logo of some sort; set to NULL if no logo file is available.
Note:
Only for use by bindings to languages other than C; don't use
in applications.