home *** CD-ROM | disk | FTP | other *** search
/ NeXT 3rd Party Products 1993 / NEXT_3rd_party_products_93.iso / Xanthus / Graphity_Demo / API / Demo3 / Graphity_APIListener.h < prev    next >
Text File  |  1993-05-07  |  2KB  |  80 lines

  1. #import <appkit/Listener.h>
  2. @interface Graphity_APIListener : Listener
  3. {}
  4. -(int)API_setValueAtRow : (int) row
  5.     serie : (int) serie
  6.     to : (double) v
  7.     for : (char *) name
  8.     in : (char *) doc
  9.     display : (int) display
  10.     error : (int *) error;
  11. -(int)API_setLabelAt : (int) row
  12.     to : (char *) label
  13.     for : (char *) name
  14.     in : (char *) doc
  15.     display : (int) display
  16.     error : (int *) error;
  17. -(int)API_setSerieTitleFor : (int) serie
  18.     to : (char *) label
  19.     for : (char *) name
  20.     in : (char *) doc
  21.     display : (int) display
  22.     error : (int *) error;
  23. -(int)API_redisplay : (char *) name
  24.     in : (char *) doc
  25.     error : (int *) error;
  26. -(int)API_recalculate : (char *) name
  27.     in : (char *) doc
  28.     error : (int *) error;
  29. -(int)API_newDocument : (char *) name
  30.     error : (int *) error;
  31. -(int)API_saveDocument : (char *) name
  32.     type : (int) type
  33.     to : (char *) path
  34.     error : (int *) error;
  35. -(int)API_shapeDocument : (char *) name
  36.     x : (double) x
  37.     y : (double) y
  38.     width : (double) w
  39.     height : (double) h
  40.     error : (int *) error;
  41. -(int)API_closeDocument : (char *) name
  42.     warn : (int) warn
  43.     error : (int *) error;
  44. -(int)API_openDocument : (char *) path
  45.     type : (int) type
  46.     error : (int *) error;
  47. -(int)API_addGraph : (int) type
  48.     with : (char *) name
  49.     in : (char *) doc
  50.     error : (int *) error;
  51. -(int)API_addSerie : (char *) title
  52.     for : (char *) name
  53.     in : (char *) doc
  54.     error : (int *) error;
  55. -(int)API_addRow : (char *) label
  56.     for : (char *) name
  57.     in : (char *) doc
  58.     error : (int *) error;
  59. -(int)API_shapeGraph : (char *) name
  60.     in : (char *) doc
  61.     x : (double) x
  62.     y : (double) y
  63.     width : (double) w
  64.     height : (double) h
  65.     error : (int *) error;
  66. -(int)API_setGraphTypeFor : (char *) name
  67.     in : (char *) doc
  68.     to : (int) type
  69.     error : (int *) error;
  70. -(int)API_readDataFrom : (char *) file
  71.     graph : (char *) name
  72.     in : (char *) docname
  73.     error : (int *) error;
  74. -(int)API_getGraphSize : (char *) name
  75.     in : (char *) docname
  76.     rowCount : (int *) rowCount
  77.     serieCount : (int *) serieCount
  78.     error : (int *) error;
  79. @end
  80.