Tagged Questions
The qcombobox tag has no wiki summary.
4
votes
3answers
455 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 ...
4
votes
1answer
471 views
Qt - How to use rich text in a QComboBox?
I am trying to use rich text in a QComboBox but it does not support it. Perhaps I should write a subclass? But I am unsure on what I would need to override as I have never done anything like this ...
4
votes
4answers
6k views
How can I get the selected VALUE out of a QCombobox?
In Qt, I can get the selected text of a QComboBox by using the
combobox->currentText() method.
How can I get the selected value?
I checked over http://qt.nokia.com/doc/4.6/qcombobox.html for help ...
2
votes
1answer
77 views
PyQt4 QComboBox Signals and Slots
is there a way to create a signal that asserts when a combo box is opened and user uses the up - down arrows on the keyboard to select an item. So far the Qt4 reference lists signals that activate ...
2
votes
1answer
106 views
How to set non-selectable default text on QComboBox?
Using a regular QComboBox populated with items, if currentIndex is set to -1, the widget is empty. It would be very useful to instead have an initial descriptive text visible in the combo box(e.g. ...
2
votes
1answer
209 views
Setting QStyleOptionComboBox.currentText does not have any effect on the drawn widget
I want to draw a QComboBox inside a delegate, which works fine except that I can't figure out how to draw the inital text that's visible inside the combo box.
The documentation says that ...
2
votes
0answers
200 views
QComboBox with only a icon on the Toolbar! how?
i would like to make a combobox with QT and want to set it on the toolbar.
User should see on the Toolbar only icons, so this comboBox should show only the icon of an item on the toolbar.
But after ...
2
votes
1answer
214 views
QComboBox : select on Key_space
I work on a Qt application in an embedded system and I only have a remote on which the main key is Key_space.
So, I would like to have a QComboBox on which you can select an item when pushing the ...
2
votes
2answers
913 views
Qt: How do I set the QComboBox width to fit the largest item?
I have a QComboBox that I fill with QStrings using:
comboBox->addItem(someString);
When I start my GUI application the width of the comboBox is always 70, even if the smallest item is much larger. ...
2
votes
1answer
717 views
QStandardItem + QComboBox
I am trying to put a QComboBox into a QStandardItem to be used in a QStandardItemModel. I have been looking around and I cannot find an answer, any ideas?
2
votes
2answers
770 views
Qt, How do I change the text color of one item of a QComboBox? (C++)
I cannot figure out how to change the text color of one particular item of a QComboBox. I was able to change the Background color of an item:
comboBox->setItemData(i, Qt::green, Qt::BackgroundRole);
...
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 ...
2
votes
1answer
485 views
Autocompletion with qcompleter for fragments in the middle of a word
Is there an example available of a QCompleter subclass that will provide autocompletions for fragments that appear in the middle of words?
eg:
Suppose you have the wordlist { "apple", "pear", ...
2
votes
1answer
1k views
PyQT combobox only react on user interaction
I have a listbox that you can select users in. To the left of that is a combobox listing the available groups the user can be put it. If the user is in a group, the combobox will automatically be set ...
1
vote
1answer
42 views
QComboBox with NULL support
I'm using QComboBox to select unit (an arbitrary property of the object) from Units table. The problem is that object in my data model can have no unit (NULL in the table), in which case QComboBox ...
1
vote
2answers
49 views
QCombobox overlaps other widgets when added a new item
I see this wierd behavoir happening with QComboBox, it doesn't update as soon as its contents change. To demonstrate the issue here is a sample code and some screen shots.
Initial widget
Add Item ...
1
vote
3answers
82 views
Is it possible to copy QCombobox to another QCombobox
I use Qt Designer to build my UI layout. On the layout, I have a combobox named cb_fac_cd. In my code I have a function that will automatically build a combobox based on the list I'm attempting to ...
1
vote
1answer
95 views
QComboboxes in a QTableWidget
I would like one of the cells in a table to be a QComboBox. However, I don't want them displayed as such all the time, only when a user selects that cells. Are there any more convenient ways of ...
1
vote
2answers
799 views
Checkboxes in a Combobox using PyQt
I need to implement a drop down list that contains CheckBoxes, much like having the entries in a ComboBox being CheckBoxes. But QComboBox doesn't accept QCheckBox as its member and I couldn't find any ...
1
vote
3answers
569 views
How do I Filter the PyQt QCombobox Items based on the text input?
I need a QCombox which Items are filtered based on the text input. If I set the QCombobox editable, the user can insert text and the QCompleter is automatically created. But the items are not filtered ...
1
vote
1answer
1k views
PyQt (or just QT). How to get QComboBox to fire a signal whenever it is set to a value (even if unchanged)
I am using PyQt4, but this is general enough that it could just apply to QT.
I have a series of QComboBoxes that I fill from left to right (i.e. selecting an item in the leftmost will populate the ...
1
vote
1answer
214 views
How-to override KeyPressEvent for an editable QComboBox?
I have a class named ValidableComboBox that derives directly from QComboBox.
Every instance of ValidableComboBox has setEditable() set to true. My goal is to add some signal that will be emitted ...
1
vote
1answer
560 views
Qt How to disable mouse scrolling of QComboBox?
I have some embedded QComboBox in a QTableView. To make them show by default I made those indexes "persistent editor". But now every time I do a mouse scroll on top them they break my current table ...
1
vote
1answer
688 views
Qt QComboBox popup position
I'm working on an application which contains an editable QComboBox. I observe the following behavior when I enter some text in the edit field and press the dropdown arrow in the combobox:
My edit ...
1
vote
1answer
215 views
'C++ object destroyed' in QComboBox descendant editor in delegate
all!
I have modified combobox to hold colors, using QtColorCombo (http://qt.nokia.com/products/appdev/add-on-products/catalog/4/Widgets/qtcolorcombobox) as howto for the 'more...' button ...
1
vote
2answers
410 views
QIcon inside combobox
I want to include a "remove" icon on entries in my QComboBox, but I am having trouble catching the mouse press event. I've tried to catch it on the combobox, and I've tried reimplemting the QIcon ...
1
vote
2answers
348 views
Set a QComboBox or QSpinBox to a value not allowed
I am maintaining an application which tries to help the user get his parameters to work together, as there are many interdependencies.
Now there is a default value of x for a variable Y. When the ...
1
vote
2answers
1k views
Using PyQT, how do you filter mousePressEvent for a QComboBox with custom list
I've got a QComboBox with a custom list object.
The custom list object has a custom mousePressEvent so that when the user click on one of the circles with a +/- (a twisty), the list is ...
1
vote
4answers
3k views
How to make QCombobox painting item delegate for it's current Item? (Qt 4)
QCombobox set Item delegate not painting for current Item..
I am trying to create a combo box showing different line types (Solid, Dotted, Dash etc). Currently i am setting item delegate for its ...
0
votes
1answer
19 views
Style QComboBox popup menu margin Qt 4
After countless hours trying to style a QComboBox, I'm stuck with the top and bottom margin where the items are inserted.
I would like to either remove or apply a background-color to the popup menu ...
0
votes
1answer
42 views
PyQt4 : Can I intercept the currentIndexChanged signal of QComboBox?
I build up a UI consisted of QComboBox and QGraphicsScene and it's QGraphicsItems.
When I change the index of QComboBox, refresh QGraphicsScene so it set to default. To solve it, I store a geometry ...
0
votes
1answer
37 views
Deactivate QSpinBox if a certain value from QComboBox is selected
Is it possible to deactivate a QSpinBox if a certain value is chosen in a QComboBox. I've tried several things, but either the QSpinbox is deactived all the time or it wont deactivate at all.
0
votes
0answers
18 views
QComboBox - only text selection
I Have a QCombobox with text + icon. I would like to have the selection box only around the text and not the icon. I've tried to do the following:
QAbstractItemView* view = ui.comboBox->view();
...
0
votes
2answers
211 views
QComboBox drop-down list - set selected item style
Is it possible to set selected item style (Qt style sheet) of the QComboBox drop-down list?
0
votes
1answer
126 views
How to refresh contents of QCombobox in QTableView
I have QTableView which has QComboBox in one of the columns. The combobox is displaying data from a vector which get updates when I click a button.
When I start the application the combobox displays ...
0
votes
0answers
51 views
using a combobox inside a tableWidget help in python
I am trying to add a combobox inside a tableWidget in python. I can get the combobox to work inside the tablewidget. The only problem is that I am wanting to grab the currentIndex data when the ...
0
votes
1answer
57 views
How can I add a QComboBox to the Main Toolbar in Qt Creator
I am writing a Text Editor on Qt Creator. I have a QPlainTextEdit as the central widget, and I want all the font-controlling tools in the main toolbar automatically added to all QMainWindow projects. ...
0
votes
1answer
84 views
PYQT : qCombobox displaying Column “Name” but passing Column “ID”
I've been trying very hard to get this working but so far haven't found the correct route.
I am using pyqt, and I am querying a MySql DataBase, collecting from it a model with all the columns. Until ...
0
votes
1answer
140 views
Getting all items of QComboBox - PyQt4 (Python)
I have A LOT of QComboBoxes, and at a certain point, I need to fetch every item of a particular QComboBox to iterate through.
Although I could just have a list of items that correspond to the items in ...
0
votes
2answers
160 views
QComboBox can't change border color
I have a class which inherits QComboBox. I need to set red border for this widget.
I can't use QPalette, I am trying to use setStyleSheet:
pComboBox->setStyleSheet("QFrame { border: 2px solid red; ...
0
votes
0answers
119 views
Qt:: Qcombobox:current indexchanged problem
I have a currentindexchanged signal for my combobox. It should be emitted whenever my currentindex is changed. Thats working fine when i have change the current index of my combobox. But in aditional ...
0
votes
1answer
293 views
QComBox - How to set hint text on combo box
The application GUI I working requires a combo box for user to select item. When the application starts, the combo box will show a hint text something like "Please select" instead of showing the first ...
0
votes
1answer
195 views
Populating a QComboBox and a QTable[View|Widget] from javascript
I'm trying to write a script for an application developed with Qt, using javascript for the business logic and a .ui file for the GUI, but I'm facing two problems.
In the ui I declared a QComboBox, ...
0
votes
2answers
278 views
How do you get the current text contents of a QComboBox?
using pyqt4 and python 2.6, i am using a qcombobox to provide a list of options. i am having problems with using the selected option. i have been able to use a signal to trigger a method when the ...
0
votes
1answer
185 views
How to set font style on the first item of a QComboBox?
I would to set the font style of first item on a QComboBox.
I'm using the Qt framework.
How can I do that?
0
votes
1answer
47 views
How do I change the title of the tree view that is created
I have created a basic treeview with checkboxes and below is the code:
class StdItemModel(QStandardItemModel):
def __init__(self, parent = None):
super(StdItemModel, self).__init__(parent)
class ...
0
votes
1answer
890 views
Vb.net / DataGridView / ComboBox Column
I am using vb.net and winforms.
I have a Form with a Bound DataGridView. On the DGV I have 5 columns with ComboBox. I am using the EditingControlShowing Even to catch the ComboBox Selection. (see ...
0
votes
1answer
435 views
QComboBox returns None Type . How to get Current Data?
I've implemented 2 QComboBoxes with one having items manually inserted every time and another one having items inserted with a list (I'm using Python )
But when i attempt to get the current value of ...
0
votes
1answer
312 views
Italic QComboBox button text
I have a read-only QComboBox where I want the text in the "button" part (i.e. not the drop down list that can appear) to be italic. I tried using
combo.setStylesheet('font-style: italic')
but this ...
0
votes
1answer
385 views
QComboBox replacing edit text if case differs from existing item
I'm having a problem with QComboBox not allowing me to change the edit
text to anything existing item of differing case.
Example code is below. What I'd like to do is enter 'one' into a combo
box ...