diff options
Diffstat (limited to 'QSFoundation.framework/Versions/A/PrivateHeaders/QSImageAndTextCell.h')
| -rw-r--r-- | QSFoundation.framework/Versions/A/PrivateHeaders/QSImageAndTextCell.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/QSFoundation.framework/Versions/A/PrivateHeaders/QSImageAndTextCell.h b/QSFoundation.framework/Versions/A/PrivateHeaders/QSImageAndTextCell.h new file mode 100644 index 0000000..dc58a83 --- /dev/null +++ b/QSFoundation.framework/Versions/A/PrivateHeaders/QSImageAndTextCell.h @@ -0,0 +1,25 @@ +// +// QSImageAndTextCell.h +// +// Copyright (c) 2001 Apple. All rights reserved. +// + +#import <Cocoa/Cocoa.h> + +@interface QSImageAndTextCell : NSTextFieldCell { + BOOL editing; + @private + NSImage *image; + NSSize imageSize; +} + +- (void)setImage:(NSImage *)anImage; +- (NSImage *)image; +- (float)imageWidthForFrame:(NSRect)frame; +- (void)drawWithFrame:(NSRect)cellFrame inView:(NSView *)controlView; +- (NSSize)cellSize; +- (NSRect)textRectForFrame:(NSRect)frame; +- (NSSize) imageSize; +- (void) setImageSize: (NSSize) newImageSize; + +@end
\ No newline at end of file |