Tagged Questions
The qcompleter tag has no wiki summary.
4
votes
3answers
452 views
QCompleter Custom Completion Rules
I'm using Qt4.6 and I have a QComboBox with a QCompleter in it.
The usual functionality is to provide completion hints (these can be in a dropdown rather than inline - which is my usage) based on a ...
2
votes
1answer
324 views
QCompleter forces double enter
I have a QCompleter that is forcing my users to hit enter twice when the popup is visible but is not used to select an item. The model for the QComboBox associated to the completed is used as the ...
1
vote
1answer
485 views
How to update QCompeter's model dynamically
I use QCompleter with QLineEdit, and I want to update QCompleter's model dynamically. i.e. the model's contents are updated according to QLineEdit's text.
1) mdict.h
#include <QtGui/QWidget>
...
0
votes
2answers
145 views
How can I customize the QCompleter popup window in PyQt?
I have a few things for a QLineEdit's QCompleter I'm interested in customizing. I want to make it behave similar to the address / search bar in Chrome.
How can I limit the number of rows that are ...
0
votes
2answers
467 views
model/view QCompleter in a QLineEdit
ubuntu 10.04, KDE 4.4.5
python 2.6.4
qt 4.6.2
pyqt 4.6.2
I'm trying to create a QCompleter, which works fine if I just build the QLineEdit.
However if I drop the QLineEdit into a QMainWindow, the ...
0
votes
2answers
385 views
Qt QCompleter multiple matches
I am trying to make QCompleter match several equivalent options which are separated with commas. There seemingly is no easy way to do that, but one line of QCompleter reference caught my attention, ...
0
votes
1answer
887 views
Can I make QCompleter complete inline and show a popup
Qt 4.5 (PyQt 4.6.1)
I'm looking for a widget similar to a QComboBox that automatically filters its entries to the ones starting with the input in the text field. There are around 300 items in the ...