home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / Connectivity / GateKeeper-2.1 / GateDocEditor.h < prev    next >
Encoding:
Text File  |  1997-06-20  |  1.1 KB  |  43 lines

  1. //*****************************************************************************
  2. //
  3. //    GateDocEditor.h.  
  4. //        
  5. //        Create, edit and link using a Gate doc 
  6. // 
  7. //            by    Felipe A. Rodriguez        
  8. //
  9. //    This code is supplied "as is" the author makes no warranty as to its 
  10. //    suitability for any purpose.  This code is free and may be distributed 
  11. //    in accordance with the terms of the:
  12. //        
  13. //            GNU GENERAL PUBLIC LICENSE
  14. //            Version 2, June 1991
  15. //            copyright (C) 1989, 1991 Free Software Foundation, Inc.
  16. //             675 Mass Ave, Cambridge, MA 02139, USA
  17. //
  18. //*****************************************************************************
  19.  
  20. #import <appkit/appkit.h>
  21.  
  22.  
  23.  
  24. @interface GateDocEditor:Object
  25. {
  26.     char Path[MAXPATHLEN + 1];        // generic buffer to hold paths
  27.     id  theOptionsEditor;
  28.     id    docName;                    // doc name shown in panel
  29.     id  docPath;                    // path shown in panel
  30.     id    theSavePanel; 
  31.     id    theOpenPanel;   
  32.     id    GDEImageView;   
  33. }
  34.  
  35. - newDoc:sender;
  36. - openDoc:sender;
  37. - linkDoc:sender;
  38. - editGateDoc:(const char *)aGateDoc;
  39. - addDefaultFiles:(const char *)nameOfFile;
  40.  
  41.  
  42. @end
  43.