Changeset 222 for trunk/src/PDFDocument.h
- Timestamp:
- 06/11/06 14:46:38 (2 years ago)
- Files:
-
- 1 modified
-
trunk/src/PDFDocument.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/PDFDocument.h
r200 r222 25 25 typedef struct _PopplerLinkMapping PopplerLinkMapping; 26 26 typedef struct _PopplerPage PopplerPage; 27 typedef struct _PopplerPSFile PopplerPSFile; 27 28 28 29 namespace ePDFView … … 40 41 ~PDFDocument (void); 41 42 43 IDocument *copy (void) const; 42 44 GList *findTextInPage (gint pageNum, const gchar *textToFind); 43 45 gboolean isLoaded (void); 44 46 gboolean loadFile (const gchar *filename, const gchar *password, 45 47 GError **error); 46 void getPageSizeForPage (gint pageNum, gdouble *width, 48 void getPageSizeForPage (gint pageNum, gdouble *width, 47 49 gdouble *height); 50 void outputPostscriptBegin (const gchar *fileName, guint numOfPages, 51 gfloat pageWidth, gfloat pageHeight); 52 void outputPostscriptEnd (void); 53 void outputPostscriptPage (guint pageNum); 54 48 55 DocumentPage *renderPage (gint pageNum); 49 56 gboolean saveFile (const gchar *fileName, GError **error); … … 52 59 /// The PDF document. 53 60 PopplerDocument *m_Document; 61 /// The output to PostScript. 62 PopplerPSFile *m_PostScript; 54 63 55 64 IDocumentLink *createDocumentLink (const PopplerLinkMapping *link,
