CPDFListViewConfig.h 836 B

12345678910111213141516171819202122232425262728
  1. //
  2. // CPDFListViewConfig.h
  3. // ComPDFKit
  4. //
  5. // Copyright © 2014-2022 PDF Technologies, Inc. All Rights Reserved.
  6. //
  7. // THIS SOURCE CODE AND ANY ACCOMPANYING DOCUMENTATION ARE PROTECTED BY INTERNATIONAL COPYRIGHT LAW
  8. // AND MAY NOT BE RESOLD OR REDISTRIBUTED. USAGE IS BOUND TO THE ComPDFKit LICENSE AGREEMENT.
  9. // UNAUTHORIZED REPRODUCTION OR DISTRIBUTION IS SUBJECT TO CIVIL AND CRIMINAL PENALTIES.
  10. // This notice may not be removed from this file.
  11. //
  12. #import <Foundation/Foundation.h>
  13. #import <AppKit/AppKit.h>
  14. @interface CPDFListViewConfig : NSObject
  15. + (instancetype)defaultManager;
  16. @property (nonatomic,retain) NSNumber * annotationBorderOffset;
  17. @property (nonatomic,retain) NSColor * annotationBorderColor;
  18. @property (nonatomic,retain) NSColor * dragHoverColor;
  19. @property (nonatomic,assign) BOOL isSaveDefault;
  20. @end