diff options
Diffstat (limited to 'scintilla/test/XiteMenu.py')
-rw-r--r-- | scintilla/test/XiteMenu.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/scintilla/test/XiteMenu.py b/scintilla/test/XiteMenu.py new file mode 100644 index 0000000..66fe77c --- /dev/null +++ b/scintilla/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"],
+ ]],
+]
|