[go: up one dir, main page]

Menu

Tree [a25e5f] gtkspell_2_0_15 /
 History

HTTPS access


File Date Author Commit
 docs 2008-12-01 eperez eperez [23897a] Fix feature request #1362304 by fixing docs/Mak...
 examples 2008-12-01 eperez eperez [2ea069] Fix feature request #1523881, #1643622 and #205...
 gtkspell 2008-12-01 eperez eperez [2ea069] Fix feature request #1523881, #1643622 and #205...
 po 2008-12-06 eperez eperez [6a659d] version 2.0.15 released
 .cvsignore 2004-06-26 noif noif [40fc5e] add .cvsignore files
 ABOUT-NLS 2004-06-10 noif noif [ef47d6] add i18l support with gettext
 AUTHORS 2008-12-21 eperez eperez [a53dce] update
 COPYING 2002-11-01 eeyem eeyem [9f5bff] Initial revision
 ChangeLog 2008-12-06 eperez eperez [6a659d] version 2.0.15 released
 INSTALL 2002-11-01 eeyem eeyem [9f5bff] Initial revision
 Makefile.am 2004-06-10 noif noif [7bb8e1] cleanup gettext by doing it the glib way
 NEWS 2002-11-01 eeyem eeyem [9f5bff] Initial revision
 README 2008-12-19 eperez eperez [3436eb] update
 autogen.sh 2008-05-04 eperez eperez [892fba] Update autogen.sh to use intltool
 configure.ac 2008-12-26 eperez eperez [a25e5f] update configure.ac for 2.0.15 release
 gtkspell-2.0.pc.in 2008-05-01 eperez eperez [d0b141] Move spell-checking library from Libs to Libs.p...
 gtkspell.spec.in 2005-02-22 noif noif [9125fa] prepare for release, for real this time

Read Me

/* gtkspell - a spell-checking addon for GTK's TextView widget
 * Copyright (c) 2002 Evan Martin.
 */

Introduction
------------
GtkSpell provides MSWord/MacOSX-style highlighting of misspelled words in a
GtkTextView widget.  Right-clicking a misspelled word pops up a menu of
suggested replacements.  

GtkSpell is a library, to be used by your software.
GtkSpell depends on GTK+ 2.0 (of course), and also on Enchant
library, which can be found at http://www.abisource.com/projects/enchant/ .

For more information, see http://gtkspell.sf.net .


Use
---
The easiest way to learn is to look at the provided example programs.
It's pretty simple.

Use gtkspell_new_attach() to attach a new GtkSpell to a GtkTextView.
Be sure to read the glib documentation on GError if you're unfamiliar
with it-- GtkSpell will return NULL on error.

Memory management is handled by GtkSpell so you don't need to keep a
pointer to the GtkSpell object around.  If you need to modify settings
or detach a GtkSpell, you can retrieve it from a GtkTextView with
gtkspell_get_from_text_view().

Once you have a pointer to a GtkSpell, you can change the language it
uses with gtkspell_set_language().  Use gtkspell_detach() to remove the
GtkSpell from its attached buffer.  (This will also free the GtkSpell
object.)  Finally, gtkspell_recheck_all() is provided to re-spellcheck
the entire buffer, but it shouldn't be necessary.

Finally, gtkspell.h serves as an API reference.


Original Author
---------------
Evan Martin <martine@danga.com> - http://neugierig.org/

Previous Maintainer
-------------------
Nathan Fredrickson <nathan@silverorange.com>


Current Developer and Maintainer
--------------------------------
Eduardo Pérez Ureta <eperez@users.sourceforge.net> - http://edpeur.blogspot.com/


Thanks
------
Ari Pollak <ari@debian.org> - Debian packages.
Alex <hansolo@rochester.rr.com> - Redhat packages.


vim: tw=72