/usr/share/doc/libgtkspell-dev/README is in libgtkspell-dev 2.0.16-1ubuntu7.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /* 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
|