ImageAndTextCell.h
author snej@snej-mbp.mtv.corp.google.com
Tue Apr 07 11:13:25 2009 -0700 (2009-04-07)
changeset 23 a910102a1c9d
permissions -rw-r--r--
* Added MYReturnError.
* Better iPhone support in ExceptionUtils.
* Make sure "All Tests Passed/Failed" message is always logged.
     1 #import <Cocoa/Cocoa.h>
     2 
     3 /** Subclass of NSTextFieldCell which can display text and an image simultaneously.
     4     Taken directly from Apple sample code. */
     5 @interface ImageAndTextCell : NSTextFieldCell
     6 {
     7     @private
     8     NSImage *image;
     9 }
    10 
    11 - (void)setImage:(NSImage *)anImage;
    12 - (NSImage *)image;
    13 
    14 - (void)drawWithFrame:(NSRect)cellFrame inView:(NSView *)controlView;
    15 - (NSSize)cellSize;
    16 
    17 @end