home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP Advantage / NeXTstep_Advantage.img / YourCallDemo / CallReviewer.h < prev    next >
Text File  |  1993-03-30  |  642b  |  21 lines

  1. #import "CallController.h"
  2.  
  3. @interface CallReviewer : CallController
  4.  
  5. {
  6.     id callIndexField; /* the TextField containing index of current call */ 
  7.     id totalCallsField; /* the TextField containing total number of calls */ 
  8.     id ofButton; /* a Button used to display the word "of" */ 
  9.     id reviewCallsPanel; /* Panel used to display the call reviewer */
  10.     NXHashState hashState; /* NXHashState used to iterate through the calls */
  11.     int indexOfCall; /* stores index of the current call during iteration */
  12. }
  13.  
  14. - awakeFromNib;
  15. - showCall:(CallRecord *)theRecord;
  16. - showFirstCall:sender;
  17. - showNextCall:sender;
  18. - resetReviewer;
  19.  
  20. @end
  21.