
The GtkAboutDialog widget is derivated from GtkWindow.

Its purpose is to show the name of the application and a fancy scrolltext
with the names of all the contributors.

It basically looks like this:

      +-------------------------+
      |                         |
      |   My Application name   |
      |                         |
      +-------------------------+
      |  [        <odin@mandr]  +
      +-------------------------+

Description:
------------

  When shown, a toplevel, dialog decorated window is displayed with the
application name centered on it and contributors' names are scrolling
horizontally below.


Functions:
----------

The GtkAboutDialog widgets are created with this function:
GtkWidget *gtk_about_dialog_new(char *AppName, char **ContribList);

Where 'AppName' is the name of the application. It can contain '\n'
characters. And 'ContribList' is a NULL-terminated array of characters
strings. Each of these strings are supposed to contain the name of a
contributor.

Signals:
--------

  No signal for this widget.

Args:
-----
  
  No args for this widget.
  
Fields:
-------

  Since timers are involved, and so race conditions may be lurking around,
you shouldn't access ANY fields of GtkAboutDialog directly.


