~ubuntu-branches/ubuntu/lucid/xpdf/lucid-updates

« back to all changes in this revision

Viewing changes to xpdf/Catalog.h

  • Committer: Bazaar Package Importer
  • Author(s): Andy Price
  • Date: 2007-05-17 22:04:33 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070517220433-gzcx2lrvllkbl7mr
Tags: 3.02-1ubuntu1
* Merge from Debian unstable (LP: #113365), remaining changes:
  - Added back 09_xpdfrc_manpage.dpatch (LP #71753)
  - Set Ubuntu maintainer

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
//
3
3
// Catalog.h
4
4
//
5
 
// Copyright 1996-2003 Glyph & Cog, LLC
 
5
// Copyright 1996-2007 Glyph & Cog, LLC
6
6
//
7
7
//========================================================================
8
8
 
65
65
  // NULL if <name> is not a destination.
66
66
  LinkDest *findDest(GString *name);
67
67
 
 
68
  Object *getDests() { return &dests; }
 
69
 
 
70
  Object *getNameTree() { return &nameTree; }
 
71
 
68
72
  Object *getOutline() { return &outline; }
69
73
 
70
74
  Object *getAcroForm() { return &acroForm; }
85
89
  Object acroForm;              // AcroForm dictionary
86
90
  GBool ok;                     // true if catalog is valid
87
91
 
88
 
  int readPageTree(Dict *pages, PageAttrs *attrs, int start);
 
92
  int readPageTree(Dict *pages, PageAttrs *attrs, int start,
 
93
                   char *alreadyRead);
89
94
  Object *findDestInTree(Object *tree, GString *name, Object *obj);
90
95
};
91
96