QComboBox autocomplete automatically changes edittext.
Hi guys I’m having a problem with QComboBox’s autocompletion.
Create a QComboBox. Fill it with a couple of strings, say ‘One’, ‘Two’, ‘Three’.
When the program is running enter one of those strings, but differ the case, into the combo. Change the focus to anything else, by clicking on another window or something.
THE TEXT WILL BE AUTOMATICALLY CHANGED TO THE FIRST MATCHING ITEM IN THE COMBO BOX!
For instance, if ‘ONE’ was entered it’ll be changed to ‘One’.
Is it possible to do Case-Insensitive autocompletion without the above happening?
I’ve tried changing the Completer. I’ve tried reimplementing focusOutEvent by adding the desired text to the combo box nor does restoring the desired text after focus is lost work (well). Even replacing the lineEdit (with it’s own completer since QLineEdit’s don’t suffer from this problem) doesn’t help.
Although I’m using PyQt4 (4.7.4 on Ubuntu) (I can post the code if anyone likes) create this I’m sure the problem lies with Qt (4.6.3)
Errata: This behaviour doesn’t exist for Qt < 4.5 and I’ve posted this on both the PyQt mailing list and stackoverflow. Case-Sensitive completion works as expected, but is very close to useless.
10 replies
Let me be sure I understand, then… what you want is that the user starts typing, and items are suggested in a case-insensitive manner – but the completion does not happen unless the user explicitly selects it?
(For what it’s worth, I don’t think that this has anything to do with case-sensitivity – if you do as we discussed above and you do type in the “right” case, does it still auto-select it?)
…yes. Say there’re the following items in the Combo Box. ‘first item’, ‘second item’ and ‘third item’
Assume to completer is set to case-insensitive.
1. Now if the user started typing ‘first’, ‘first item’ will be the suggested completion and ‘ item’ will then be highlighted. I can press Enter to accept the completion and the combo box’s text will become ‘first item’.
2. If I’d started typing ‘First’, ‘first item’ would still be the suggested and completion, but the edit text will be ‘First item’ where ‘ item’ will be highlighed. If I press Enter to accept the autocompletion, the text will change to ‘first item’. While I’d like the text to be ‘First item’, I can live with this.
3. If I type in ‘First Item’ then change the focus to anything else (like clicking on another window) the text will become ‘first item’. This is NOT what I want. I’d like the text to stay at ‘First Item’ unless explicitly changed by me.
This is the way things were with Qt < 4.5.
If the completer were set to case-sensitive the combo box doesn’t change the text as in 3, but no completions are suggested either. Completions for 2 are suggested, but this operation is rarely required in my app whereas 3 is done quite a bit.
Okay, I would post a bug report [bugreports.qt.nokia.com] on this one then; I don’t know whether that was an intentional change or not.
You must log in to post a reply. Not a member yet? Register here!


