home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / Apps / DevTools / COWS / Code / COWSExampleLibrary.h < prev    next >
Encoding:
Text File  |  1994-03-23  |  785 b   |  49 lines

  1. /*
  2.     Copyright (C) 1994 Sean Luke
  3.  
  4.     COWSExampleLibrary.h
  5.     Version 1.0
  6.     Sean Luke
  7.     
  8. */
  9.  
  10.  
  11.  
  12. #import <appkit/appkit.h>
  13. #import "COWSArgumentList.h"
  14. #import "COWSStringNode.h"
  15. #import "COWSLibrary.h"
  16. #import <stdio.h>
  17.  
  18. @interface COWSExampleLibrary:COWSLibrary <InterpreterToLibrary>
  19.  
  20. {
  21.     id scroll;
  22.     id check;
  23.     id radio;
  24.     id button;
  25.     id field;
  26.     id window;
  27. }
  28.  
  29. - loadLibrary:sender;
  30. - pauseCancelled:sender;
  31.  
  32. - scrollValue:arg_list;
  33. - setScrollValue:arg_list;
  34. - checkValue:arg_list;
  35. - setCheckValue:arg_list;
  36. - radioValue:arg_list;
  37. - setRadioValue:arg_list;
  38. - pressButton:arg_list;
  39. - setStringValue:arg_list;
  40. - stringValue:arg_list;
  41. - setWindowPosition:arg_list;
  42. - windowXPosition:arg_list;
  43. - windowYPosition:arg_list;
  44. - windowTitle:arg_list;
  45. - setWindowTitle:arg_list;
  46. - ping:arg_list;
  47.  
  48.  
  49. @end