home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / SoundAndMusic / Hyperupic / Hyperupic.app / TextView.h < prev    next >
Text File  |  1992-08-10  |  368b  |  22 lines

  1.  
  2. #import <appkit/ScrollView.h>
  3. #import <appkit/Text.h>
  4.  
  5. @interface TextView:ScrollView 
  6. {
  7.     id        theText,
  8.         textWindow;
  9. }
  10.  
  11. - initFrame:(const NXRect *)frameRect;
  12. - makeEnclosingWindow:(const NXRect *)rect;
  13. - newText:(const NXRect *)frameRect;
  14. - (int) textLength;
  15. - replaceSel: (char *) words;
  16. - setSel: (int) alen : (int) blen;
  17. - setTitle: (char *) theTitle;
  18.  
  19. @end
  20.  
  21.  
  22.