<<>> <> <> <> <<>> DIRECTORY AdobeCommon USING [Handle, EnumeratedTypes, StringArray], AdobeOps USING [FieldType], Rope USING [ROPE]; AdobeTool: CEDAR DEFINITIONS ={ <> SetUpSubmitTool: PROC [handle: AdobeCommon.Handle]; <> QueryCommandProc: PROCEDURE [h: AdobeCommon.Handle]; FindThisQL: PROC[handle: AdobeCommon.Handle, name: Rope.ROPE ¬ NIL]; SetUpQueryTool: PROC [handle: AdobeCommon.Handle]; <> SetUpReportTool: PROC [handle: AdobeCommon.Handle]; ResetProc: PROCEDURE [windowData: AdobeCommon.Handle, redisplay: BOOLEAN]; SetProc: PROCEDURE [windowData: AdobeCommon.Handle]; ReportCommandProc: PROCEDURE [h: AdobeCommon.Handle]; <> SetUpQueryListTool: PROCEDURE [handle: AdobeCommon.Handle]; ChooseQLCmd: PROCEDURE [windowData: AdobeCommon.Handle, index: CARD]; <> ShowSortKeys: PROC [handle: AdobeCommon.Handle]; SortCommandProc: PROC [handle: AdobeCommon.Handle]; <> GetValidRelations: PROCEDURE [type: AdobeOps.FieldType] RETURNS [relStrings: REF AdobeCommon.StringArray]; GetPossibilities: PROCEDURE [bh: AdobeCommon.EnumeratedTypes] RETURNS [possibilities: LIST OF Rope.ROPE]; CurrentButtonProcData: TYPE ~ REF CurrentButtonProcDataRec; CurrentButtonProcDataRec: TYPE ~ RECORD [h: AdobeCommon.Handle, e: AdobeCommon.EnumeratedTypes]; <> EnableUserEdits: PROC [handle: AdobeCommon.Handle]; DisableUserEdits: PROC [handle: AdobeCommon.Handle]; BumpNumOfDeps: PROC [add: AdobeCommon.EnumeratedTypes, addTo: AdobeCommon.EnumeratedTypes]; SetUpDefaults: PROC [handle: AdobeCommon.Handle]; CountRopes: PROC [l: LIST OF Rope.ROPE] RETURNS [count: CARD]; ClearWindow: PROC [handle: AdobeCommon.Handle]; EmptyContents: PROCEDURE[handle: AdobeCommon.Handle]; SetUpWindow: PROC [handle: AdobeCommon.Handle]; EmptyFieldViewer: PROC [handle: AdobeCommon.Handle]; SetEnumField: PROC [handle: AdobeCommon.Handle, enum: AdobeCommon.EnumeratedTypes, sel: Rope.ROPE ¬ NIL, evenIfAlready: BOOL ¬ FALSE]; SetEnumValue: PROC [handle: AdobeCommon.Handle, enum: AdobeCommon.EnumeratedTypes, val: CARD, evenIfAlready: BOOL ¬ FALSE]; <> UnterminatedQuote: SIGNAL; }.