Menus.mesa
Copyright © 1985 by Xerox Corporation. All rights reserved.
Edited by McGregor on September 1, 1982 4:19 pm
Last Edited by: Maxwell, December 17, 1982 9:58 am
Doug Wyatt, April 24, 1985 10:44:49 pm PST
DIRECTORY
Process USING [Milliseconds],
Rope USING [ROPE];
Menus are the "button-like" commands displayed across the top of a viewer.
Menus: CEDAR DEFINITIONS
= BEGIN
Menu: TYPE = REF MenuRec;
MenuEntry: TYPE = REF MenuEntryRec;
A MenuEntry is an individual item in a menu
Creating menus
maxMenuLines: NAT ~ 5;
MenuLine: TYPE = [0..maxMenuLines);
CreateMenu: PROC [lines: MenuLine ← 1] RETURNS [menu: Menu];
Create a new menu with some number of lines of entries
CopyMenu: PROC [old: Menu] RETURNS [new: Menu];
Copy a menu and all of its entries
Menu and Button notifications
MouseButton: TYPE = {red, yellow, blue};
Mouse buttons from left to right
ClickProc: TYPE = PROC [parent: REF ANY, clientData: REF ANYNIL,
mouseButton: MouseButton ← red, shift, control: BOOLFALSE];
For menus, the parent field will contain the parent Viewer; for buttons, parent will be the button Viewer itself. Use NARROW to convert a REF ANY to a Viewer. mouseButton indicates how the user invoked the button or menu. shift and control indicate the state of the shift and control keys when the menu or button was invoked.
MenuProc: TYPE = ClickProc;
A synonym, for compatibility.
Operations on MenuEntries
CreateEntry: PROC [name: Rope.ROPE, proc: ClickProc, clientData: REF ANYNIL,
documentation: REF ANYNIL, fork: BOOLTRUE, guarded: BOOLFALSE
] RETURNS [entry: MenuEntry];
Create an item that can be added to a menu. 'name' is the text that will be displayed to the user, 'proc' is the procedure that will get called when the user invokes the menu, 'clientData' is arbitray data that will be passed to the proc, 'documentation' may either be a Rope.ROPE or a ClickProc and will either be displayed in the message window or called respectively when a guarded entry has its cover removed. 'fork' will FORK and Detach a separate process when the proc is called, 'guarded' menu items have a diagonal cross-hatch pattern over the text that is removed when the user clicks at the menu item. Only if the user clicks at a guarded menu item while the 'cover' is off will the proc be called.
CopyEntry: PROC [oldEntry: MenuEntry] RETURNS [newEntry: MenuEntry];
SetGuarded: PROC [entry: MenuEntry, guard: BOOL];
SetClientData: PROC [entry: MenuEntry, newData: REF ANY] RETURNS [oldData: REF ANY];
SetDocumentation: PROC [entry: MenuEntry, newDoc: REF ANY] RETURNS [oldDoc: REF ANY];
Operations on Menus
FindEntry: PROC [menu: Menu, entryName: Rope.ROPE] RETURNS [entry: MenuEntry];
Search for an entry given the name. Will return NIL if target name not found.
AppendMenuEntry: PROC [menu: Menu, entry: MenuEntry, line: MenuLine ← 0];
Add a new menu entry to the end of a line
InsertMenuEntry: PROC [menu: Menu, entry: MenuEntry, line: MenuLine ← 0];
Add a new menu entry to the front of a line
ReplaceMenuEntry: PROC [menu: Menu, oldEntry: MenuEntry, newEntry: MenuEntry ← NIL];
Change an existing entry in a menu. If newEntry is NIL then the oldEntry will be deleted.
Will raise targetNotFound if target entry not found.
targetNotFound: SIGNAL;
ChangeNumberOfLines: PROC [menu: Menu, newLines: MenuLine];
GetNumberOfLines: PROC [menu: Menu] RETURNS [lines: MenuLine];
SetLine: PROC [menu: Menu, line: MenuLine, entryList: MenuEntry];
GetLine: PROC [menu: Menu, line: MenuLine] RETURNS [entryList: MenuEntry];
Menu private stuff below; no user seviceable parts
MenuRec: TYPE = PRIVATE RECORD [
lines: ARRAY MenuLine OF MenuEntry ← ALL[NIL],
x, y: INTEGER ← 0,
linesUsed: [0..maxMenuLines] ← 1,
lineInverted: MenuLine ← 0,
inverted: MenuEntry ← NIL
];
MenuEntryRec: TYPE = PRIVATE MONITORED RECORD [ -- 15 words
link: MenuEntry ← NIL,
name: Rope.ROPE,
proc: ClickProc,
width: INTEGER ← 0,
xPos: INTEGER ← 0,
clientData: REF ANYNIL,
documentation: REF ANYNIL,
fork: BOOLTRUE,
greyed: BOOLFALSE,
guarded: BOOLFALSE,
guardState: GuardState ← armed
];
GuardState: TYPE = { guarded, arming, armed };
armingTime: Process.Milliseconds = 100; -- cover removal time.
armedTime: Process.Milliseconds = 5000; -- unguarded interval.
END.