ui_toolbar.xml 1.29 KB
Newer Older
1
<!--
2
<!--
3
This is Geany's toolbar UI definition.
4 5
The DTD can be found at
http://library.gnome.org/devel/gtk/stable/GtkUIManager.html#GtkUIManager.description.
6 7

You can re-order all items and freely add and remove available actions.
8
You cannot add new actions which are not listed in the documentation.
9 10
Everything you add or change must be inside the /ui/toolbar/ path.

11 12
For changes to take effect, you need to restart Geany. Alternatively you can use the toolbar
editor in Geany.
13

14 15
A list of available actions can be found in the documentation included with Geany or
at http://www.geany.org/manual/current/index.html#customizing-the-toolbar.
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
-->

<ui>
	<toolbar name='GeanyToolbar'>
		<toolitem action='New' />
		<toolitem action='Open' />
		<toolitem action='Save' />
		<toolitem action='SaveAll' />
		<separator/>
		<toolitem action='Reload' />
		<toolitem action='Close' />
		<separator/>
		<toolitem action='NavBack' />
		<toolitem action='NavFor' />
		<separator/>
		<toolitem action='Compile' />
32
		<toolitem action='Build' />
33 34 35 36 37 38 39 40 41 42 43 44 45
		<toolitem action='Run' />
		<separator/>
		<toolitem action='Color' />
		<separator/>
		<toolitem action='SearchEntry' />
		<toolitem action='Search' />
		<separator/>
		<toolitem action='GotoEntry' />
		<toolitem action='Goto' />
		<separator/>
		<toolitem action='Quit' />
	</toolbar>
</ui>