I'd like to know how to create a simple ListView control with QT? I mean a table-like control that has multiple rows and columns, rows can be changed at runtime(edit/add/insert/remove row). I've been googling for a while, all the tutorials are about the three standard table-like controls: QListView, QTableView, QTreeView, but they seem to have limits
QListView: only one column QTableView: row/column count is fixed QTreeView: there is a expander in the first column I prefer to use MVC in my application for performance, so I'm using the Qxxx*View*, I'm new to QT, any suggestion? Thanks.