home *** CD-ROM | disk | FTP | other *** search
-
- #import <Cocoa/Cocoa.h>
-
- @interface CalendarCell : NSActionCell <NSCopying, NSCoding>
- {
- NSCalendarDate* mDate;
- NSImage* mBackgroundImage;
- NSDictionary* mNormalAttributes;
- NSDictionary* mHiliteAttributes;
- NSDictionary* mWeekDayAttributes;
- int mDaysInMonth;
- int mDays[ 42 ];
- NSDictionary* iCalItems;
- NSColor *todayColor;
- NSColor *iCalColor;
- NSColor *selectedColor;
- }
-
- - (void)setDate:(NSCalendarDate*)inDate;
- - (NSCalendarDate*)date;
-
- - (void)setDay:(int)inDay;
- - (int)day;
-
- - (void)setMonth:(int)inMonth;
- - (int)month;
-
- - (void)setYear:(int)inYear;
- - (int)year;
-
- - (void) setDataDays: (NSDictionary *) data;
-
- @end
-