ImageAndTextCell.h
上传用户:center1979
上传日期:2022-07-26
资源大小:50633k
文件大小:0k
源码类别:

OpenGL

开发平台:

Visual C++

  1. //
  2. //  ImageAndTextCell.h
  3. //
  4. //  Copyright (c) 2001 Apple. All rights reserved.
  5. //
  6. @interface ImageAndTextCell : NSTextFieldCell {
  7. @private
  8.     NSImage *image;
  9. }
  10. - (void)setImage:(NSImage *)anImage;
  11. - (NSImage *)image;
  12. - (void)drawWithFrame:(NSRect)cellFrame inView:(NSView *)controlView;
  13. - (NSSize)cellSize;
  14. @end