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

learn more… | top users | synonyms

0
votes
0answers
42 views

A scrolling list of widgets without QListWidget

I need to list a bunch of custom widgets in a scrolling area. I would normally just use QListWidget, but that does not do smooth scrolling, which for me is a necessity. I found this question about ...
0
votes
0answers
43 views

Query regarding QListWidget

I have a requirement similar to the image below. I have to display a sectionized view for displaying icons. Under each section/header there will be some 10-50 icons displayed. For displaying icons I'm ...
0
votes
1answer
41 views

PyQt: Activate QListWidget Item

I want to activate an item from listWidget, that is part of ChildWidget, using event filter in parentWidget. Here is part of the relevant parentWidget code: self.w = ChildWidget() def ...
1
vote
1answer
56 views

pyqt progressbar in QListWidget

I am new to pyqt, I am learning pyqt to write some GUI. I need to add uploading progress bar of each images listed in QListWidget, could anybody please give one demo? thanks very much
0
votes
1answer
65 views

PyQT: QListWidget with infinite scrolling

I have a QListWidget with few elements. Moving through the list is done with the arrow keys. How to make the "infinite loop", meaning that whan the last item is reached and you go down, the selection ...
0
votes
1answer
41 views

how to sort the items in QListWidget by drop and drag

I am newer to pyqt, I am using it to write some GUI, could anybody please tell me how to sort the items in QListWidget by drop and drag? thanks in advance
0
votes
0answers
21 views

how to auto sort in QListWidget

I add pic to QListWidget, could you please tell me: 1. how to drop pic into QListWidget, and sort after that 2. how to make QListWidget auto sort after the size of MainFrame is changed. ...
0
votes
1answer
22 views

itemDoubleClicked signal for subclass of QListWidgetItem

I have tried everything I know of (which admittedly isn't very much) and searched google for about an hour but I just can't figure this out. I have a class called PlaceHolder, which inherits from ...
0
votes
1answer
57 views

deactivated QListWidgetItem :hover

I implemented a QListWidget and added this to prevent a highlight effect when I'm with the mouse over an item: QListWidget::item:hover { background: transparent; } But then I disabled some items ...
0
votes
0answers
32 views

blinking issue with QListWidget

I am using Qt 4.8.4. I noticed that while using QLisWidget when data is being updated (120) items the ListWidget control blinks. Any suggestion on how to resolve it. The layout mode I am using is ...
0
votes
1answer
72 views

PyQt4: Using a QPushButton widget to delete an item from QList widget

I am learning PyQt4 (I am using version 4.4.4) and I'm pretty new to Python (Python 2.5). I have a GUI with a QListWidget and a QPushButton. I want a user to be able to click to select an entry in the ...
0
votes
1answer
53 views

Writing to a QListWidget from OpenCV window

I am writing an application for manually selecting regions of interest from an image. Two windows will appear: An OpenCV window, where the user should select a ROI with the mouse. A QT window, where ...
1
vote
2answers
59 views

Stretchy QListBoxWidget

Question How can I create a QListWidget that has a minimum height but stretches to fill all available space even if the layout already has a stretch component? Background I'm using PySide to create ...
0
votes
0answers
30 views

How to change the start row of shif selection in the QListWidget

When I use QListWidgets, I have a lot of items in it, and I set up two buttons, one is to move the selected item up, another is to move it down, after the moving, I kept the selection of moved item. ...
0
votes
0answers
29 views

Icon of items is not visible in Qlistwidget

I am trying to fill the Qlistwidget in IconMode. I am calling a function for filling Qlistwidget from a thread class. In result, i am able to fill the items in widget but all the items are without ...
0
votes
1answer
147 views

QListWidget with custom widget does not scroll properly in Mac OS

In my application I'm having a QListWidget with custom widget items, containing among others a progress bar, set by QListWidget::setWidget(). I have been forced using a QListWidget instead of a ...
1
vote
1answer
52 views

disable user selection in qlistwidget

I have an ordinary qlistwidget in pyqt4. I sometimes want to prevent the user from making a selection, but still want to set the selection programmatically. So setting the selection mode to ...
0
votes
1answer
113 views

QListWidget deselection and multiple selection

i'm just searching in the docu and can not find the solution for the following two problems with QListWidget: a) i would like to deselect (deactivate) items in the QListWidget from the software (i ...
1
vote
1answer
69 views

Clearing selection in QListWidget

I'm using PyQt4 and I have a QListWidget in a window where I added items to it at run-time. I want to use a button in the window to clear the selection of the QListWidget. I want to know if there is ...
0
votes
1answer
30 views

Problems with all the windows opening separately in QT4

I am new to QT, right now am trying to place a Table below a QList, but the Qlist and the table are showing as two separate window. I need the output more or less like itunes with the Qlist on top and ...
0
votes
0answers
110 views

PYQT4: QListWidget - make changes permanent

I made a QListWidget, added few items in code and made a QButton that calls this function on click: def add_new(self): self.listWidget.addItem item = QtGui.QListWidgetItem() ...
0
votes
0answers
88 views

Insert QlistWidget into a QtableWidget using pyside

I am just learning pyside and would like some help. I have a spreadsheet like application that I am developing using the QtableWiget. I would like to insert a QlistWidget (with default values) in a ...
4
votes
3answers
171 views

What happened to QListViewItem in qt4?

I don't do a lot of Qt programming so this may sound like a silly question, but what happened to QListViewItem in qt4? I have this application I wrote some time ago in qt3. I changed that to qt4 ...
1
vote
1answer
72 views

Qt, mixing items with and without checkboxes in QListWidget

Good day everyone. I'm trying to create a filemanager based on QListWidget. However, I ran into a problem. In my manager I need to have some items be with checkboxes and the other items to be without ...
1
vote
2answers
88 views

Need to display the widgets inside my QListWidget with an offset, basically shifted a bit to the right

I have a panel.ui file done using QTDesigner. It's a QFrame class, rectangular shape with few labels on it. And I have a QListWidget class where I insert 3 instances of the panel.ui. I create a ...
0
votes
1answer
79 views

Select multiple items in QListWidget programmatically

It's possible to select a single item/row, but I want to set multiple items selected (the widget is configured to allow that). Is it possible?
0
votes
0answers
50 views

SIGSEGV while adding to QListWidget

I have a problem with adding an element to a QListWidget. I have build some frame with QtDesigner and then, I want to add some elements to a list in code. Even when I write: QListWidgetItem* i = new ...
0
votes
1answer
122 views

Creating multithread GUI application using Qt on Windows. How to use QListWidget?

I want to make a find utility for Windows using Qt. I have created the same application in C# and .NET and I want to make a comparison. My application will have to use QDir::entryList recursively to ...
-1
votes
2answers
93 views

c++ - QListWidget

I created a working QListWidget with multiple items, but I can't figure out how to make it user-friendly. It looks like this: 1000 1001 1002 ... But I want it to look like this, where firt 4 ...
0
votes
1answer
48 views

why QListWidget content are not showing up

I am trying to populate a window QListWidget but when I run the code the empty QDialog Window shows up . app = QtGui.QApplication(sys.argv) app.setStyle("cleanlooks") ...
2
votes
1answer
209 views

QListWidget::setEditTriggers(QAbstractItemView::AnyKeyPressed) not working

From the book I'm reading: By default, QListWidget is read-only. If we wanted the user to edit the items, we could set the view's edit triggers using QAbstractItemView::setEditTriggers(); for ...
1
vote
1answer
164 views

How do I improve the efficiency of the PyQt4 QListWidget

I have the following code and am wondering if there is a way to make this more efficient. The setCurrentItem() and scrollToItem() functions seem to slow the process down considerable. Also, I would ...
0
votes
1answer
358 views

QMl ListView elements to C++

How can I select a few elements in the QML ListView and send the list of selected ListItemText to QListWidget in C++? I'm using 'contact model' as the model for ListView. The component has a ...
0
votes
1answer
115 views

Strange error with QListWidgetItem that uses QIcon

I am building up a QListWidget, browsing through a directory so that every ".png" gets listed with a preview icon. The core of my populating loop looks like this: new QListWidgetItem( ...
2
votes
2answers
85 views

How to simulate double clicking item in qlistWidget

How can I simulate double clicking an item in a QListWidget without sub-classing? I would like the item to immediately go into edit mode when I add a new item to the list.
5
votes
2answers
202 views

QListWidget Drag after scrolling down the list

I am creating A Sortable List in Qt. The Code works perfectly well for Downward Scroll but when i having some issues getting the draggable item after i scroll the list down. I have added some test ...
0
votes
1answer
100 views

Qt - How to Draw an Icon Image to a QListWidgetItem

I have QListWidget, in that I had added the items. i had made the QListWidgetItems to scroll from right to left in a QWidget. Now i want to add a Icon image before every item that is Scrolling in the ...
0
votes
1answer
109 views

Qt- How to Draw Text from a QListWidget

Am Learning to do something with QListWidget. I have a QListWidget, QTextEdit , 2 QPushButtons (Add & Remove Buttons) and a QWidget for drawing the Text in it. When i enter a text in the QTextEdit ...
1
vote
2answers
410 views

How to set custom data in an event as for Drag and Drop?

I have a listwidget and a treewidget. I want the listwidgetitems to be able to move inside the listwidget via drag and drop, and I also want the listwidget to accept drops from dragged items from the ...
0
votes
2answers
206 views

I want to extend dropEvent() (QListWidget), should I completely reimplement it?

I have a QListWidget and I have set it to accept drops, the mode to be DragDrop etc and I can move QListWidgetItems all around the place (inside the QListWidget of course). I like this behavior and I ...
0
votes
0answers
49 views

Switching Selection Between Two QListWidget - PyQt4

I have 2 QListWidget in my UI, is it possible to have a switch that when I select one item in one QListWidget the item on other QListWidget will be deselected? Is there a way that when I select an ...
0
votes
2answers
231 views

How can i iterate through QListWidget items and work with each item?

In CSharp its as simple as writting : listBox1.Items.Add("Hello"); listBox1.Items.Add("There"); foreach (string item in listBox1.Items ) { MessageBox.Show(item.ToString()); } and i can easily ...
1
vote
1answer
73 views

Keep strict alignment on the icon-items of the listwidget (qt)?

I have a listwidget where the user can add icon files. I show these files inside my listwidget as icon-items (my listwidget’s viewmode is IconMode). Each of the items has as text its basename (e.g. if ...
0
votes
1answer
303 views

QListWidget get list of viewed items

Let's say I have a listwidget with lots of items. When the user scrolls to see more items, I want to perform an action to the items being viewed. Is it possible to trigger an event ...
0
votes
0answers
96 views

Pointer called from Delegate goes missing when more than one QListItem is using a QAbstractItemDelegate

I'm not sure how this is happening - I've read that using one instance of a delegate for multiple items in a QListWidget is bad, but I can't find that again. I have my QListWidget set to a pointer of ...
0
votes
1answer
216 views

How to access the QListWidget or QListWidgetItem from a QAbstractItemDelegate

Is this even possible in Qt? I have a QListWidget setup with a delegate for specific painting, and I'm attempting to have the delegate paint differently based on variables in my QListWidget's parent. ...
1
vote
1answer
146 views

Indeterminate QProgressBar inside QListWidget

as stand in the OP title, is there any chance to get an indeterminate QProgressBar indide a QListWidget? bar = new QProgressBar(); bar->setMinimum(0); bar->setMaximum(0); ...
0
votes
1answer
177 views

PyQt4 - list widget click event?

im having a problem on my mini project. i have a method here def PrintClick(self,name = ""): print name then i have a list widget named lstStudents how do i call the method PrintClick when i ...
1
vote
0answers
227 views

Python Pyqt4 QListWidget

I am working on python plugins.I designed my forms using PYQT4 designer. 1)I used QListWidgets,wherein m listing some values into the same as shown below: The name of my QListWidget is ...
0
votes
1answer
159 views

Get mouse position of the QDragEnterEvent

As the photo below shows, I want to get the mouse position on the canvas while dropping a QListWidgetItem to the canvas, this mouse position will facilitate to me getting the object I dropped the item ...

1 2 3