home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Programming / GDBbundle-1.0-MIS / src / TextEdit / LineAndCharacterRange.h < prev    next >
Encoding:
Text File  |  1997-03-29  |  429 b   |  27 lines

  1. /* LineAndCharacterRange.h created by ovidiu on Sat 29-Mar-1997 */
  2.  
  3. #import <Foundation/NSObject.h>
  4.  
  5. @interface LineAndCharacterRange : NSObject
  6. {
  7.     id lineCharacterMatrix;
  8.     id autoUpdateButton;
  9.     id rangeField;
  10.  
  11.     BOOL useLineRange;
  12.     BOOL autoupdate;
  13. }
  14.  
  15. + sharedInstance;
  16.  
  17. - (void)select:sender;
  18. - (void)showPanel;
  19. - (void)buttonsChanged:sender;
  20.  
  21. - (void)updateInfo;
  22.  
  23. - (BOOL)useLineRange;
  24. - (BOOL)autoupdate;
  25.  
  26. @end
  27.