Poppler::FontIterator Class Reference

Iterator for reading the fonts in a document. More...

#include <poppler-qt4.h>

List of all members.

Public Member Functions

int currentPage () const
bool hasNext () const
QList< FontInfonext ()
 ~FontIterator ()

Detailed Description

Iterator for reading the fonts in a document.

FontIterator provides a Java-style iterator for reading the fonts in a document.

You can use it in the following way:

Poppler::FontIterator* it = doc->newFontIterator();
while (it->hasNext()) {
  QList<Poppler::FontInfo> fonts = it->next();
  // do something with the fonts
}
// after doing the job, the iterator must be freed
delete it;
Since:
0.12

The documentation for this class was generated from the following file:

Generated on Sun Oct 18 01:52:17 2009 for Poppler Qt4 by  doxygen 1.6.1