QListView is a UI control part of the Model/View architecture of the Qt Framework.

learn more… | top users | synonyms

1
vote
1answer
31 views

How to force QAbstractItemView recalculate items sizeHints

I have QListView and QTabWidget inside QSplitter. QListView is using custom model and custom delegates. In delegate I reimplemented paint and sizeHint methods. But when I resize view - height of ...
1
vote
1answer
74 views

Best way to list files in a QFileSystemModel()?

I'm beginning Qt/pySide programming and am trying to implement a simple QListView with QFileSystemModel as the model. I have this working and in addition have defined a name filter on the model. I'd ...
0
votes
1answer
113 views

Signal when a QListView selection changes due to keyboard activity?

I have a QDialog, created with QT Designer, that looks like so: The list of servers on the left is a QListView with a QStringListModel. Mouse clicking an item in the list view updates the form with ...
2
votes
1answer
110 views

QListView with QAbstractListModel shows an empty list

I have created a very simple example of QListView with a custom QAbstractListModel. The listview is displayed but it is empty. What am I doing wrong: #include <QListView> #include ...
0
votes
0answers
170 views

Custom QItemDelegate for QListView doesn't display items from the start of programm

I subclassed QItemDelegate and made a custom data model to create custom list items(custom Qwidget with Qlabel and some buttons) for QlistView.I want that listItems dislpay themselves right from the ...
0
votes
1answer
86 views

QListView displaying blank rows ?? (Qt)

I have just started experimenting with Qt's AbstractListModel and as a practice application Im trying to make a model which will store custom objects.The classes are testperson, personlistmodel class ...
0
votes
1answer
55 views

Selecting value from QListView and on Submit, pass it to Next Window?

I am using QListView to display a simple list of Names from MySQL Database, now I need to send selected value to the Next Window when clicked on Next > button, I am new to Qt, saw about ...
0
votes
1answer
132 views

Solved: Qt 4.8.4: Cannot connect slot to QListView::currentChanged() signal

When connecting a slot to QListView::currentChanged(current, previous) signal using auto connection I get: QMetaObject::connectSlotsByName: No matching signal for ...
4
votes
3answers
167 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
272 views

Qt Item Delegate

I am new to Qt and am slowly finding my way around. My end goal is to have a QListView of a QFileSytemModel where the names of the files in the icons wraps, similar to behavior found on any OS where ...
0
votes
0answers
128 views

PySide: Custom QListView with small animation and buttons

I'd like know how to create a QListView with custom list items. I have a small sprite animation I want to display on the left side of each entry, and some information as well as a few push buttons on ...
0
votes
1answer
115 views

How do I tell QListView to resize to fit?

I have a QListView and have assigned a model and a delegate. I am using it to display images in a horizontal bar as below On a user event, data is updated in the model. One such event causes the ...
0
votes
0answers
85 views

setWordWrap(true) no effect on QListView in IconMode with little modification to defaultDelegate()

I'm currently doing an overhaul of the "Select Icon dialog" and encountered an odd problem. The list of icon is shown in a QListView that has viewMode set to IconMode. So far, so simple. The problem ...
0
votes
1answer
384 views

Issue with QListview with custom model using qabstractlistmodel

Trying to implement a custom model for my qlistview. I've been reading the links of past posts similar to to mine but I haven't been able to get it to work. I wanted to list my my object that ...
0
votes
0answers
213 views

QListView submit new row when focus lost

I am working with a QListView backed with a QSQLTableModel and I am trying to update some other widget whenever data in the list changes. The table is an incredibly simple one of categories (2 ...
0
votes
1answer
203 views

QListView losing selection on edit

I have a QListView pulling data from a QSQLTableModel. Upon a user clicking an 'Add' button, I add a new item and open it for editing: QSqlTableModel *tblModel= qobject_cast<QSqlTableModel ...
1
vote
1answer
126 views

Create a QListView of QGraphicsView objects

I want to be able to create a vertical list of items that will give a similar appearance as to what you see in PowerPoint where it shows a vertical list of tiles that represent each slide. I believe ...
0
votes
1answer
110 views

How to properly obtain the size of a QListView

I am creating a simple widget that contains a qlistview with icons and a QSlider. The widget is created with the Qt Designer. What I am trying to do is to have my icons fit excactly the height of the ...
0
votes
2answers
75 views

QT4 qlistview save icon position moved by hand for the next time

I'm developing an app with qt4.3 which opens a window with a bunch of icons loaded from .desktop files. It tries to emulate a file browser but without file browsing... I mean, you can double click and ...
0
votes
1answer
568 views

Drag and Drop of QListView Items

Please help me out to solve this.... I have a QListView on the Left side and a QWidget on the other side. In QListView i had added few items using QStandardItem. Now i want to Drag and Drop the ...
0
votes
1answer
176 views

QML : Menu Drop-down issue

How to get different items containers in drop-down feature in QML as shown in figure. I tried the requirement in below implementation using listview but could not get the same. Below is the ...
1
vote
1answer
276 views

How to sort items in Qt QListview using Qt.UserRole

I'm having some problem sorting the items in my QListView using values in a field I specified. Basically what I'm trying to do is this: Detect faces in a collection of photos and display them in a ...
1
vote
1answer
137 views

How to tell where an item was dropped in qlistview?

I have a custom QListView: from PyQt4.QtCore import * from PyQt4.QtGui import * from Diagnostics import Trace2 #writes to log file import traceback class ListOrderView(QListView): itemMoved = ...
0
votes
1answer
247 views

Why would clicking on items in qlistview revert them to previous state after drag and drop?

I've implemented drag and drop to reorder items in a list view, and all my debug output indicates that this is working properly. However, when I select an item again, it reverts back to what was there ...
0
votes
1answer
90 views

Installing eventFilter on QListView for indexWidgets

I have a customWidgets with some components (combobox, lineEdit, labels..etc), This customWidget is added to a QListView using setIndexWidget(QModelIndex,QWidget) , My requirement is that when i click ...
0
votes
0answers
85 views

Can't see Qt element while dragging using touch interface

I'm working on a Qt application that supports drag and drop of certain items among four QListView widgets with drag&drop enabled. The problem I'm seeing on a Windows 8 touch enabled device is ...
0
votes
1answer
67 views

How can I replace the Q3ListView/Q3ListViewItem utilities?

I'm updating some old code that is unfortunately heavily dependent on Q3ListView and Q3ListViewItem, its now-obsolete little helper class. I'm assuming I can now just populate a QListView without ...
0
votes
1answer
486 views

Qt: Reordering ListView Items using drag and drop

I have implemented the following methods for drag and drop void mousePressEvent(QMouseEvent *event); void dragEnterEvent(QDragEnterEvent *event); void dragMoveEvent(QDragMoveEvent *event); void ...
2
votes
0answers
126 views

Qt : Moving Items in a QListView with Animations without qml

I am working on a QListView to provide a functionality that animates the movement of items in the listView. For example : item1 item2 item3 item4 item5 If i click on item4 and move/drag up then ...
1
vote
1answer
296 views

Qt - How to Transfer QListView Items to another QListView?

I have a QLineEdit, 2 QPush buttons (Add & Remove Buttons) and a QListView. The Text which i am entering in the QLineEdit will gets added in the QListView when the add button is clicked. and if ...
1
vote
2answers
281 views

How to Sort ListView Items in Ascending Order?

I Tried to Sort my ListView Items in Ascending Order, so i tried with Model->sort(int Column, Qt::AscendingOrder) It Works Fine, but I don't like the Qt::AscendingOrder policy. Indeed the ...
1
vote
1answer
316 views

How to remove an Item from a List View?

I have a QLineEdit, 2 QPushButtons (Add & Remove Buttons) and a QListView. I want to add the QLineEdit text to the QListView when the add button is clicked. Same way, I have to delete an item from ...
1
vote
2answers
541 views

Qt- How to display the Text Edit String in a List View?

I have a QTextEdit , 2 QPushButtons (Add n Remove Buttons) and a QListView. When i am entering the text in the Text Edit and click the Add Button, the Text should be added in the List View. Then, if ...
1
vote
1answer
203 views

Qt Widget with tree organized items

I'd like to have an widget with items organized in tree structure. However it should be viewed in one line and every substree should be represented in braces. For example: 1. element1 2. element2 3. ...
2
votes
2answers
353 views

Python: Qt4: 'QListView' object has no attribute 'addColumn'

For some weird reason this QListView object doesn't have addColumn attribute. Could you explain what I'm doing wrong here ? self.pointListBox = QtGui.QListView(self) ...
2
votes
0answers
110 views

QListView drop indicator styling

I am using QListView to show a list of items that I can drag and drop to change their order. The problem is that: the drop indicator is just a very small line (1px thickness) the drop area is so ...
1
vote
1answer
484 views

PyQt4 QTableView model based

I am trying to display some simple info from SQLite database into QTableView. I have followed one answer from SO, and for itself, it is working. When I try to implement the same code into my GUI (just ...
1
vote
2answers
120 views

C++, Qt - Hideable QListView

I would like to make a list of checkboxes for my programm, so that the users are be able to check/uncheck a number of different flags. However, I would like to make it behave like a QComboBox: to be ...
3
votes
1answer
2k views

How to get QString from QListView selected item in QT?

I need to get the selected item name in QListView as a QString. I have tried to google it, but i haven´t found anything useful. Thanks
2
votes
1answer
376 views

QListView with checkboxes for viewing of filesystem

It is necessary to list of directories by given path in QListView whith icons and checkboxes, then transmit names of marked folders to the program. For list directories i use code: #include ...
1
vote
1answer
660 views

Qt Drag and Drop QListView removing the item on which it is released

I working on a small QlistView which is Sortable. iListView = new QListView(this); //Creating a standard item model iStandardModel = new QStandardItemModel(this); //First item ...
1
vote
2answers
852 views

How to set minimum height of QListWidgetItem?

How can I set the minimum height of a QListWidgetitem ? I use QListWidget::setItemWidget() with a customized widget , although i explicitly declared minimum height of my customized widget , those ...
0
votes
1answer
136 views

Qt Selection Rect Position

Can I get Selection rectangle position on my form in qt, if yes, how? My problem is to get QPos from selected QModelIndex in QListView. Thank you!
1
vote
3answers
399 views

Simple way to get all visible items in the QListView

I am trying to develop an image gallery application using Qt Framework. The application loads all the images from the selected folder and those images are displayed using QListView control. But now i ...
0
votes
3answers
390 views

How to make the scrollbar of a QListView report its correct value after a model update?

I'm trying to set the value of a QListView scrollbar immediately after updating its model. The problem is that the scrollbar is not properly setup at that time so its maximum value is not correct. It ...
4
votes
1answer
477 views

Clickable elements or child widgets inside custom-painted delegate

I have a QListView, where I display items using a custom delegate with custom painting. Within each item (i.e. each list row) I want to be able to show a couple of "hyperlinks" which the user could ...
2
votes
1answer
708 views

Using QListView with a model defined in Pyside

I have been trying to display a list that I build using PySide. It is not simply a list of strings (or I could use QListWidget), but I simplified it for the example. from PySide import QtCore, QtGui ...
0
votes
1answer
679 views

Catch which mousebutton is pressed on item

I have a UI.py file with the mainWindow class definition (build with Qt Designer and Pyside). The UI is imported in the main module. In the Ui I have a listbox. Based on the left or right mouse ...
1
vote
1answer
254 views

Qt - QListView of my own custom objects

I am writing an application to monitor various information coming back from an array of sensors. Simply put, I have a class for a sensor (here-after referred to as the 'Sensor Class') and I have a ...
0
votes
0answers
173 views

QListView display files and folder from string List

I have a string array,which looks like this: /test/ /test/a.txt /testb /testb/b.txt which means two directory test and testb,and two files a.txt,b.txt, I want them to display in the ...

1 2