68 lines
2.2 KiB
XML
68 lines
2.2 KiB
XML
|
<!--
|
||
|
This is Geany's toolbar UI definition.
|
||
|
The DTD can be found at http://library.gnome.org/devel/gtk/stable/GtkUIManager.html#GtkUIManager.description.
|
||
|
|
||
|
You can re-order all items and freely add and remove available actions.
|
||
|
You cannot add new actions which are not listed below.
|
||
|
Everything you add or change must be inside the /ui/toolbar/ path.
|
||
|
|
||
|
For changes to take effect, you need to restart Geany.
|
||
|
|
||
|
Available actions:
|
||
|
|
||
|
New - Create a new file
|
||
|
Open - Open an existing file
|
||
|
Save - Save the current file
|
||
|
SaveAll - Save all open files
|
||
|
Reload - Reload the current file from disk
|
||
|
Close - Close the current file
|
||
|
Cut - Cut the current selection
|
||
|
Copy - Copy the current selection
|
||
|
Paste - Paste the contents of the clipboard
|
||
|
Delete - Delete the current selection
|
||
|
Undo - Undo the last modification
|
||
|
Redo - Redo the last modification
|
||
|
NavBack - Navigate back a location
|
||
|
NavFor - Navigate forward a location
|
||
|
Compile - Compile the current file
|
||
|
Run - Run or view the current file
|
||
|
Color - Open a color chooser dialog, to interactively pick colors from a palette
|
||
|
ZoomIn - Zoom in the text
|
||
|
ZoomOut - Zoom out the text
|
||
|
UnIndent - Decrease indentation
|
||
|
Indent - Increase indentation
|
||
|
SearchEntry - The search field belonging to the 'Search' element (can be used alone)
|
||
|
Search - Find the entered text in the current file (only useful if you also use 'SearchEntry')
|
||
|
GotoEntry - The goto field belonging to the 'Goto' element (can be used alone)
|
||
|
Goto - Jump to the entered line number (only useful if you also use 'SearchEntry')
|
||
|
Quit - Quit Geany
|
||
|
-->
|
||
|
|
||
|
<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' />
|
||
|
<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>
|