typedef NS_ENUM(NSUInteger, NSBezelStyle) { NSBezelStyleRounded = 1, NSBezelStyleRegularSquare = 2, NSBezelStyleDisclosure = 5, NSBezelStyleShadowlessSquare = 6, NSBezelStyleCircular = 7, NSBezelStyleTexturedSquare = 8, NSBezelStyleHelpButton = 9, NSBezelStyleSmallSquare = 10, NSBezelStyleTexturedRounded = 11, NSBezelStyleRoundRect = 12, NSBezelStyleRecessed = 13, NSBezelStyleRoundedDisclosure = 14, NSBezelStyleInline API_AVAILABLE(macos(10.7)) = 15, };
@property NSBezelStyle bezelStyle;
@property (getter=isBordered) BOOL bordered;
@property (getter=isTransparent) BOOL transparent;
@property BOOL showsBorderOnlyWhileMouseInside;
@property (nullable, strong) NSImage *image;
@property (nullable, strong) NSImage *alternateImage;
typedef NS_ENUM(NSUInteger, NSCellImagePosition) { NSNoImage = 0, NSImageOnly = 1, NSImageLeft = 2, NSImageRight = 3, NSImageBelow = 4, NSImageAbove = 5, NSImageOverlaps = 6, NSImageLeading API_AVAILABLE(macos(10.12)) = 7, NSImageTrailing API_AVAILABLE(macos(10.12)) = 8 };
@property NSCellImagePosition imagePosition;
typedef NS_ENUM(NSUInteger, NSImageScaling) { NSImageScaleProportionallyDown = 0, NSImageScaleAxesIndependently, NSImageScaleNone, NSImageScaleProportionallyUpOrDown, NSScaleProportionally API_DEPRECATED("Use NSImageScaleProportionallyDown instead", macos(10.0,10.10)) = 0, NSScaleToFit API_DEPRECATED("Use NSImageScaleAxesIndependently instead", macos(10.0,10.10)), NSScaleNone API_DEPRECATED("Use NSImageScaleNone instead", macos(10.0,10.10)) } API_AVAILABLE(macos(10.5));
@property NSImageScaling imageScaling API_AVAILABLE(macos(10.5));s
@property BOOL imageHugsTitle API_AVAILABLE(macos(10.12));
@property (nullable, copy) NSColor *bezelColor API_AVAILABLE(macos(10.12.2));
@property (nullable, copy) NSColor *contentTintColor API_AVAILABLE(macos(10.14));
|