TextRep:
TYPE ~
RECORD [
rope: ROPE,
runs: Runs,
charSets: ROSARY --OF REF CharSet--,
charProps: ROSARY --OF PropList--,
props: Props
];
PropsRep:
TYPE ~
RECORD [
propList: PropList ← NIL,
formatName: ATOM ← NIL, -- value of $Format property
comment: BOOL ← FALSE, -- value of $Comment property
hasStyleDef: BOOL ← FALSE, -- true if propList has $StyleDef prop (accelerator)
hasPrefix: BOOL ← FALSE, -- true if propList has $Prefix prop (accelerator)
hasPostfix: BOOL ← FALSE, -- true if propList has $Postfix prop (accelerator)
hasArtwork: BOOL ← FALSE -- true if propList has $Artwork prop (accelerator)
];