home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2 / Openstep-4.2-Intel-Developer.iso / NextLibrary / Frameworks / AppKit.framework / Versions / B / Headers / NSForm.h < prev    next >
Text File  |  1996-10-17  |  813b  |  32 lines

  1. /*
  2.     NSForm.h
  3.     Application Kit
  4.     Copyright (c) 1994-1996, NeXT Software, Inc.
  5.     All rights reserved.
  6. */
  7.  
  8. #import <AppKit/NSMatrix.h>
  9.  
  10. @class NSFormCell;
  11.  
  12. @interface  NSForm : NSMatrix
  13.  
  14. - (int)indexOfSelectedItem;
  15. - (void)setEntryWidth:(float)width;
  16. - (void)setInterlineSpacing:(float)spacing;
  17. - (void)setBordered:(BOOL)flag;
  18. - (void)setBezeled:(BOOL)flag;
  19. - (void)setTitleAlignment:(NSTextAlignment)mode;
  20. - (void)setTextAlignment:(int)mode;
  21. - (void)setTitleFont:(NSFont *)fontObj;
  22. - (void)setTextFont:(NSFont *)fontObj;
  23. - (id)cellAtIndex:(int)index;
  24. - (void)drawCellAtIndex:(int)index;
  25. - (NSFormCell *)addEntry:(NSString *)title;
  26. - (NSFormCell *)insertEntry:(NSString *)title atIndex:(int)index;
  27. - (void)removeEntryAtIndex:(int)index;
  28. - (int)indexOfCellWithTag:(int)aTag;
  29. - (void)selectTextAtIndex:(int)index;
  30.  
  31. @end
  32.