KMCoverButton.h 489 B

1234567891011121314151617181920212223242526
  1. //
  2. // KMCoverButton.h
  3. // PDF Reader
  4. //
  5. // Created by tangchao on 2022/2/24.
  6. // Copyright © 2022 Kdan Mobile. All rights reserved.
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef NS_ENUM(NSUInteger, KMCoverAction) {
  11. KMCoverActionEnter = 0,
  12. KMCoverActionMove,
  13. KMCoverActionExit
  14. };
  15. /** hover按钮 */
  16. @interface KMCoverButton : NSButton
  17. @property (nonatomic, copy) void(^coverAction)(KMCoverButton *button, KMCoverAction action);
  18. @end
  19. NS_ASSUME_NONNULL_END