//
//  KMTableRowView.h
//  PDF Reader Pro Edition
//
//  Created by zhipeng jiang on 2020/11/25.
//

#import <Cocoa/Cocoa.h>

NS_ASSUME_NONNULL_BEGIN

@interface KMTableRowView : NSTableRowView

@property (nonatomic, assign) BOOL hasBottomLine;
@property (nonatomic, strong) NSColor *bottomLineColor;

@property (nonatomic, assign) NSEdgeInsets selectionInset;
@property (nonatomic, assign) CGFloat selectionRadius;
@property (nonatomic, copy) NSColor *(^selectionBackgroundColorBlock)(void);

@end

NS_ASSUME_NONNULL_END