Tagged Questions
The QListWidget is a Qt class that provides an item-based list widget
10
votes
3answers
10k views
QListView/QListWidget with custom items
I'm writing my first Qt application with PyQt and am having some trouble creating a custom list view. I'd like the list to contain arbitrary widgets (one custom widget in particular). How would I go ...
5
votes
3answers
664 views
PyQt4: How do you iterate all items in a QListWidget
Currently, I use the following while loop in a class that inherits QtGui.QListWidget to iterate all items:
i = 0
while i < self.count():
item = self.item(i)
i += 1
I ...
4
votes
3answers
516 views
Can't change state of checkable QListViewItem with custom widget
I have a QListWidget where I want to add a bunch of items with a custom widget:
listWidget = QListWidget()
item = QListWidgetItem()
item.setFlags(item.flags() | ...
2
votes
1answer
119 views
Can I store some user data in every item of a QListWidget?
I want to store some filenames in a QListWidget. I need to have the full file paths, but I only want to show the base filename. I probably could store the full filename in the tooltip for each item, ...
2
votes
1answer
368 views
Multiple Selection QTreeWidget
Does anyone know if its possible to select multiple items on a QTreeWidget and how to go about enabling the multiple selection?
All the items I want to be selectable are top level QTreeWidgetItems ...
2
votes
1answer
453 views
Using images in QListWidget, is this possible?
I am using QT to create a chat messenger client. To display the list of online users, I'm using a QListWidget, as created like this:
listWidget = new QListWidget(horizontalLayoutWidget);
...
2
votes
1answer
1k views
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 be reorganized with an internal drag and drop
list2 should be able to receive items ...
2
votes
1answer
301 views
Make QListWidget only show 1 item
I have created a class that inherits the QListWidget and is meant to be a stack of cards.
I have overloaded the drag and drop functions to allow a card to be dragged to the table (another object of ...
2
votes
1answer
649 views
QListWidget and Multple Selection
I have a regular QListWidget with couple of signals and slots hookedup. Everything works as I expect. I can update, retrieve, clear etc.
But the UI wont support multiple selections.
How do I ...
1
vote
1answer
57 views
Newbie needs help to insert item into QlistWidget
I created two pushbuttons (InsertItem and RemoveLast item) for a QlistWidget, which should be used to display a list of 3 items(Chair, Table, Mirror ). I need help writing the codes to insert these ...
1
vote
1answer
62 views
Can I attach objects to QListWidgetItems in PyQt?
Is it possible to set/get a object for an item in a QListWidget the same way you set/get the text of the item?
1
vote
2answers
34 views
how to EnsureVisible a newly added item on qlistwidget in python?
when i added an item in a qlistwiget and reaches the bottom. A scroll bar appears, how can i ensurevisible an item that was newly added from the qlistwidget? Or how can i get the focus to the last ...
1
vote
1answer
115 views
Making QListWidget resize its items to fill space
I've got a QListWidget and I've got a custom widget class, which I'm creating an instance of for each item appearing in the list widget.
But I can't figure out how to make my custom widget expand to ...
1
vote
1answer
93 views
Qt Database content view / manipulation as list view
I have a database, which tables should viewed in a widget. Seems simple, but I can't decide what to du or use.
Each row of the table should be viewed as one list view item, for instance, imagine ...
1
vote
2answers
170 views
Qt forbid declaration of QListView with no type
I have a very strange error in my Qt project. Here is the code, the main_window.h:
#include <QtGui>
#include <QtSql>
class main_window : public QTabWidget
{
Q_OBJECT
/// @name ...
1
vote
2answers
696 views
How to customize QListWidget with different highlight bar and spacing
I'm working on an application that needs to have a menu on the left side of the screen containing multiple items (text). The only items I want to be visible are the actual text and the highlight bar. ...
1
vote
1answer
203 views
Customize QListWidgetItem
I am creating my first app in QT and wanted to design a list. The listitem has two texts and one icon.
The problem is, i cant find any example or helping material, Only helping link i found is : ...
1
vote
1answer
371 views
pyQt: query checkbox checked in a QListWidget
I am adding Checkboxes to a QlistWidget like this
item = QtGui.QListWidgetItem(listWidget)
ch = QtGui.QCheckBox()
listWidget.setItemWidget(item, ch)
like here
Can't change state of checkable ...
1
vote
1answer
93 views
return value from listWidget in pyqt4
Whenever I attempt to store the selected value from a listWidget using
foo=self.listWidget.currentItem()
this is what I get as a value for foo:
<PyQt4.QtGui.QListWidgetItem object at ...
1
vote
2answers
250 views
How to create Symbian style list views in Qt
I've never done any item delegates in Qt before, and I think the documentation doesn't explain well about more complex delegates.
I need to create 2 styles of Symbian(^3) style lists
Type 1:
This ...
1
vote
1answer
293 views
QListWidget send doubleClicked signal with no items
I have a QListWidget on a dialog that I want to do something (for example, open a QFileDialog window) when a user double-clicks on the QListWidget. Unfortunately, the void doubleClicked (const ...
1
vote
0answers
225 views
Customize PyQt multi-touch pan gestures on QListWidget
I'm having a problem with a simple Notepad application I'm writing to teach myself basic Python/PyQt.
Specifically, I want to know how to change the multi-touch pan gesture sensitivity on a ...
1
vote
1answer
498 views
QListWidget drag and drop items disappearing from list on Symbian
I'm having trouble implementing a QListWidget with custom items that can be reordered by dragging and dropping. The problem is when I make a fast double click (a very short drag&drop) on an item, ...
1
vote
1answer
173 views
QListWidget::addItem gives horrendous flickering
This happens when I add items one at a time (adding one item and then returning to the event loop). To illustrate, my code looks roughly like this:
....................
timer = new ...
1
vote
0answers
205 views
How to implement Drag in a QListWidget that contains files?
I have a QListWidget which I fill with filenames (the filename without path is the item's text, and the full path is in the item's tooltip). I want to be able to drag, for example, a movie file to VLC ...
1
vote
1answer
676 views
Qt/C++: Signal for when a QListWidgetItem is checked?
In my form I have a QListWidget which contains checkable QListWidgetItems. I'm looking for a way to capture the event of a QListWidgetItem being checked/unchecked. I don't see any such signal existing ...
1
vote
1answer
419 views
QT ListWidget itemclicked into a String
I am trying to just click on an item in a list of items in a listwidget.
I right clicked in my UI and went to the slot:
void main::listWidget_itemClicked(QListWidgetItem* item)
In there I can run ...
0
votes
1answer
19 views
How to know if QListWidgetItem is hidden by scroll?
Well, i'm newbie in Qt and i have a problem.
I have a QListWidget in my UI with 7 items, just 4 items are showed and the other are showed after to use scrollbar. I want to show a arrow image above ...
0
votes
2answers
56 views
Create Custom Qt Widget or Implement an existing widget?
So I'm trying to work out how to design my wire-frame. It is essentially just two QScrollAreas, one above another, with a header (and button inside the header) for each.
Inside one design of the ...
0
votes
3answers
64 views
PyQt4 : is there any signal related to scrollbar?
I plan to create a two listWidget and they have same amount of list.
So, when a listWidget scroll up and down, another one also travel it's list.
But, I can't find related signal.
Did I miss ...
0
votes
1answer
46 views
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
o
I
to this:
A
C
I
d
e
o
z
But i want it to be:
A
C
d
e
I
o
z
Any way to change to make it ...
0
votes
1answer
73 views
PyQt/QListWidget: how to edit data rather than display text?
I have a dictionary of tuple:name pairs. I display the names in a QListWidget, but I retrieve and work with the tuples -- the names are strictly for display purposes. The setFlags line in the code ...
0
votes
1answer
76 views
QListWidget Align Items Center
I am adding a list of strings to a QList Widget like this:
myList.addItems( [ 'item1' , 'item2' , 'item3' ] )
By default the list aligns these to the left but I want to get them in the center of ...
0
votes
1answer
150 views
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 the beginning of the list and one at the end and text should be soon after my first Image.
itemclicked ...
0
votes
1answer
104 views
How to show icons without text in QListWidget?
I want to show only icons in my QListWidget. I set text to empty string. When I select an icon I see an empty selected square on the text place. See the screenshot
How can I get rid of this empty ...
0
votes
1answer
100 views
How can I get the height of a QListWidgetItem in a QListWidget in PyQt?
Actually, how can I extract size of gui elements in general in PyQt?
So far I have only found sizeHint mentioning anything regarding sizes in PyQt.
Could anyone please explain how sizes works in ...
0
votes
1answer
193 views
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?
0
votes
0answers
55 views
QList with columns
Does anyone know of an easy way to create a QlistView or QListWidget with columns?
All I need is a list with 2 columns that is undeitable and sortable.
0
votes
2answers
321 views
PyQt4 - Remove Item Widget from QListWidget
I have a QListWidget,
and I need to remove some items.
From what I've researched, this is a generally unpleasant thing to do.
I've read a tonne of solutions, but none are applicable to my ...
0
votes
1answer
74 views
How to create an 'array-like' property that JS code can modify in place?
I have a QObject-derived class that looks like this:
class TestObject : public QObject
{
Q_OBJECT
Q_PROPERTY(QStringList contents READ contents WRITE setContents)
public:
QStringList ...
0
votes
2answers
66 views
Detecting if an item is clicked at at some row in a QlistWidget
I Have been given this simple task ,
I have this list where i instert items whenever ok is clicked,void Form::ok() handle that event is supposed to add new list items to the list.
Now what am not ...
0
votes
2answers
198 views
How do I remove all the selected items in a QListWidget?
QListWidget::selectedItems returns a list of QListWidgetItem, but the only function for removing an item that I found is takeItem, which accepts only indexes, and selectedIndexes function is ...
0
votes
1answer
70 views
Clicking on ListWidget's item first time raise an error?
I want to ask you a question. When I click on listwidget's item first time, I see there are some text lines in application output:
QPainter::begin: Paint device returned engine == 0, type: 3
...
0
votes
2answers
435 views
qlistwidgetitem with custom widget doesn't look selected on the UI
I have a Qlistwidget in icon mode and I'm using setItemWidget to display my elements in my custom widgets, so far this is working.
Pretty much is like this one:
...
0
votes
0answers
76 views
pyqt4 qlistwidget setDefaultDropAction not implemented?
I currently have a tool built in PyQt4 that I made with QT Designer that has two columns. I can drag the items from the first column into the second, and it works beautifully. I'd like to be able to ...
0
votes
2answers
554 views
How do I set the selected item in a QlistWidget?
I am adding two items to listwidget using the code below. Now i want to set "Weekend Plus" as selected item in listwidget, how do I do that?
QStringList items;
items << "All" ...
0
votes
2answers
758 views
QListWidget or QListView with QItemDelegate?
Let's say I need to display a list of items. Each item contains a QPushButton an image and some text. WHen a user clicks on the button something should happen ( ie I need to get the signal ). What is ...
0
votes
2answers
781 views
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? Here is my test code.The ListWidget displays nothing after I call addItem.
And how can I ...
0
votes
1answer
558 views
pyqt QtGui.QListWidget.currentItem(QtGui.QListWidget()) is always None
I have QListWidget in my app, I need to get string value of item from QListWidget on which user has double clicked (activated item).
QtCore.QObject.connect(self.ui.listWidget, ...
0
votes
1answer
92 views
how to set a value for the listwidget item?
I create A list widget in which i add items...my items are the filenames....is any way to store the filepaths of this filenames????i want to know how to set a specific value to an item in the ...