diff options
author | XhmikosR <xhmikosr@users.sourceforge.net> | 2010-10-31 17:17:15 +0000 |
---|---|---|
committer | XhmikosR <xhmikosr@users.sourceforge.net> | 2010-10-31 17:17:15 +0000 |
commit | 88a9de8737ca5a2ba239d49e072660fc9c89ab25 (patch) | |
tree | b64f81588eafd28926ffc632c01f6b3c246e218d /scintilla/test/XiteMenu.py | |
parent | e5eb2fe35699c79bef11a870fd4c111c040fc22c (diff) | |
download | notepad2-mod-88a9de8737ca5a2ba239d49e072660fc9c89ab25.zip notepad2-mod-88a9de8737ca5a2ba239d49e072660fc9c89ab25.tar.gz notepad2-mod-88a9de8737ca5a2ba239d49e072660fc9c89ab25.tar.bz2 |
add scintilla v2.12 in the svn
git-svn-id: https://notepad2-mod.googlecode.com/svn/trunk@3 28bd50df-7adb-d945-0439-6e466c6a13cc
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"],
+ ]],
+]
|