How to use GtkBox to create boxed layouts

7a6d85611f93050ad169954ead759456.png
1. create
GtkBox
;
2. pass the
GtkOrientation
on constructor;
3. now you can add the widgets in this box using
pack_start
;
4. you can configure how it will be added using
pack_start($child, $expand, $fill, $padding)
;