GnomeAbout

Name

GnomeAbout — Simple way to provide an About box for your application.

Synopsis


#include <gnome.h>


struct      GnomeAbout
GtkWidget*  gnome_about_new                 (const gchar *title,
                                             const gchar *version,
                                             const gchar *copyright,
                                             const gchar **authors,
                                             const gchar *comments,
                                             const gchar *logo);
void        gnome_about_construct           (GnomeAbout *about,
                                             const gchar *title,
                                             const gchar *version,
                                             const gchar *copyright,
                                             const gchar **authors,
                                             const gchar *comments,
                                             const gchar *logo);

Object Hierarchy


  GtkObject
   +----GtkWidget
         +----GtkContainer
               +----GtkBin
                     +----GtkWindow
                           +----GnomeDialog
                                 +----GnomeAbout

Description

A standard way of providing a small about box about 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.

Details


GnomeAbout

struct GnomeAbout;


gnome_about_new()

GtkWidget*  gnome_about_new                 (const gchar *title,
                                             const gchar *version,
                                             const gchar *copyright,
                                             const gchar **authors,
                                             const gchar *comments,
                                             const gchar *logo);

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.

title : Name of app.version : version numbercopyright : copyright stringauthors : NULL terminated list of authorscomments : Other commentslogo : a logo pixmap file.Returns : &GtkWidget pointer to new dialog


gnome_about_construct()

void        gnome_about_construct           (GnomeAbout *about,
                                             const gchar *title,
                                             const gchar *version,
                                             const gchar *copyright,
                                             const gchar **authors,
                                             const gchar *comments,
                                             const gchar *logo);

about : title : version : copyright : authors : comments : logo :