1 //========================================================================
5 // Copyright 2000-2002 Glyph & Cog, LLC
7 //========================================================================
19 //------------------------------------------------------------------------
21 //------------------------------------------------------------------------
26 Annot(XRef *xrefA, Dict *dict);
28 GBool isOk() { return ok; }
32 // Get appearance object.
33 Object *getAppearance(Object *obj) { return appearance.fetch(xref, obj); }
37 XRef *xref; // the xref table for this PDF file
38 Object appearance; // a reference to the Form XObject stream
39 // for the normal appearance
40 double xMin, yMin, // annotation rectangle
45 //------------------------------------------------------------------------
47 //------------------------------------------------------------------------
52 // Extract non-link annotations from array of annotations.
53 Annots(XRef *xref, Object *annotsObj);
57 // Iterate through list of annotations.
58 int getNumAnnots() { return nAnnots; }
59 Annot *getAnnot(int i) { return annots[i]; }