Spell checking for QML TextEdit. How?
Solved
General and Desktop
-
-
@bogong The Spellchecker you must implement using QSyntaxHighlighter, you can take the following examples as base:
- https://stackoverflow.com/a/53837628/6622587, where a QSyntaxHighlighter is placed to a TextEdit (TextArea inherits TextEdit)
- https://stackoverflow.com/a/67865082/6622587, where I implement spellchecked using QSyntaxHighlighter but in python that can be translated into C ++ using hunspell and QRegularExpression.