summaryrefslogtreecommitdiffstats
path: root/scintilla/test/XiteMenu.py
blob: 66fe77cdac14475e19d0d0d0666e4d001624125e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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"],
		]],
]