How to display data using GtkTreeView

1. create
2. add the columns using
3. create model
4. add model to the treeview;
5. use
GtkTreeView;
2. add the columns using
GtkTreeViewColumnand 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::appendto add values to model, and the data will appear on treeview;