home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / DEV.Z / ToDoInspector.h < prev    next >
Encoding:
Text File  |  1996-07-30  |  956 b   |  41 lines

  1. /*
  2.   You may freely copy, distribute, and reuse the code in this example.
  3.   NeXT disclaims any warranty of any kind, expressed or implied, as to its
  4.   fitness for any particular use.
  5. */
  6.  
  7. #import <AppKit/AppKit.h>
  8. #import "ToDoItem.h"
  9. #import "ToDoDoc.h"
  10.  
  11. @interface ToDoInspector : NSObject
  12. {
  13.     ToDoItem *currentItem;
  14.  
  15.     id dummyView;
  16.     id inspDate;
  17.     id inspectorViews;
  18.     id inspItem;
  19.     id inspNotes;
  20.     id inspNotifAMPM;
  21.     id inspNotifHour;
  22.     id inspNotifMinute;
  23.     id inspNotifOtherHours;
  24.     id inspNotifSwitchMatrix;
  25.     id inspPopUp;
  26.     id inspSchedComplete;
  27.     id inspSchedDate;
  28.     id inspSchedMatrix;
  29.     id notesView;
  30.     id notifView;
  31.     id reschedView;
  32. }
  33. - (void)newInspectorView:(id)sender;
  34. - (void)switchChecked:(id)sender;
  35. - (void)resetNotifSwitch;
  36. - (void)setCurrentItem:(ToDoItem *)newItem;
  37. - (ToDoItem *)currentItem;
  38. - (void)updateInspector:(ToDoItem *)item;
  39. - (void)currentItemChanged:(NSNotification *)notif;
  40. @end
  41.