Hmm maybe I am doing this wrong? Here are the class definitions:

MyDirModel : public QDirModel

FolderTreeModel : public QAbstractProxyModel
->setSourceModel(MyDirModel)

FolderTreeView : public QTreeView
->setModel(FolderTreeModel)

... I am trying to display things about files that Qt doesn't understand and I want to be able to control the loading of how QDirModel loads the files, because it doesn't understand the filesystem completely either... Am I doing things in the wrong order?

-KW