KMUnlockAlertViewController.h 443 B

12345678910111213141516171819202122232425
  1. //
  2. // KMUnlockAlertViewController.h
  3. // PDF Reader Pro Edition
  4. //
  5. // Created by Niehaoyu on 2023/4/3.
  6. //
  7. #import <Cocoa/Cocoa.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface KMUnlockAlertViewController : NSViewController
  10. @property (nonatomic,copy) void (^callback) (NSInteger index);
  11. @property (nonatomic,copy) void (^mouseEventCall) (BOOL mouseEnter);
  12. - (void)addtrackingAreaInfo;
  13. - (void)removeTrackingAreaInfo;
  14. @end
  15. NS_ASSUME_NONNULL_END