home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Examples / AppKit / ToDo / ToDoInspector.h < prev    next >
Text File  |  1996-02-12  |  769b  |  35 lines

  1. #import <AppKit/AppKit.h>
  2. #import "ToDoItem.h"
  3. #import "ToDoDoc.h"
  4.  
  5. @interface ToDoInspector : NSObject
  6. {
  7.     ToDoItem *currentItem;
  8.  
  9.     id dummyView;
  10.     id inspDate;
  11.     id inspectorViews;
  12.     id inspItem;
  13.     id inspNotes;
  14.     id inspNotifAMPM;
  15.     id inspNotifHour;
  16.     id inspNotifMinute;
  17.     id inspNotifOtherHours;
  18.     id inspNotifSwitchMatrix;
  19.     id inspPopUp;
  20.     id inspSchedComplete;
  21.     id inspSchedDate;
  22.     id inspSchedMatrix;
  23.     id notesView;
  24.     id notifView;
  25.     id reschedView;
  26. }
  27. - (void)newInspectorView:(id)sender;
  28. - (void)switchChecked:(id)sender;
  29. - (void)resetNotifSwitch;
  30. - (void)setCurrentItem:(ToDoItem *)newItem;
  31. - (ToDoItem *)currentItem;
  32. - (void)updateInspector:(ToDoItem *)item;
  33. - (void)currentItemChanged:(NSNotification *)notif;
  34. @end
  35.