Question: how to find sub item, in a QTreeView loaded QAbstractItemModel model with model->match() method?
I use QTableView + QStandardItemModel to show some data (data stored in some other data structure), and this table view is sortable.
I am creating a subclass of QAbstractItemModel to be displayed in an QTreeView. 开发者_开发问答
my question is about Qt and its QAbstractItemModel. I have a map of strings and doubles (std::map<stringclass, double>)which I would like to present in a Qt widget. While I could use QTableView
Greetings, I\'ve been writing some nasty code to support the undo/redo of deletion of an arbitrary set of objects from my model. I feel like I\'m 开发者_如何学Gogoing about this correctly, as all the