Re: [Interest] Spell checking.

2012-11-06 Thread Bill Crocker
On 11/06/2012 04:55 AM, Diego Iastrubni wrote: > On Wed, Oct 31, 2012 at 7:07 PM, Bill Crocker > wrote: > > I am adding spell checking to my application. > > I have the spell checking engine. > > I can see how to use the QSyntaxHighlighter to > to

Re: [Interest] Spell checking.

2012-11-06 Thread Diego Iastrubni
On Wed, Oct 31, 2012 at 7:07 PM, Bill Crocker wrote: > I am adding spell checking to my application. > > I have the spell checking engine. > > I can see how to use the QSyntaxHighlighter to > to underline words that are spelled incorrectly > in a QTextEdit. > > http://lists.qt-project.org/mailman/

Re: [Interest] Spell checking.

2012-10-31 Thread Bill Crocker
On 10/31/2012 06:54 PM, Alex Malyushytskyy wrote: > Since combobox is using QLineEdit for editing, > it provides a pointer to it with: > QLineEdit * QComboBox::lineEdit () const > > Also you force it to use QLineEdit subclass with setLineEdit() > But, I don't know how to add spell checking to a QL

Re: [Interest] Spell checking.

2012-10-31 Thread Alex Malyushytskyy
Since combobox is using QLineEdit for editing, it provides a pointer to it with: QLineEdit * QComboBox::lineEdit () const Also you force it to use QLineEdit subclass with setLineEdit() Alex On Wed, Oct 31, 2012 at 10:07 AM, Bill Crocker wrote: > Hello: > > I am adding spell checking to my app

[Interest] Spell checking.

2012-10-31 Thread Bill Crocker
Hello: I am adding spell checking to my application. I have the spell checking engine. I can see how to use the QSyntaxHighlighter to to underline words that are spelled incorrectly in a QTextEdit. I understand that I can configure a QTextEdit to behave as a single line widget for use in place