My GTK application has the following UIManager XML. Is there a way to link those menus in the XML, so that I do not have to repeat myself?
<ui>
<menubar name="MenuBar">
<menu action="Options">
<menuitem action="Item0"/>
<menuitem action="Item1"/>
</menu>
</menubar>
<popup name="ContextMenu">
<menu action="Options">
<menuitem action="Item0"/>
<menuitem action="Item1"/>
</menu>
</popup>
</ui>