[Webkit-unassigned] [Bug 15616] [GTK] Add spell checking (and grammar?)
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Mon Jun 9 20:38:59 PDT 2008
http://bugs.webkit.org/show_bug.cgi?id=15616
alp at nuanti.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |marco.barisione at collabora.co
| |.uk
------- Comment #1 from alp at nuanti.com 2008-06-09 20:38 PDT -------
We could use Enchant. Or we could use GSpell:
http://techn.ocracy.org/gspell
EditorClientGtk.cpp stubs:
void EditorClient::ignoreWordInSpellDocument(const String&)
{
notImplemented();
}
void EditorClient::learnWord(const String&)
{
notImplemented();
}
void EditorClient::checkSpellingOfString(const UChar*, int, int*, int*)
{
notImplemented();
}
void EditorClient::checkGrammarOfString(const UChar*, int,
Vector<GrammarDetail>&, int*, int*)
{
notImplemented();
}
void EditorClient::updateSpellingUIWithGrammarString(const String&, const
GrammarDetail&)
{
notImplemented();
}
void EditorClient::updateSpellingUIWithMisspelledWord(const String&)
{
notImplemented();
}
void EditorClient::showSpellingUI(bool)
{
notImplemented();
}
bool EditorClient::spellingUIIsShowing()
{
notImplemented();
return false;
}
void EditorClient::getGuessesForWord(const String&, Vector<String>&)
{
notImplemented();
}
--
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
More information about the webkit-unassigned
mailing list