Using Qt's Model/View pattern on custom UIs
Unsolved
QML and Qt Quick
-
I want to use Qt's Model/View pattern on my custom qt quick based UIs but I couldn't find any way how implement it.
As I understand it, QAbstractItemModel designed for models that based on list, table, tree etc. But my UI will show data which change instantaneously (i.e. instant gps data).For instance,I will show last gps info coming from GPS module on map and table.
What way should I follow in this scenario? Should I implement my design according to QAbstractItemModel or custom 'Model View Controller' pattern without QAbstractItemModel, DelegateModel etc.?
-