How to display data using GtkTreeView

464ef93d0ba6e33c7457d0afd0584df7.png
1. create
GtkTreeView
;
2. add the columns using
GtkTreeViewColumn
and what type this will render with
GtkCellRendererText
;
3. create model
GtkListStore
, that will store the values;
4. add model to the treeview;
5. use
GtkListStore::append
to add values to model, and the data will appear on treeview;