* src/Spell.py: Interface to gtkspell

* src/AttrEdit.py: add spell checker to notes
* src/EditPerson.py: add spell checker to notes
* src/EditPlace.py: add spell checker to notes
* src/EditSource.py: add spell checker to notes
* src/EventEdit.py: add spell checker to notes
* src/ImageSelect.py: add spell checker to notes
* src/Marriage.py: add spell checker to notes
* src/NameEdit.py: add spell checker to notes
* src/NoteEdit.py: add spell checker to notes
* src/Sources.py: add spell checker to notes


svn: r5021
This commit is contained in:
Don Allingham
2005-08-05 03:41:23 +00:00
parent ef444d3843
commit 55447ac858
13 changed files with 106 additions and 19 deletions

View File

@@ -47,6 +47,7 @@ import ImageSelect
import ListModel
import RelLib
import NameDisplay
import Spell
#-------------------------------------------------------------------------
#
@@ -97,6 +98,7 @@ class EditSource:
self.abbrev = self.top_window.get_widget("abbrev")
self.note = self.top_window.get_widget("source_note")
self.note.set_editable(mode)
self.spell = Spell.Spell(self.note)
self.notes_buffer = self.note.get_buffer()
self.gallery_label = self.top_window.get_widget("gallerySourceEditor")
self.refs_label = self.top_window.get_widget("refsSourceEditor")