Hmm... The view is for viewing data... it doesn't hold any data itself, only presents it to the user. There is no way of accessing the data in model-view without using the model. The view can give you model indexes associated with selected items (QSelectionModel can handle that), but whole data access has to go through the model. That's the whole idea in model-view concept.
Bookmarks