home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / OPENSTEP / Utilities / CalendarCenter-4.2-MIS / CalendarCenterObject.m < prev    next >
Encoding:
Text File  |  1997-06-17  |  796 b   |  49 lines

  1. #import "CalendarCenterObject.h"
  2.  
  3. @implementation CalendarCenterObject
  4.  
  5.  
  6. - (void)applicationDidFinishLaunching:(NSNotification *)notification;
  7. // This method is executed right after the application was initilized but
  8. // before the application receives it's first event.
  9. {
  10.  
  11.     [NSBundle loadNibNamed:@"Calendar.nib" owner:self]; // load nib
  12.  
  13. }
  14.  
  15.  
  16. - (void)InfoPanel:(id)sender
  17. {
  18.  
  19.     [NSBundle loadNibNamed:@"InfoPanel.nib" owner:self]; // load nib
  20.  
  21. }
  22.  
  23. - (void)IntroAndHelp:(id)sender
  24. {
  25.  
  26.     [NSBundle loadNibNamed:@"HelpIntro.nib" owner:self]; // load nib
  27.  
  28. }
  29.  
  30. - (void)MoreInfo:(id)sender
  31. {
  32.  
  33.     [NSBundle loadNibNamed:@"MoreInfo.nib" owner:self]; // load nib
  34.  
  35. }
  36.  
  37. - (void)NewCalendar:(id)sender
  38. {
  39.  
  40.     [NSBundle loadNibNamed:@"Calendar.nib" owner:self]; // load nib
  41.  
  42. }
  43.  
  44. - (void)PrintCalendar:(id)sender
  45. {
  46. }
  47.  
  48. @end
  49.