123456789101112131415161718192021 |
- //
- // KMPDFPrintManageWindowController.h
- // PDF Reader
- //
- // Created by 蒋志鹏 on 2018/6/19.
- // Copyright © 2018年 Kdan Mobile. All rights reserved.
- //
- #import <Cocoa/Cocoa.h>
- #import "PDFKit/PDFKit.h"
- @class PDFPage;
- typedef void(^printCallBack)(PDFDocument *printDocument);
- @interface KMPDFPrintManageWindowController : NSWindowController
- - (instancetype)initWithPDFDocument:(PDFDocument *)pdfDocument currentPage:(PDFPage *)currentpage completeHandler:(printCallBack)printHandler;
- @end
|