home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / OpenStepConversion / IntermediateFrameworks3 / AppKit.framework / Headers / NSFormCell.h < prev    next >
Text File  |  1994-09-29  |  962b  |  37 lines

  1. /*
  2.     FormCell.h
  3.     Application Kit, Release 2.0
  4.     Copyright (c) 1988, 1989, 1990, NeXT, Inc.  All rights reserved. 
  5. */
  6.  
  7. #import "NSActionCell.h"
  8.  
  9. @interface NSFormCell : NSActionCell
  10. {
  11.     float             titleWidth;
  12.     id                  titleCell;
  13.     float             titleEndPoint;
  14.     unsigned int        _reservedFCint1;
  15. }
  16.  
  17. - initTextCell:(NSString *)aString;
  18.  
  19. - (float)titleWidth:(NSSize)aSize;
  20. - (float)titleWidth;
  21. - setTitleWidth:(float)width;
  22. - (NSString *)title;
  23. - setTitle:(NSString *)aString;
  24. - titleFont;
  25. - setTitleFont:fontObj;
  26. - (int)titleAlignment;
  27. - setTitleAlignment:(int)mode;
  28. - setEnabled:(BOOL)flag;
  29. - (BOOL)isOpaque;
  30. - (NSSize)cellSizeForBounds:(NSRect)aRect;
  31. - drawInside:(NSRect)cellFrame inView:controlView;
  32. - drawSelf:(NSRect)cellFrame inView:controlView;
  33. - (BOOL)trackMouse:(NSEvent *)event inRect:(NSRect)aRect ofView:controlView untilMouseUp:(BOOL)untilMouseUp;
  34. - resetCursorRect:(NSRect)visibleCellFrame inView:controlView;
  35.  
  36. @end
  37.