PopUpSelection2Private.mesa
Mike Spreitzer September 15, 1986 8:04:20 pm PDT
DIRECTORY PopUpSelection2;
PopUpSelection2Private: CEDAR DEFINITIONS = {OPEN PopUpSelection2;
Menu: TYPE = REF MenuPrivate;
MenuPrivate: TYPE = RECORD [
choices: ChoiceS,
header: Image,
doc: ROPE,
left, top: Label,
rows, cols, timeOut: NAT,
height, width: NAT -- total size of menu, in pixels -- ← 0,
rowHeight, colWidth: NAT ← 0,
llSize, tlSize: NAT ← 0,
arrayLeft, arrayBot, arrayTopSep--from top of menu to top of array--, arrayHeight, arrayWidth: NAT ← 0
];
}.