KMPDFBookletWindowController.h 413 B

123456789101112131415161718
  1. //
  2. // KMPDFBookletWindowController.h
  3. // PDF Reader
  4. //
  5. // Created by 蒋志鹏 on 2018/5/22.
  6. // Copyright © 2018 Kdan Mobile. All rights reserved.
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. #import <Quartz/Quartz.h>
  10. @interface KMPDFBookletWindowController : NSWindowController
  11. - (id)initWithPDFFilePath:(NSString *)filePath password:(nullable NSString *)password;
  12. - (id)initWithDocument:(PDFDocument *)pdfDocument;
  13. @end