org.kde.koala
public interface KSpellSignals
Method Summary | |
---|---|
void | addword(String originalword)
Emitted when the user pressed "Add" in the dialog.
|
void | corrected(String originalword, String newword, int pos)
Emitted after the "Replace" or "Replace All" buttons of the dialog
was pressed, or if the word was
corrected without calling the dialog (i.e., the user previously chose
"Replace All" for this word).
|
void | death()
Emitted on terminal errors and after clean up.
|
void | dialog3() |
void | done(String buffer)
Emitted when check() is done.
|
void | done(boolean arg1)
Emitted when checkList() is done.
|
void | ignoreall(String originalword)
Emitted when the user pressed "Ignore All" in the dialog.
|
void | ignoreword(String originalword)
Emitted when the user pressed "Ignore" in the dialog.
|
void | misspelling(String originalword, String[] suggestions, int pos)
Emitted whenever a misspelled word is found by check() or
by checkWord().
|
void | progress(int i)
Emitted during a check().
|
void | ready(KSpell arg1)
Emitted after KSpell has verified that ISpell/ASpell is running
and working properly. |
void | replaceall(String origword, String replacement)
Emitted when the user pressed "ReplaceAll" in the dialog. |
UNKNOWN: Emitted when the user pressed "Add" in the dialog.
originalword
is the last replacement.See Also: KSpellSignals
UNKNOWN: Emitted after the "Replace" or "Replace All" buttons of the dialog was pressed, or if the word was corrected without calling the dialog (i.
Error
- KSpell could not start.
Crashed
- KSpell encountered an unexpected error during execution.
Finished
- Clean up finished.
buffer
if you need them.
You can only rely
on the contents of buffer for the life of the slot which was signaled
by done().UNKNOWN: Emitted when check() is done.
true
, then you should update your text from the
wordlist, otherwise not.UNKNOWN: Emitted when checkList() is done.
UNKNOWN: Emitted when the user pressed "Ignore All" in the dialog.
UNKNOWN: Emitted when the user pressed "Ignore" in the dialog.
pos
=0.
If it is emitted by check(), then pos
indicates the position of
the misspelled word in the (original) _buffer.
(The first position is zero.)
If it is emitted by checkList(), pos
is the index to
the misspelled
word in the ArrayList passed to checkList().
Note, that originalword
can be only a word part, if it's
word with hyphens.
These are called _before_ the dialog is opened, so that the
calling program's GUI may be updated. (e.g. the misspelled word may
be highlighted).UNKNOWN: Emitted whenever a misspelled word is found by check() or by checkWord().
i
is between 1 and 100.UNKNOWN: Emitted during a check().
UNKNOWN: Emitted after KSpell has verified that ISpell/ASpell is running and working properly.
UNKNOWN: Emitted when the user pressed "ReplaceAll" in the dialog.