2013-01-25 00:46:29 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2013-08-28 00:44:27 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2013-01-25 00:46:29 +00:00
|
|
|
""" 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"],
|
|
|
|
]],
|
|
|
|
]
|