QCompleter multiple completion modes
I have a QLineEdit for the user to enter a path and I have a QCompleter with a QDirModel which works great for auto-completion. Here's how thats done...
Code:
file_lineedit->setCompleter(file_completer);
The default completion mode is QCompleter::PopupCompletion. But I would very much like it to have PopupCompletion and InlineCompletion. That way you get a drop down of the completion possibilities but it auto selects the closest completion. Any ideas?
As far as I can tell doesnt work