#include <kspell.h>
Public Types | |
| enum | spellStatus |
Signals | |
| void | misspelling (const QString &originalword, const QStringList &suggestions, unsigned int pos) |
| void | corrected (const QString &originalword, const QString &newword, unsigned int pos) |
| void | ignoreall (const QString &originalword) |
| void | ignoreword (const QString &originalword) |
| void | addword (const QString &originalword) |
| void | replaceall (const QString &origword, const QString &replacement) |
| void | ready (KSpell *) |
| void | progress (unsigned int i) |
| void | done (const QString &buffer) |
| void | done (bool) |
| void | death () |
Public Methods | |
| KSpell (QWidget *parent, const QString &caption, QObject *receiver, const char *slot, KSpellConfig *kcs=0, bool progressbar=TRUE, bool modal=FALSE) | |
| spellStatus | status () const |
| virtual void | cleanUp () |
| void | setAutoDelete (bool _autoDelete) |
| virtual bool | check (const QString &_buffer, bool usedialog=TRUE) |
| int | lastPosition () const |
| virtual bool | checkList (QStringList *_wordlist, bool usedialog=TRUE) |
| virtual bool | checkWord (const QString &_buffer, bool usedialog=FALSE) |
| void | hide () |
| QStringList | suggestions () const |
| int | dlgResult () const |
| void | moveDlg (int x, int y) |
| int | heightDlg () const |
| int | widthDlg () const |
| QString | intermediateBuffer () const |
| virtual bool | ignore (const QString &word) |
| virtual bool | addPersonal (const QString &word) |
| KSpellConfig | ksConfig () const |
| void | setProgressResolution (unsigned res) |
| virtual | ~KSpell () |
| void | setIgnoreUpperWords (bool b) |
| void | setIgnoreTitleCase (bool b) |
Static Public Methods | |
| int | modalCheck (QString &text) |
| int | modalCheck (QString &text, KSpellConfig *kcs) |
Protected Attributes | |
| bool | modaldlg |
A KDE programmer's interface to International ISpell 3.1. (GPL 1997) A static method, modalCheck() is provided for convenient access to the spellchecker.
Definition at line 44 of file kspell.h.
|
|
Possible states of the spell checker.
Definition at line 63 of file kspell.h. Referenced by status(). |
|
||||||||||||||||||||||||||||||||
|
Starts the spellchecker. KSpell emits ready() when it has verified that ISpell/ASpell is working properly. Pass the name of a slot -- do not pass zero! Be sure to call cleanUp() when you are done with KSpell. If KSpell could not be started correctly, death() is emitted.
|
|
|
The destructor instructs ISpell/ASpell to write out the personal dictionary and then terminates ISpell/ASpell. |
|
|
Adds a word to the user's personal dictionary.
|
|
|
Emitted when the user pressed "Add" in the dialog. This could be used to make an external user dictionary independent of the ISpell personal dictionary. |
|
||||||||||||
|
Spellchecks a buffer of many words in plain text format.
The
The spell check may be stopped by the user before the entire buffer has been checked. You can check lastPosition() to see how far in |
|
||||||||||||
|
Spellchecks a list of words. checkList() is more flexible than check(). You could parse any type of document (HTML, TeX, etc.) into a list of spell-checkable words and send the list to checkList(). Sending a marked-up document to check() would result in the mark-up tags being spell checked. |
|
||||||||||||
|
Spellchecks a single word. checkWord() is the most flexible function. Some applications might need this flexibility but will sacrifice speed when checking large numbers of words. Consider checkList() for checking many words. Use this method for implementing "online" spellchecking (i.e., spellcheck as-you-type).
checkWord() returns
If The signal corrected() is emitted when the check is complete. You can look at suggestions() to see what the suggested replacements were. |
|
|
Cleans up ISpell. Write out the personal dictionary and close ISpell's stdin. A death() signal will be emitted when the cleanup is complete, but this method will return immediately. |
|
||||||||||||||||
|
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). Results from the dialog may be checked with dlgResult() and replacement().
Note, that when using checkList() this signal can occur more then once with same list position, when checking a word with hyphens. In this case
|
|
|
Emitted on terminal errors and after clean up. You can delete the KSpell object in this signal. You can check status() to see what caused the death:
|
|
|
Gets the result code of the dialog box. After calling checkWord, you can use this to get the dialog box's result code. The possible values are (from kspelldlg.h):
|
|
|
Emitted when checkList() is done.
If the argument is |
|
|
Emitted when check() is done.
Be sure to copy the results of |
|
|
Returns the height of the dialog box. |
|
|
Hides the dialog box. You'll need to do this when you are done with checkWord(); |
|
|
Tells ISpell/ASpell to ignore this word for the life of this KSpell instance.
|
|
|
Emitted when the user pressed "Ignore All" in the dialog. This could be used to make an application or file specific user dictionary. |
|
|
Emitted when the user pressed "Ignore" in the dialog. Don't know if this could be useful. |
|
|
Returns the partially spellchecked buffer. You might want the full buffer in its partially-checked state. |
|
|
|
|
|
Returns the position (when using check()) or word number (when using checkList()) of the last word checked. |
|
||||||||||||||||
|
Emitted whenever a misspelled word is found by check() or by checkWord(). If it is emitted by checkWord(), 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). |
|
||||||||||||
|
Performs a synchronous spellcheck. This method does not return until spellchecking is done or canceled. Your application's GUI will still be updated, however. This overloaded method uses the spell-check configuration passed as parameter. |
|
|
Performs a synchronous spellcheck. This method does not return until spellchecking is done or canceled. Your application's GUI will still be updated, however. |
|
||||||||||||
|
Moves the dialog. If the dialog is not currently visible, it will be placed at this position when it becomes visible. Use this to get the dialog out of the way of a highlighted misspelled word in a document. |
|
|
Emitted during a check(). |
|
|
Emitted after KSpell has verified that ISpell/ASpell is running and working properly. |
|
||||||||||||
|
Emitted when the user pressed "ReplaceAll" in the dialog. |
|
|
Sets the auto-delete flag. If this is set, the KSpell object is automatically deleted after emitting death(). |
|
|
Call setIgnoreTitleCase(true) to tell the spell-checker to ignore words with a 'title' case, i.e. starting with an uppercase letter. They are spell-checked by default. |
|
|
Call setIgnoreUpperWords(true) to tell the spell-checker to ignore words that are completely uppercase. They are spell-checked by default. |
|
|
Sets the resolution (in percent) of the progress() signals. E.g. setProgressResolution (10) instructs KSpell to send progress signals (at most) every 10% (10%, 20%, 30%...). The default is 10%. |
|
|
Returns the status of KSpell.
Definition at line 91 of file kspell.h. References spellStatus. |
|
|
Returns list of suggested word replacements. After calling checkWord() (an in response to a misspelled() signal you can use this to get the list of suggestions (if any were available). |
|
|
Returns the width of the dialog box. |
|
|
Used for modalCheck. |
1.2.18