|
Revision 222, 1.7 kB
(checked in by jordi, 2 years ago)
|
Added a new class named JobPrint? whose duty is to render the current document to PostScript? and print the resultant file. It already renders the requested pages (Note: the setUpPageRange is horrible) to PostScript?.
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
#if !defined (__E_PDF_VIEW_H__) |
|---|
| 19 |
#define __E_PDF_VIEW_H__ |
|---|
| 20 |
|
|---|
| 21 |
#include <config.h> |
|---|
| 22 |
#include <gettext.h> |
|---|
| 23 |
#include <glib.h> |
|---|
| 24 |
|
|---|
| 25 |
#include <Config.h> |
|---|
| 26 |
|
|---|
| 27 |
#include <DocumentRectangle.h> |
|---|
| 28 |
#include <IDocumentLink.h> |
|---|
| 29 |
#include <DocumentLinkGoto.h> |
|---|
| 30 |
#include <DocumentLinkUri.h> |
|---|
| 31 |
#include <DocumentOutline.h> |
|---|
| 32 |
#include <DocumentPage.h> |
|---|
| 33 |
#include <IDocumentObserver.h> |
|---|
| 34 |
#include <IDocument.h> |
|---|
| 35 |
#include <PDFDocument.h> |
|---|
| 36 |
|
|---|
| 37 |
#include <IJob.h> |
|---|
| 38 |
#include <JobFind.h> |
|---|
| 39 |
#include <JobLoad.h> |
|---|
| 40 |
#include <JobPrint.h> |
|---|
| 41 |
#include <JobRender.h> |
|---|
| 42 |
#include <JobSave.h> |
|---|
| 43 |
#if defined (HAVE_CUPS) |
|---|
| 44 |
#endif // HAVE_CUPS |
|---|
| 45 |
|
|---|
| 46 |
#include <IFindView.h> |
|---|
| 47 |
#include <IPageView.h> |
|---|
| 48 |
#include <IPreferencesView.h> |
|---|
| 49 |
#if defined (HAVE_CUPS) |
|---|
| 50 |
#include <IPrintView.h> |
|---|
| 51 |
#endif // HAVE_CUPS |
|---|
| 52 |
#include <IMainView.h> |
|---|
| 53 |
#include <FindPter.h> |
|---|
| 54 |
#include <PagePter.h> |
|---|
| 55 |
#include <PreferencesPter.h> |
|---|
| 56 |
#if defined (HAVE_CUPS) |
|---|
| 57 |
#include <PrintPter.h> |
|---|
| 58 |
#endif // HAVE_CUPS |
|---|
| 59 |
#include <MainPter.h> |
|---|
| 60 |
|
|---|
| 61 |
#endif //!__E_PDF_VIEW_H__ |
|---|