How to create GtkMenus

1. create a
2. create a
3. create a
4. you can use
5. append
6. the structure are
7. connect the
GtkMenuBar();
2. create a
GtkMenuItem()and append to
GtkMenuBar();
3. create a
GtkMenu()e and add itens inside with
GtkMenuItem::new_with_label($label);
4. you can use
GtkSeparatorMenuItem()too;
5. append
GtkMenuas submenu of
GtkMenuItem();
6. the structure are
GtkMenu()as submenu of
GtkMenuItem(), and
GtkMenuItem()inside a
GtkMenuBar();
7. connect the
GtkMenuItemto signal
activateto detect when click on the menu;