1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
/* emacs buffer mode hint -*- objc -*- */
#import <AppKit/AppKit.h>
#import "ConfigManager.h"
#import "StoreManager.h"
#import "AppointmentView.h"
#import "Date.h"
@interface WeekView : NSView
{
IBOutlet id delegate;
int weekNumber;
int year;
Date *_date;
id _dataSource;
}
- (void)selectAppointmentView:(AppointmentView *)aptv;
- (id)delegate;
- (void)setDate:(Date *)date;
- (id)dataSource;
- (void)setDataSource:(id)dataSource;
- (void)dataChanged:(NSNotification *)not;
- (void)reloadData;
@end
|