home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / Apps / DevTools / eText5 / Source / NewXTeXT / XText0.9beta2 / XTDemo.h < prev    next >
Encoding:
Text File  |  1995-07-28  |  791 b   |  42 lines

  1. #import <string.h>
  2. #import <stdio.h>
  3. #import <stdlib.h>
  4.  
  5. #import <bsd/sys/param.h>
  6. #import <appkit/appkit.h>
  7. #import <objc/Object.h>
  8.  
  9. #import "XText.subproj/XText.h"
  10.  
  11. /*    
  12.     The xtext instance variable is actually initially set to the XTScroller
  13.     containing the XText (since that's the best IB can do); the appDidInit
  14.     method adjusts it to point at the XText directly.
  15. */
  16.  
  17. @interface XTDemo:Object
  18. {
  19.     id demoText;
  20.     id demoAction;
  21.     id fieldText;
  22.     id fieldAction;
  23.     id cmdField;
  24.     id comField;
  25.     id loadButton;
  26.     
  27.     char fullName[MAXPATHLEN];
  28.     char titleString[MAXPATHLEN+20];
  29.     
  30. }
  31.  
  32. - appDidInit:sender;
  33. - windowWillReturnFieldEditor:sender toObject:client;
  34.  
  35. - applyBinding:sender;
  36. - insertKey:sender;
  37. - clearBindings:sender;
  38. - openFile:sender;
  39. - saveBinding:sender;
  40. - loadBindings:sender;
  41. @end
  42.