Tagged Questions

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

learn more… | top users | synonyms

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 ...
6
votes
4answers
4k views

How to make item view render rich (html) text in Qt

Suppose my model has items with the following string for Qt::DisplayRole <span>blah-blah <b>some text</b> other blah</span> I want QTreeView (actually, any item view) to ...
3
votes
1answer
693 views

how to change Qt qListView Icon selection highlight

When using qlistview in icon mode I need to completely remove the hilighting when a icon is selected. Using the code below the text under the icon is no longer highlighted but I still get blue color ...
3
votes
1answer
409 views

Using a file watch to refresh a log viewer using PyQt4

I've implemented a very simple log viewer in Python using PyQt4. I am interested in using it to follow the execution of a program, so the list view has to be refreshed when a new line is appended to ...
3
votes
2answers
503 views

Programmatically adding a new row to a QAbstractListModel subclass

Within an already-instantiated QAbstractListModel subclass, how do I add a row with data in each column, and have the associated QListView display the new row? It seems that the only way to do it is ...
3
votes
1answer
829 views

Is there a way to display icons in QListView without text?

Using a QListView, and QStandardItemModel, is it possible to display icons in the list view without displaying the associated text? QStandardItem is defined as so: QStandardItem ( const QIcon & ...
2
votes
2answers
536 views

Qt: Browsing filesystem with QListView and QFileSystemModel. How to higlight first item in a folder?

I'm doing what the topic says on a system without keyboard/mouse, so I need to make this work "from code". When I change the RootIndex of the QListView I want to highlight the first row. Here's ...
2
votes
3answers
1k views

Qt QListView - context menus?

I'm trying to add a context (right click) menu to a Qt QListView. I see in Qt 3.3 there is "contextMenuRequested" (which I could use) - ...
2
votes
4answers
3k views

QListView how to add column?

How can I add columns to QListView control. Found a method addColumn while seardhing, but in my Qt Creator 1.2.1 based on Qt 4.5.2(32 bit) QListView doesn't have such method at all !!! So how would I ...
2
votes
2answers
1k views

obtaining text from a QListView

Hey, I have a pointer to a third party QListView object, wich is simply displaying rows of text. What is the best way of getting a hold of that string of text? thanks, Dave
2
votes
2answers
4k views

A ListView of checkboxes in PyQt

I want to display a QListView where each item is a checkbox with some label. The checkboxes should be visible at all times. One way I can think of is using a custom delegate and QAbstractListModel. ...
1
vote
2answers
167 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
1answer
199 views

How to get the selected item delegate in a QListView

I want to implement drag and drop on my QListView, so I would like to get the selected item delegate. How can I do that?
1
vote
1answer
81 views

Remove QListView background

I want to remove the background of my QListView so that the background below can be seen through. How can I do that? I tried setAttribute(Qt::WA_NoSystemBackground) and ...
1
vote
0answers
96 views

qt - QAbstractItemView and [vertical/horizontal]ScrollMode

QAbstractItemView features setters/getters for vertical and horizontal scroll model. possible values are: ScrollPerItem and ScrollPerPixel. I'm using QListView with a custom model. The problem is ...
1
vote
2answers
550 views

In Qt how to style the checkbox in a QListview to put the label under the checkbox?

I have an horizontal QListview and I want to customize the checkBox and label inside with a stylesheet to put the label under the checkbox, not at the right. How to do it ? Thanks.
1
vote
1answer
461 views

How to make a QListView resize its items according to editor size

I have a qlistview whose editing is made in a qtableview, by means of a delegate. When the qtableview shows up, I'd like the qlistview to resize its row to fit all of qtableview. Here is the code: ...
1
vote
1answer
499 views

Can I add columns in a QListView in Qt?

Can I add columns in a QListView object?? here's something I found here: model->setHeaderData( 0, Qt::Horizontal, "numéro" ); model->setHeaderData( 1, Qt::Horizontal, "prénom" ); ...
1
vote
1answer
458 views

How do you add items to the QT QListView

I am creating a mysql reading program and I need to use a QListView with colunms and rows, but I can't work out how.
1
vote
1answer
360 views

Qt: How to layout records in a grid? QListView or QGridLayout?

Still learning the fundamental concepts... I want to layout items that come from a database in a grid. Each item will have a custom view with a preview picture, attributes and controls. The grid can ...
1
vote
1answer
644 views

clicked() signal for QListView in PyQt4

I have a working QListView, but from the documentation, I can't figure out how to get a signal to fire with the index of the newly selected item. Any ideas?
1
vote
1answer
677 views

How to set QListView Opacity ,setWindowOpacity dosn't work

Hi im trying to set opacity to QListView , that sits on QDialog i mange to set the QDialog transperant with setting the :Qt::WA_TranslucentBackground = true but the QList doesn't become transparent ...
0
votes
0answers
25 views

Qt QStandarItem size

I am using a QListView, and I'm wondering if there is a way to make the QStandardItems that I'm filling it with take up all of the vertical space available. So far I have QListView with 5 items and a ...
0
votes
0answers
41 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 ...
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
1answer
92 views

Smooth scrolling in a QListView (or QAbstractItemView)

I have a QListView that displays square-shaped items. My problem is that when I scroll this list, it scrolls one entire row of squares at a time, and I think that doesn't look right. Instead, I would ...
0
votes
2answers
134 views

How to select a row in a QListView

I'm still struggling with using QListView, I'm trying to select one particular row in the view and I cannot figure out how to do this. I found a similar question on StackOverflow which recommends ...
0
votes
1answer
105 views

How to use Qt's Model-View programming

I'm trying to display some cards into a QListView but I'm really having trouble understanding how to use Qt's model/view pattern, and I can't find any simple examples. Basically, I have two classes: ...
0
votes
0answers
111 views

Multi Widget focus problem with QListView in s60

Everyone: I am a newbie guy in QT development, and now i face a problem which frustrated me a few days. I use QT s60 version for E6/E7. The application is actually a totally full screen app, and i ...
0
votes
2answers
386 views

Render QWidget in paint() method of QWidgetDelegate for a QListView

i'm having difficulties implementing custom widget rendering in a QListView. I currently have a QListView displaying my custom model called PlayQueue based on QAbstractListModel. This is working fine ...
0
votes
2answers
160 views

Qt. Problems with displaying data in QListView

Good day! There are instances of classes QListView and QTreeView. Both of the instances loads data from model (QStandardItemModel). QTreeView displays positions (For example: Chief, Manager, ...
0
votes
3answers
195 views

Uneditable QListView

I have a QListView displaying a list of items but I don't want the items to be edited (Currently a double click on the item allows you to edit them). This is my Code: self.listView = QListView() ...
0
votes
2answers
757 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
640 views

QT4 QstringListModel in QListView

This is my first QT question - I'm generally a C# programmer so forgive me for asking a stupid question for which I'm sure there's a very simple answer, which I just can't seem to find: I want to add ...
0
votes
2answers
409 views

select first item in qlistview by defualt

HI all, Can anyone tell me how i can set the first item of the qlistview every time i click an item ? I am using qfilesystemmodel along with qListView. Basically I want the first item shown by the ...
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 ...
0
votes
1answer
106 views

Double QListView using Qt4 Model/View paradigm

I have a list of lists I have to show to the user. When the user clicks on an element of the first list the second view must update to show the "childs" of the clicked element. I'm wondering, should ...
0
votes
1answer
474 views

qlistview with checkboxes using custom model

I have subclassed filesystemmodel to include checkboxes in listview , which is working fine. My problem is whenever I click an item the text of that item disappears and when i click another item the ...
0
votes
0answers
50 views

Can i reuse QListViewItems in a QListView (qt3)

Is it possible, reusing somehow the QListViewItems of a QListView, if the list has to load too many items ? I've seen something like this in CocoaTouch, where a UITableView reuses items (iPhone/iPad ...
0
votes
2answers
190 views

Is QListView right for me?

I've been having difficulty trying to find a Qt widget that will allow me to display a list with columns. From what I understand, QListView does indeed display list data, but it doesn't allow for ...
0
votes
1answer
992 views

How to select an item in a QListView that corresponds to the last inserted record of the underlying QSqlTableModel?

I am programming some kind of address book. On the left side of my application i have a QListView to display the names of my contacts. On the right side of my application i have a form to type in the ...
0
votes
1answer
396 views

How to loop QListView item selection

How can I make QListView item selection loop from bottom item to top (by pressing navigation key, down) and from top item to bottom (by pressing navigation key, up)? Is there a flag to be defined or ...
0
votes
1answer
128 views

Size of element depending on size of the QListView

I developing a program that draws in elements of the list (QListView). How do I set the size of an element depending on the size of the QListView? I write implementation of the sizeHint in the ...
0
votes
2answers
1k views

QListWidget that resizes instead of scrolls

How do you change the behavior of a QListWidget so that it resizes its height instead of choosing a (seemingly arbitrary) height and adding scrollbars? See screenshot: The QListView's should fill ...
0
votes
1answer
519 views

Remove a list of selected items in the QListView

How can I remove a list of selected items in the QListView in QT 4.6. Something like this does not work, the iterator becomes invalid: QModelIndexList indexes = ...
0
votes
1answer
466 views

How to make item view render rich (html) text in PyQt?

I'm trying to translate code from this thread in python: import sys from PyQt4.QtCore import * from PyQt4.QtGui import * __data__ = [ "Lorem ipsum dolor sit amet, consectetur adipisicing ...
0
votes
2answers
577 views

Python Qlistview output dir

Hi all i wish make little gui with pyqt4 that show the output of "dir c:\windows\" line by line I'm looking for QlistView but i don't understand how do it. Can anyone help me?
0
votes
1answer
833 views

Setting focus on QLineEdit while showing the QListView view

In Qt, there is a QCompleter class which provides auto-complete funtionanity. I want to use QListView to finish the same thing. In the following code, When the QListView shows, QLineEdit will lose ...
0
votes
2answers
924 views

Python PyQT4 - Adding an unknown number of QComboBox widgets to QGridLayout

I want to retrieve a list of people's names from a queue and, for each person, place a checkbox with their name to a QGridLayout using the addWidget() function. I can successfully place the items in a ...
-4
votes
1answer
183 views

What are the best QT list and table objects [closed]

What are the best list and table objects in QT, for easy add, change, get and delete rows? This is for medium-sized objects. Please can you supply snippets of code for the objects.