gecko-dev/webshell/embed/gtk
2000-05-17 02:49:35 +00:00
..
examples Pass value of NSPR_VERSION to subconfigures to reduce number of places the nspr version needs to be updated. Bug #27457 2000-02-15 04:52:52 +00:00
lib Moved static MOZ_COMPONENT_NSPR_LIBS, MOZ_COMPONENT_XPCOM_LIBS, MOZ_COMPONENT_LIBS definitions from configure.in to config.mk. Replaced -lxpcom in Makefiles to $(XPCOM_LIBS) so that we can optionally link against -lboehm when needed. Bug #31287 2000-04-04 04:46:38 +00:00
.cvsignore This one should be ignored. 1999-09-10 23:33:17 +00:00
ABOUT-NLS
aclocal.m4
AUTHORS
ChangeLog
config.guess Updating config.guess & config.sub to latest GNU versions. Bug #22599, r=wtc 2000-03-30 03:12:16 +00:00
config.h.in
config.sub Updating config.guess & config.sub to latest GNU versions. Bug #22599, r=wtc 2000-03-30 03:12:16 +00:00
configure Pass value of NSPR_VERSION to subconfigures to reduce number of places the nspr version needs to be updated. Bug #27457 2000-02-15 04:52:52 +00:00
configure.in Pass value of NSPR_VERSION to subconfigures to reduce number of places the nspr version needs to be updated. Bug #27457 2000-02-15 04:52:52 +00:00
COPYING
INSTALL
install-sh
ltconfig
ltmain.sh
Makefile.am
Makefile.in Pass value of NSPR_VERSION to subconfigures to reduce number of places the nspr version needs to be updated. Bug #27457 2000-02-15 04:52:52 +00:00
missing
mkinstalldirs
mozilla_config.mk.in changes all usages of NS_NewTimer to CreateInstance 2000-05-17 02:49:35 +00:00
NEWS
README
stamp-h.in

General
=======

Ever wanted to use html pages in your app?
Show your help-pages in a fancy way?

Now it's all possible. GtkMozilla is a widget that makes it easy
to embedd the layout engine from the Mozilla project in any Gtk+
program.

Note that Mozilla is a work in progress, and if you use a later
(or earlier) version of the Mozilla sources you might need to
do some small changes.

The tree i've been using is from cvs checked out May 18 1999.

Compilation
===========
To compile GtkMozilla you need a compiled version of the Mozilla
source tree. Then you just need to run configure and point it at
your mozilla directory.

Something like this:
./configure --with-mozilla=/dir/where/mozilla/is

This builds the basic GtkMozilla library and two examples.

Note:
If you use a later version than me you might need to update
the nsSetupRegistry.cpp file. It is just a copy of
mozilla/webshell/tests/viewer/nsSetupRegistry.cpp
in the Mozilla source tree.

Examples
========

When you compiled GtkMozilla two examples are built, simplebrowser
and helpbrowser. simplebrowser is a small app that can be used to
browse the web. helpbrowser is a small demo of how GtkMozilla could
be used to add help facilities to an app. It contains some demo
text taken from the gdb info pages.

To run the demos (or any program using GtkMozilla) you need to
set some enviroment variables. These help mozilla locating
libraries and datafiles it needs.

If you're running bash, just type something like this (replace the dir
 name):

export LD_LIBRARY_PATH=/dir/where/mozilla/is/dist/bin 
export MOZILLA_FIVE_HOME=/dir/where/mozilla/is/dist/bin

Then try out the examples:

examples/simplebrowser/simplebrowser

and

examples/helpbrowser/helpbrowser