tags:

views:

53

answers:

2

Hi all ... Does anyone have any links to tutorials showing how to use QListView and how to populate it with items .. ? If I search google I can only find outdated tutorials which use classes which have been deprecated ..

+1  A: 

Take a look at Item Views Puzzle example in the Qt documentation:

http://doc.trolltech.com/4.6/itemviews-puzzle.html

Vitor Py
A: 

I usually just read the qt documentation as it is very good and provides the necessary information to work with a specific class (it is one of the best documented frameworks in my opinion) try and read the documentation for list view http://doc.qt.nokia.com/4.6/qlistview.html and also look at the examples provided with qt in the examples directory you should find more than one which uses qlistview.

Olorin