Say I fill QComboBox with a number on each line. And lines are very cl开发者_JAVA技巧ose vertically. How can I control vertical the distance?If you just want to change the row height (instead of chang
I have some embedded QComboBox in a QTableView. To make them show by default I made those indexes \"persistent editor\". But now every 开发者_JS百科time I do a mouse scroll on top them they break my c
I have a QComboBox that I fill with QString using: comboBox->addItem(someString); When I start my GUI application the width of the QComboBox is always 70, even if the smallest item is much large
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:
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 implementation d
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 anythi
I want to include a \"remove\" icon on entries in my QComboBox, but I am having trouble catching the mous开发者_JAVA百科e press event. I\'ve tried to catch it on the combobox, and I\'ve tried reimplem
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 mode
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 am maintaining an application which tries to help the user get his parameters to work together, as there are many interdependencies.