KMPDFPrintManageWindowController.h 505 B

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