summaryrefslogtreecommitdiffstats
path: root/Liaison/ImageAndTextCell.h
diff options
context:
space:
mode:
authorBrian Cully <bjc@kublai.com>2008-04-14 21:45:08 -0400
committerBrian Cully <github.20.shmit@spamgourmet.com>2008-04-14 21:45:08 -0400
commit17349a5e426dc7acf1216a3767a22f69974cbca0 (patch)
tree20029d02f07ab6257cccec36d34fb312f796e1d1 /Liaison/ImageAndTextCell.h
downloadliaison-17349a5e426dc7acf1216a3767a22f69974cbca0.tar.gz
liaison-17349a5e426dc7acf1216a3767a22f69974cbca0.zip
Initial commit.
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