diff options
Diffstat (limited to 'test/XiteMenu.py')
| -rw-r--r-- | test/XiteMenu.py | 26 | 
1 files changed, 26 insertions, 0 deletions
| diff --git a/test/XiteMenu.py b/test/XiteMenu.py new file mode 100644 index 000000000..f265387cb --- /dev/null +++ b/test/XiteMenu.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- + +""" Define the menu structure used by the Pentacle applications """ + +MenuStructure = [ +	["&File", [ +		["&New", "<control>N"], +		["&Open...", "<control>O"], +		["&Save", "<control>S"], +		["Save &As...", "<control><shift>S"], +		["Test", ""], +		["Exercised", ""], +		["Uncalled", ""], +		["-", ""], +		["&Exit", ""]]], +	[ "&Edit", [ +		["&Undo", "<control>Z"], +		["&Redo", "<control>Y"], +		["-", ""], +		["Cu&t", "<control>X"], +		["&Copy", "<control>C"], +		["&Paste", "<control>V"], +		["&Delete", "Del"], +		["Select &All", "<control>A"], +		]], +] | 
