

                     Gtk--

http://www.iki.fi/terop/gtk/gtk--.html

Gtk-- is a C++ wrapper for GTK, the Gimp ToolKit. GTK is a library for creating
graphical user interfaces. Gtk-- is distributed under GNU LGPL.
 
Highlights:
 * Typesafe signal framework implemented with templates and function objects
 * Extending the widget hierarchy via inheritance is now easy enough to
   use as main method for creating new widgets and applications
 * Tracks closely development of gtk and provides equivalent C++ interface

For more information, see
  Gtk--'s homepage  http://www.iki.fi/terop/gtk/gtk--.html
  Gtk's homepage    http://www.gimp.org/gtk/

Copyright (C) 1997 Elliot Lee <sopwith@redhat.com>  
               and Phil Dawes <P.L.Dawes-CSSE94@cs.bham.ac.uk>
               and Tero Pulkkinen <terop@modeemi.cs.tut.fi>
               and Guillaume Laurent
               (and others, see AUTHORS file)

NOTICE: if you got this version of gtk-- from anywhere else than
        from web site http://www.iki.fi/terop/gtk/gtk--.html or from
        ftp://ftp.gimp.org/pub/gtk/gtk--/ then there's a chance that you
        have old version of gtk-- in your hands. Please upgrade to 
        newer version as it'll work better.
Notice #2: Release notes from gtk-- web page will have informatiom
           about problems found in different gtk-- versions and
           about new features added to versions.

Gtk-- is currently maintained by Tero Pulkkinen. Send all bug reports to me.
(and no, there's no excuse to forget making a bug report when bugs
are found)

//--------------------------------------------------
How to build gtk--:

./configure --prefix=/usr
make

//--------------------------------------------------
How to generate documentation:

After building gtk--, you can generate documentation by the following
commands:
  cd docgen
  make docs

//--------------------------------------------------

       To FreeBSD Users

               To build Gtk--
                   1) ensure perl5 has been installed under 2.2.x.
                   2) ensure gmake has been installed.
                   3) ./configure
                   4) gmake
                   5) gmake install

       If you have gtk-config named other than gtk-config, also make
       sure set full path to the 'gtk-config' to environment variable
       GTK_CONFIG before run './configure'.

       For example, if you have gtk11d-config as gtk-config,
          env GTK_CONFIG=`which gtk11d-config` ./configure
       will do the trick.
