ViewerSpecs.mesa
Copyright © 1985 by Xerox Corporation. All rights reserved.
Edited by McGregor on June 9, 1982 4:55 pm
Last Edited by: Maxwell, December 17, 1982 9:58 am
Doug Wyatt, April 14, 1985 10:55:24 pm PST
DIRECTORY
Icons USING [iconH, iconW];
ViewerSpecs: CEDAR DEFINITIONS
~ BEGIN
bwScreenWidth: READONLY NAT;
bwScreenHeight: READONLY NAT;
width and height of black and white display
colorScreenHeight: READONLY NAT;
colorScreenWidth: READONLY NAT;
width and height of color display
windowBorderSize: READONLY NAT;
thickness of viewer border
captionHeight: READONLY NAT;
height of viewer caption bar
menuHeight: READONLY NAT;
height of a menu line
menuBarHeight: READONLY NAT;
thickness of horizontal bar below menu
scrollBarW: READONLY NAT;
width of scroll bars
messageWindowHeight: READONLY NAT;
height of the message window
openLeftLeftX: READONLY NAT; -- ← 0
openLeftWidth: READONLY NAT; -- ← 600
open viewers in the left column have wx=openLeftLeftX, ww=openLeftWidth
openRightLeftX: READONLY NAT;
openRightWidth: READONLY NAT;
open viewers in the right column have wx=openRightLeftX, ww=openRightWidth
openTopY: READONLY NAT;
openBottomY: READONLY NAT;
bottom and top of the left and right columns
iconWidth: NAT ~ Icons.iconW;
iconHeight: NAT ~ Icons.iconH;
width and height of an icon
iconSpacing: READONLY NAT;
gap between icons (should be multiple of 4 for grey background alignment)
iconLeftX: READONLY NAT;
iconBottomY: READONLY NAT;
lower left corner of the lower left icon
iconRowHeight: READONLY NAT;
iconRows: READONLY NAT;
height of an icon row, number of rows
iconColumnWidth: READONLY NAT;
iconColumns: READONLY NAT;
width of an icon column, number of columns
END.