home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.1 (Developer) [x86] / NeXT Step 3.1 Intel dev.cdr.dmg / NextDeveloper / Examples / IndexingKit / ToDoList / ListController.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-02-16  |  885 b   |  39 lines

  1. /*
  2. ListController.h - Copyright (c) 1992 NeXT Computer, Inc.
  3.  
  4. You may freely copy, distribute and reuse the code in this example.
  5. NeXT Computer, Inc. disclaims any warranty of any kind, expressed or implied, 
  6. as to its fitness for any particular use.
  7. */
  8.  
  9. #import <appkit/appkit.h>
  10.  
  11. @interface ListController:Object
  12. {
  13.     id    commentVector;
  14.     id    doneVector;
  15.     id    priorityVector;
  16.     id    tableView;
  17.     id  doneObj;
  18.     id    window;
  19.     id _theStore;
  20.     id _records;
  21.     unsigned _theHandle;
  22.     char *_theDate;
  23.     id dailyBread;
  24. }
  25.  
  26. - initForDateString:(const char *)theDate andRecordManager:theRM;
  27. - windowWillClose:sender;
  28. - orderUp:sender;
  29. - saveTheRecord:sender;
  30. - (char *)theDate;
  31. - finishItem:sender;
  32.  
  33. - (unsigned int)rowCount;
  34. - getValueFor:identifier at:(unsigned int) aPosition into:aValue;
  35. - setValueFor:identifier at:(unsigned int) aPosition from:aValue;
  36. - pullUndoneForward:sender;
  37.  
  38. @end
  39.