home *** CD-ROM | disk | FTP | other *** search
- #import "CalendarCenterObject.h"
-
- @implementation CalendarCenterObject
-
-
- - (void)applicationDidFinishLaunching:(NSNotification *)notification;
- // This method is executed right after the application was initilized but
- // before the application receives it's first event.
- {
-
- [NSBundle loadNibNamed:@"Calendar.nib" owner:self]; // load nib
-
- }
-
-
- - (void)InfoPanel:(id)sender
- {
-
- [NSBundle loadNibNamed:@"InfoPanel.nib" owner:self]; // load nib
-
- }
-
- - (void)IntroAndHelp:(id)sender
- {
-
- [NSBundle loadNibNamed:@"HelpIntro.nib" owner:self]; // load nib
-
- }
-
- - (void)MoreInfo:(id)sender
- {
-
- [NSBundle loadNibNamed:@"MoreInfo.nib" owner:self]; // load nib
-
- }
-
- - (void)NewCalendar:(id)sender
- {
-
- [NSBundle loadNibNamed:@"Calendar.nib" owner:self]; // load nib
-
- }
-
- - (void)PrintCalendar:(id)sender
- {
- }
-
- @end
-