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
|
|
|
|
|
|
|
The model, accessible by
You also mention you would like to obtain the updated strings when text is written - you can do this by connecting the model's |
||||||||
|
|
|
You can ask the QListView object for its root QModelIndex and use that to iterate over the different entries using the sibling/children methods. You can access the text associated with each index by calling the data method on the index with the role specified as the Qt::DisplayRole. For more details see the following documentation: QAbstractItemView - parent class to QListView |
||||
|