aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/XiteMenu.py
diff options
context:
space:
mode:
authornyamatongwe <unknown>2009-05-12 23:39:51 +0000
committernyamatongwe <unknown>2009-05-12 23:39:51 +0000
commit77e5724a36c60f1f8318cd68cf1551a7892bfae7 (patch)
treea554b9ac64e53a35379ae6e6a7d3160ac293a4de /test/XiteMenu.py
parentd423d335288c9420c684d4123497b2ece9fbfbe0 (diff)
downloadscintilla-mirror-77e5724a36c60f1f8318cd68cf1551a7892bfae7.tar.gz
Include tests in standard repository.
Diffstat (limited to 'test/XiteMenu.py')
-rw-r--r--test/XiteMenu.py26
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"],
+ ]],
+]