unison

Fork of Unison, a bi-directional file synchronization tool
git clone git://git.laack.co/unison.git
Log | Files | Refs | README | LICENSE

ImageAndTextCell.h (349B)


      1 //
      2 //  ImageAndTextCell.h
      3 //
      4 //  Copyright (c) 2001-2002, Apple. All rights reserved.
      5 //
      6 
      7 #import <Cocoa/Cocoa.h>
      8 
      9 @interface ImageAndTextCell : NSTextFieldCell {
     10 @private
     11     NSImage	*image;
     12 }
     13 
     14 - (void)setImage:(NSImage *)anImage;
     15 - (NSImage *)image;
     16 
     17 - (void)drawWithFrame:(NSRect)cellFrame inView:(NSView *)controlView;
     18 - (NSSize)cellSize;
     19 
     20 @end