Top "Qlistwidget" questions

The QListWidget is a Qt class that provides an item-based list widget

How can I get all selected items for a QListWidget when the user interacts with the list?

How can i get all the selected items for a QListWidget inside an event handler ("slot") which is activated when …

python pyqt pyqt5 qlistwidget
Qt drag and drop between two QListWidget

I've two QListWidget (list1 and list2) list1 should be able to receive items from list2 list1 should be able to …

qt drag-and-drop qlistwidget
QListWidget Add Custom Items in Qt?

How to add 2 Images and Text in QListWidget at run time in Qt? I want to place one image at …

qt qt4 qlistwidget
Qt: QListWidget separator line between items?

I can't find any way to put a line between items in my list. Am I missing something?

qt qlistwidget
How to change (remove) selection/active color of QListWidget

In my QListWidget, there are some items that have non-default background color, I set them like so inside the custom …

qt qt5 qlistwidget qpalette
How to Drag and Drop from One QListWidget to Another

There are two QListWIdgets sitting in a same dialog window. The DragDrop functionality has been enabled for both. If I …

python pyqt4 qlistwidget
Python Qt QListWidget Double Clicked

I want to add double clicked attribute for my QListWidget objects. My command line does not work: self.connect(self.…

python pyqt pyqt4 signals-slots qlistwidget
Is there any way to disable QListWidgetItem in my QListWidget?

I am using QListWidgetItem to add Items in my QListWidget. In some situations, I want some rows of my QListWidget …

qt select qlistwidget qlistwidgetitem
Sorting a QListWidget using sortItems()

I have issues while using sortItems() on a QListWidget. Here is what happens: Changes this: A z d C E …

qt sorting qlistwidget
Customize QListWidgetItem with extra data to store in, How?

The QListWidgetItem contains 2 data: icon and text. And I want to store another QString in it. How can I do? …

qt customization qlistwidget