@interface NSBox : NSView
|
// Accessor Methods |
- (void)setTitle:(NSString *)aString;
|
- (NSString *)title;
|
- (void)setBorderType:(NSBorderType)aType;
|
- (NSBorderType)borderType;
|
- (void)setBoxType:(NSBoxType)boxType;
|
- (NSBoxType)boxType;
|
- (void)setTitlePosition:(NSTitlePosition)aPosition;
|
- (NSTitlePosition)titlePosition;
|
- (void)setFrameFromContentFrame:(NSRect)contentFrame;
|
- (void)setTitleFont:(NSFont *)fontObj;
|
- (NSFont *)titleFont;
|
- (void)setContentView:(NSView *)aView;
|
- (id)contentView;
|
- (void)setContentViewMargins:(NSSize)offsetSize;
|
- (NSSize)contentViewMargins;
|
// Instance Methods |
- (NSRect)borderRect;
|
- (void)sizeToFit;
|
- (id)titleCell;
|
- (NSRect)titleRect;
|