mirror of
https://github.com/darlinghq/darling-rik-theme.git
synced 2024-11-23 03:59:45 +00:00
17 lines
316 B
Objective-C
17 lines
316 B
Objective-C
#import <AppKit/NSButtonCell.h>
|
|
|
|
typedef enum {
|
|
RikScrollerArrowLeft,
|
|
RikScrollerArrowRight,
|
|
RikScrollerArrowUp,
|
|
RikScrollerArrowDown
|
|
} RikScrollerArrowType;
|
|
|
|
@interface RikScrollerArrowCell : NSButtonCell
|
|
{
|
|
RikScrollerArrowType scroller_arrow_type;
|
|
}
|
|
-(void) setArrowType: (RikScrollerArrowType) t;
|
|
@end
|
|
|