1 /* --------------- BEGIN include file graphic_enames.incl.pl1 --------------- */
 2 
 3 dcl  Element_names (-2:33) char (16) static options (constant) initial
 4     ("illegal type", "null", "setposition", "setpoint", "vector", "shift", "point", (3) (1) "undefined",
 5      "scaling", "rotation", "clipping", (5) (1) "undefined",
 6      "intensity", "linetype", "sensitivity", "blink", "color", (3) (1) "undefined",
 7      "symbol", "text", "datablock", (5) (1) "undefined",
 8      "list", "array");
 9 
10 dcl  Intensity_names (0:7) char (8) static options (constant) initial
11     ("off", "1", "2", "3", "4", "5", "6", "full");
12 
13 dcl  Linetype_names (0:4) char (12) static options (constant) initial
14     ("solid", "dashed", "dotted", "dash_dotted", "long_dashed");
15 
16 dcl  Sensitivity_names (0:1) char (12) static options (constant) initial
17     ("insensitive", "sensitive");
18 
19 dcl  Blink_names (0:1) char (8) static options (constant) initial
20    ("steady", "blinking");
21 
22 dcl  Text_alignments (9) char (16) static options (constant) initial
23     ("upper_left", "upper_center", "upper_right",
24      "left", "center", "right",
25      "lower_left", "lower_center", "lower_right");
26 
27 dcl  Input_device_names (0:63) char (16) static options (constant) initial
28     ("terminal_program", "keyboard", "mouse", "joystick", "pen_tablet",
29      "lightpen", "trackball", (56)(1)"undefined", "any");
30 
31 /* ---------------- END include file graphic_enames.incl.pl1 ---------------- */