home *** CD-ROM | disk | FTP | other *** search
/ Openstep 4.2 (Developer) / Openstep Developer 4.2.iso / NextDeveloper / OpenStepConversion / IntermediateFrameworks5 / AppKit.framework / Headers / NSForm.h < prev    next >
Encoding:
Text File  |  1996-01-23  |  890 b   |  41 lines

  1. /*
  2.     Form.h
  3.     Application Kit, Release 2.0
  4.     Copyright (c) 1988, 1989, 1990, NeXT, Inc.  All rights reserved. 
  5. */
  6.  
  7. #import "NSMatrix.h"
  8.  
  9. @interface NSForm : NSMatrix
  10. {
  11. }
  12.  
  13. + setCellClass:factoryId;
  14.  
  15. - initWithFrame:(NSRect)frameRect;
  16.  
  17. - calcSize;
  18. - setFrameSize:(NSSize)_newSize;
  19. - sizeToFit;
  20. - (int)indexOfSelectedItem;
  21. - setEntryWidth:(float)width;
  22. - setInterline:(float)spacing;
  23. - setBordered:(BOOL)flag;
  24. - setBezeled:(BOOL)flag;
  25. - setTitleAlignment:(int)mode;
  26. - setTextAlignment:(int)mode;
  27. - setFont:fontObj;
  28. - setTitleFont:fontObj;
  29. - setTextFont:fontObj;
  30. - cellAtIndex:(int)index;
  31. - drawCellAtIndex:(int)index;
  32. - (NSString *)titleAtIndex:(int)index;
  33. - setTitle:(NSString *)aString atIndex:(int)index;
  34. - addEntry:(NSString *)title;
  35. - insertEntry:(NSString *)title atIndex:(int)index;
  36. - removeEntryAtIndex:(int)index;
  37. - (int)findIndexWithTag:(int)aTag;
  38. - selectTextAtIndex:(int)index;
  39.  
  40. @end
  41.