KMTableRowView.h 523 B

1234567891011121314151617181920212223
  1. //
  2. // KMTableRowView.h
  3. // PDF Reader Pro Edition
  4. //
  5. // Created by zhipeng jiang on 2020/11/25.
  6. //
  7. #import <Cocoa/Cocoa.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface KMTableRowView : NSTableRowView
  10. @property (nonatomic, assign) BOOL hasBottomLine;
  11. @property (nonatomic, strong) NSColor *bottomLineColor;
  12. @property (nonatomic, assign) NSEdgeInsets selectionInset;
  13. @property (nonatomic, assign) CGFloat selectionRadius;
  14. @property (nonatomic, copy) NSColor *(^selectionBackgroundColorBlock)(void);
  15. @end
  16. NS_ASSUME_NONNULL_END