home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / Apps / Utilities / Unix / Defaults / Source / Defaults.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-02-16  |  2.2 KB  |  51 lines

  1. /*--------------------------------------------------------------------*/
  2. /*                                                                    */
  3. /*                         DISCLAIMER NOTICE                          */
  4. /*                                                                    */
  5. /* This document and/or  portions of the material  and data furnished */
  6. /* herewith, was developed under sponsorship of the U.S.  Government. */
  7. /* Neither the  U.S.  nor  the U.S.D.O.E.,   nor the  Leland Stanford */
  8. /* Junior  University,  nor  their employees,   nor their  respective */
  9. /* contractors,   subcontractors,   or their  employees,   makes  any */
  10. /* warranty,   express  or  implied,  or  assumes  any  liability  or */
  11. /* responsibility for  accuracy,  completeness  or usefulness  of any */
  12. /* information,   apparatus,   product  or   process  disclosed,   or */
  13. /* represents that its use will  not infringe privately-owned rights. */
  14. /* Mention of any product, its manufacturer,  or suppliers shall not, */
  15. /* nor is it intended to, imply approval, disapproval, or fitness for */
  16. /* any particular  use.   The U.S.  and  the University at  all times */
  17. /* retain  the right  to use  and  disseminate same  for any  purpose */
  18. /* whatsoever.                                                        */
  19. /*                                                                    */
  20. /*--------------------------------------------------------------------*/
  21. /*                                                                    */
  22. /* Copyright (C)  1990  The Board of Trustees of  The Leland Stanford */
  23. /* Junior University.  All Rights Reserved.                           */
  24. /*                                                                    */
  25. /*--------------------------------------------------------------------*/
  26. /* Written by Paul Kunz, pfkeb@ebnextk.slac.stanford.edu               */
  27.  
  28. #import <objc/Object.h>
  29.  
  30. @interface Defaults:Object
  31. {
  32.     id    terminalPanel;
  33.     id    terminalForm;
  34.     id  shellPanel;
  35.     id  shellForm;
  36.     char *theApp;
  37.     id  thePanel;
  38.     id    aForm;
  39.     char **theParms;
  40. }
  41. - setTerminalPanel:anObject;
  42. - setTerminalForm:anObject;
  43. - setShellPanel:anObject;
  44. - setShellForm:anObject;
  45. - menuTerminal:sender;
  46. - menuShell:sender;
  47. - getDefaults;
  48. - ok:sender;
  49. - cancel:sender;
  50. @end
  51.