Qt Model/tree view as a wrapper tree display for under-lying tree data-structure
General and Desktop
4
Posts
3
Posters
1.7k
Views
1
Watching
-
Hello,
I've my own tree data-structure which i want to display using Qt model/tree view framework. The underlying tree structure will changing frequently (like insertion and deletion of children) through its own other interfaces. Do I have to take some extra measures to make sure that the underlying data structure is displayed properly without any breaks? -
do u think in implementing ur own Model?
-
I've my own tree data structure which is not a model. Now i've another class cMyModel subclassing QAbstractItemModel. This cMyModel acts as a wrapper of my tree data structure. My tree data structure has its own interfaces/methods through which the tree structure will be changing frequently. Hope you understand my case. My question remains the same