#import "CalendarView.h" @implementation CalendarView #define isLeapYear(year) (((year % 4) == 0 && ((year % 100) != 0)) || (year % 400) == 0) static short numberOfDaysInMonth[] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; - (NSCalendarDate *) date { return date; } - (void) setDate: (NSCalendarDate *) newDate { int i, currentDay, currentMonth, currentYear; int daysInMonth, startDayOfWeek, day; NSCalendarDate *firstDayOfMonth; NSButtonCell *tempCell; ASSIGN(date, newDate); [yearLabel setStringValue: [date descriptionWithCalendarFormat: @"%Y"]]; currentMonth = [date monthOfYear]; [monthMatrix selectCellWithTag: currentMonth-1]; currentYear = [date yearOfCommonEra]; firstDayOfMonth = [NSCalendarDate dateWithYear: currentYear month: currentMonth day: 1 hour: 0 minute: 0 second: 0 timeZone: [NSTimeZone localTimeZone]]; daysInMonth = numberOfDaysInMonth[currentMonth - 1]; if ((currentMonth == 2) && (isLeapYear(currentYear))) daysInMonth++; startDayOfWeek = [firstDayOfMonth dayOfWeek]; day = 1; for (i = 0; i < 42; i++) { tempCell = [dayMatrix cellWithTag: i]; if (i < startDayOfWeek || i >= (daysInMonth + startDayOfWeek)) { [tempCell setEnabled: NO]; [tempCell setTitle: @""]; } else { [tempCell setEnabled: YES]; [tempCell setTitle: [NSString stringWithFormat: @"%d", day++]]; } } currentDay = [date dayOfMonth]; [dayMatrix selectCellWithTag: startDayOfWeek + currentDay - 1]; } - (id) initWithFrame: (NSRect) rect { int i, j, count=0; NSImage *rightArrow, *leftArrow; NSButtonCell *monthCell, *dayCell, *tempCell; NSArray *monthArray, *weekArray; [super initWithFrame: rect]; calendarBox = [[NSBox alloc] initWithFrame: NSMakeRect(0, 0, 240, 270)]; [calendarBox setBorderType: NSNoBorder]; [calendarBox setTitlePosition: NSNoTitle]; yearLabel = [[NSTextField alloc] initWithFrame: NSMakeRect(85, 220, 60, 20)]; [yearLabel setStringValue: @"This Year"]; [yearLabel setBezeled: NO]; [yearLabel setBackgroundColor: [NSColor windowBackgroundColor]]; [yearLabel setEditable: NO]; [yearLabel setSelectable: NO]; [yearLabel setAlignment: NSCenterTextAlignment]; leftArrow = [NSImage imageNamed: @"ArrowLeft.tiff"]; rightArrow = [NSImage imageNamed: @"ArrowRight.tiff"]; lastYearButton = [[NSButton alloc] initWithFrame: NSMakeRect(10, 220, 22, 22)]; [lastYearButton setImage: leftArrow]; [lastYearButton setImagePosition: NSImageOnly]; [lastYearButton setBordered: NO]; RELEASE(leftArrow); nextYearButton = [[NSButton alloc] initWithFrame: NSMakeRect(198, 220, 22, 22)]; [nextYearButton setImage: rightArrow]; [nextYearButton setImagePosition: NSImageOnly]; [nextYearButton setBordered: NO]; RELEASE(rightArrow); [lastYearButton setTarget: self]; [lastYearButton setAction: @selector(updateDate:)]; [nextYearButton setTarget: self]; [nextYearButton setAction: @selector(updateDate:)]; [calendarBox addSubview: yearLabel]; [calendarBox addSubview: lastYearButton]; [calendarBox addSubview: nextYearButton]; RELEASE(yearLabel); RELEASE(lastYearButton); RELEASE(nextYearButton); monthArray = [NSArray arrayWithObjects: @"Jan", @"Feb", @"Mar", @"Apr", @"May", @"Jun", @"Jul", @"Aug", @"Sep", @"Oct", @"Nov", @"Dec", nil]; monthCell = [[NSButtonCell alloc] initTextCell: @""]; [monthCell setBordered: NO]; [monthCell setShowsStateBy: NSOnOffButton]; [monthCell setAlignment: NSCenterTextAlignment]; monthMatrix = [[NSMatrix alloc] initWithFrame: NSMakeRect(10, 165, 210, 50) mode: NSRadioModeMatrix prototype: monthCell numberOfRows: 2 numberOfColumns: 6]; for (i = 0; i < 2; i++) for (j = 0; j < 6; j++) { tempCell = [monthMatrix cellAtRow: i column: j]; [tempCell setTag: count]; [tempCell setTitle: [monthArray objectAtIndex: count]]; count++; } RELEASE(monthCell); weekArray = [NSArray arrayWithObjects: @"Sun", @"Mon", @"Tue", @"Wed", @"Thr", @"Fri", @"Sat", nil]; dayCell = [[NSButtonCell alloc] initTextCell: @""]; [dayCell setBordered: NO]; [dayCell setShowsStateBy: NSOnOffButton]; [dayCell setAlignment: NSCenterTextAlignment]; dayMatrix = [[NSMatrix alloc] initWithFrame: NSMakeRect(10, 20, 210, 120) mode: NSRadioModeMatrix prototype: dayCell numberOfRows: 7 numberOfColumns: 7]; for (j = 0; j < 7; j++) { tempCell = [dayMatrix cellAtRow: 0 column: j]; [tempCell setTitle: [weekArray objectAtIndex: j]]; [tempCell setAlignment: NSCenterTextAlignment]; // [tempCell setSelectable: NO]; [tempCell setEnabled: NO]; } RELEASE(dayCell); count = 0; for (i = 1; i < 7; i++) for (j = 0; j < 7; j++) { [[dayMatrix cellAtRow: i column: j] setTag: count++]; } [monthMatrix setTarget: self]; [monthMatrix setAction: @selector(updateDate:)]; [dayMatrix setTarget: self]; [dayMatrix setAction: @selector(updateDate:)]; [calendarBox addSubview: monthMatrix]; [calendarBox addSubview: dayMatrix]; RELEASE(monthMatrix); RELEASE(dayMatrix); [self addSubview: calendarBox]; RELEASE(calendarBox); [self setDate: [NSCalendarDate new]]; return self; } - (void) updateDate: (id) sender { int i=0, j=0, k=0; NSCalendarDate *newDate; if (sender == lastYearButton) { i = -1; } else if (sender == nextYearButton) { i = 1; } else if (sender == monthMatrix) { j = [[[sender selectedCells] lastObject] tag] + 1 - [date monthOfYear]; } else if (sender == dayMatrix) { k = [[[[[sender selectedCells] lastObject] stringValue] stringByTrimmingTailSpaces] intValue] - [date dayOfMonth]; } newDate = [date addYear: i month: j day: k hour: 0 minute: 0 second: 0]; [self setDate: newDate]; [[NSNotificationCenter defaultCenter] postNotificationName: @"Day Changed" object: newDate]; } @end