root/trunk/src/epdfview.h

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 // ePDFView - A lightweight PDF Viewer.
2 // Copyright (C) 2006 Emma's Software.
3 //
4 // This program is free software; you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation; either version 2 of the License, or
7 // (at your option) any later version.
8 //
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 // GNU General Public License for more details.
13 //
14 // You should have received a copy of the GNU General Public License
15 // along with this program; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
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__
Note: See TracBrowser for help on using the browser.