diff options
| author | nyamatongwe <devnull@localhost> | 2009-05-12 23:39:51 +0000 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2009-05-12 23:39:51 +0000 | 
| commit | 2642c1da70d5f1e26fda2cfee0deb2fa88b43b71 (patch) | |
| tree | a554b9ac64e53a35379ae6e6a7d3160ac293a4de /test/XiteMenu.py | |
| parent | b529c73475f04af4f687a0d9b1328581734728ae (diff) | |
| download | scintilla-mirror-2642c1da70d5f1e26fda2cfee0deb2fa88b43b71.tar.gz | |
Include tests in standard repository.
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"], +		]], +] | 
