summaryrefslogtreecommitdiffstats
path: root/Liaison/ImageAndTextCell.h
diff options
context:
space:
mode:
Diffstat (limited to 'Liaison/ImageAndTextCell.h')
-rw-r--r--Liaison/ImageAndTextCell.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/Liaison/ImageAndTextCell.h b/Liaison/ImageAndTextCell.h
new file mode 100644
index 0000000..5c39369
--- /dev/null
+++ b/Liaison/ImageAndTextCell.h
@@ -0,0 +1,20 @@
+//
+// ImageAndTextCell.h
+//
+// Copyright (c) 2001-2002, Apple. All rights reserved.
+//
+
+@interface ImageAndTextCell : NSTextFieldCell
+{
+@private
+ NSImage *image;
+}
+
+- (void)drawWithFrame: (NSRect)cellFrame inView: (NSView *)controlView;
+- (NSSize)cellSize;
+@end
+
+@interface ImageAndTextCell (Accessors)
+- (NSImage *)image;
+- (void)setImage: (NSImage *)anImage;
+@end \ No newline at end of file