File: PDFPrintView.h

package info (click to toggle)
pdfkit.framework 0.8-2sarge4
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 4,236 kB
  • ctags: 4,866
  • sloc: cpp: 54,854; objc: 1,038; ansic: 821; makefile: 492; sh: 152
file content (48 lines) | stat: -rw-r--r-- 1,553 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
 * Copyright (C) 2004  Stefan Kleine Stegemann
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */

#ifndef _H_PDFPRINTVIEW
#define _H_PDFPRINTVIEW

#include <AppKit/NSView.h>
#include <PDFKit/PDFDocument.h>

/**
 * A view that could be used for printing PDF documents.
 * The view's implementation uses PDFKit to produce
 * postscript code that is optimized for printing.
 * 
 * Note that you cannot use this view to display PDF
 * documents on the screen.
 */
@interface PDFPrintView : NSView
{
   PDFDocument*  document;
   void*         psDevice;
}

/** Initialize the receiver for printing the content's of
 *  a PDF document. The document is retained by the receiver.
 *  This view does not need an initial frame  because it is
 *  optimized for printing and thus will detect it's 'size' when
 *  printed.  */
- (id) initWithDocument: (PDFDocument*)aDocument;

@end

#endif