home *** CD-ROM | disk | FTP | other *** search
/ MacWorld UK 2005 May / MW_UK_2005_05.iso / 16 iCal utilities / MenuCal.sit / MenuCal / MenuCal.app / Contents / Resources / CalendarCell.h < prev    next >
Encoding:
Text File  |  2005-01-11  |  640 b   |  34 lines

  1.  
  2. #import <Cocoa/Cocoa.h>
  3.  
  4. @interface CalendarCell : NSActionCell <NSCopying, NSCoding>
  5. {
  6.     NSCalendarDate*    mDate;
  7.     NSImage*                mBackgroundImage;
  8.     NSDictionary*        mNormalAttributes;
  9.     NSDictionary*        mHiliteAttributes;
  10.     NSDictionary*        mWeekDayAttributes;
  11.     int                    mDaysInMonth;
  12.     int                    mDays[ 42 ];
  13.     NSDictionary*        iCalItems;
  14.     NSColor *todayColor;
  15.     NSColor *iCalColor;
  16.     NSColor *selectedColor;
  17. }
  18.  
  19. - (void)setDate:(NSCalendarDate*)inDate;
  20. - (NSCalendarDate*)date;
  21.  
  22. - (void)setDay:(int)inDay;
  23. - (int)day;
  24.  
  25. - (void)setMonth:(int)inMonth;
  26. - (int)month;
  27.  
  28. - (void)setYear:(int)inYear;
  29. - (int)year;
  30.  
  31. - (void) setDataDays: (NSDictionary *) data;
  32.  
  33. @end
  34.