Working with GtkNotebook and tabs/pages

63622c7f7db73bed5ae791f9ba2108f0.jpeg
1. create the
GtkNotebook
;
2. now just add new pages with
GtkNotebook::append_page($widget, $label)
;
3. the first parameter is the GtkWidget that will be the container of content;
4. the second one will be the GtkWidget of tab;