mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-29 06:51:10 +00:00
6c227b5a65
* tests/merge-2.ui: Use "position" instead of "pos". * gtk/gtkuimanager.c (start_element_handler): No need to be terse: Change the name of the "pos" attribute to "position". * gtk/tmpl/gtkuimanager.sgml: Change the name of the "pos" attribute to "position".
26 lines
781 B
XML
26 lines
781 B
XML
<!--*- xml -*-->
|
|
<ui>
|
|
<menubar>
|
|
<menu name="FileMenu" action="FileMenuAction">
|
|
<menuitem name="New" action="NewAction" position="top" />
|
|
<separator />
|
|
<menuitem name="Quit" action="QuitAction" />
|
|
</menu>
|
|
<menu name="HelpMenu" action="HelpMenuAction">
|
|
<menuitem name="About" action="AboutAction" />
|
|
</menu>
|
|
</menubar>
|
|
<toolbar name="toolbar1">
|
|
<placeholder name="ToolbarPlaceholder">
|
|
<toolitem name="Quit" action="QuitAction" />
|
|
<separator />
|
|
</placeholder>
|
|
</toolbar>
|
|
<popup name="FileMenu" action="FileMenuAction">
|
|
<menuitem name="New" action="NewAction" position="top" />
|
|
<menu name="HelpMenu" action="HelpMenuAction">
|
|
<menuitem name="About" action="AboutAction" />
|
|
</menu>
|
|
</popup>
|
|
</ui>
|