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