1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
Inti-SourceView: An Inti binding for the GtkSourceView widget.
Copyright (C) 2003, The Inti Development Team.
1. What is Inti-SourceView.
---------------------------
Inti-SourceView is an Inti binding for GtkSourceView, the new
GTK+ source code editing widget.
GtkSourceView is a text widget that extends the standard GTK+ 2.x
text widget GtkTextView. It improves GtkTextView by implementing
features typical of a source code editor such as syntax highlighting,
bracket matching, markers and adds support for undo/redo operations.
Though still in beta development you should find Inti-SourceView
reasonably stable and easy to use.
2. Minimum Requirements for version 0.6.0.
------------------------------------------
- libinti-1.0 version >= 1.2.0
- libgtksourceview-1.0 version >= 0.6.0
- libgnomeprint-2.2 >= 2.2.0
You can download the latest GtkSourceView tarball from the gnome
ftp server:
ftp://ftp.gnome.org/pub/GNOME/sources/gtksourceview
3. Installation.
----------------
First, if you downloaded the CVS version of Inti-SourceView:
run: ./autogen.sh
If you have Inti, GtkSourceView or pkg-config installed in a
non-standard directory you will have to edit autogen.sh first
and add your local aclocal directory as an include option after
aclocal (e.g. aclocal -I $HOME/share/aclocal).
Next, if you downloaded the tarball version of Inti-SourceView, or
have already run "./autogen.sh" then,
run: ./configure
make
Don't forget to specify "--prefix=directory" with configure
if you want to install Inti-GConf in some directory other than
/usr/local.
If you want to install the Inti-SourceView library complete with
debugging and compiler symbols, so you can debug your applications
properly then,
run: make install
If you want to install the Inti-SourceView library with all
debugging symbols stripped out then instead,
run: install-strip
This will install a much smaller and faster library but you wont
be able to debug your programs properly.
4. Documentation.
-----------------
The docs/reference subdirectory contains the complete reference
documentation for the Inti-SourceView library. This documentation
was compiled with doxygen 1.3.2 from special comments in the
Inti-SourceView header files. If you downloaded the CVS version you
will have to compile the documentation yourself. Just follow the
directions in the docs/README file.
5. Test Programs.
-----------------
The tests directory contains an example application, test-widget,
that shows you how to use Inti-SourceView.
6. Contact.
-----------
If you find any bugs or need help using Inti-SourceView, let us know
at <inti-mail@lists.sourceforge.net>.
The Inti Development Team.
|