darling-rik-theme/RikScrollerArrowCell.h

17 lines
316 B
C
Raw Permalink Normal View History

2013-12-28 23:30:12 +00:00
#import <AppKit/NSButtonCell.h>
typedef enum {
RikScrollerArrowLeft,
RikScrollerArrowRight,
RikScrollerArrowUp,
RikScrollerArrowDown
} RikScrollerArrowType;
@interface RikScrollerArrowCell : NSButtonCell
{
RikScrollerArrowType scroller_arrow_type;
}
-(void) setArrowType: (RikScrollerArrowType) t;
@end