The multiColumns view

This commit is contained in:
Alexandre Cloutier
2014-06-20 13:16:55 -04:00
parent ce07695a55
commit eb3cc8916d
14 changed files with 696 additions and 318 deletions

View File

@@ -39,25 +39,25 @@
- (id) init
{
if ((self = [super init]))
{
// allAppointments = nil;
subscriptionUsers = nil;
hoursToDisplay = nil;
currentTableUser = nil;
currentTableHour = nil;
// dateFormatter = [[SOGoDateFormatter alloc]
// initWithLocale: [self locale]];
}
{
// allAppointments = nil;
subscriptionUsers = nil;
hoursToDisplay = nil;
currentTableUser = nil;
currentTableHour = nil;
// dateFormatter = [[SOGoDateFormatter alloc]
// initWithLocale: [self locale]];
}
return self;
}
- (void) dealloc
{
// [allAppointments release];
// [allAppointments release];
[subscriptionUsers release];
[hoursToDisplay release];
// [dateFormatter release];
// [dateFormatter release];
[super dealloc];
}
@@ -188,16 +188,6 @@
/* fetching */
// - (NSCalendarDate *) startDate
// {
// return [[self selectedDate] beginOfDay];
// }
// - (NSCalendarDate *) endDate
// {
// return [[self selectedDate] endOfDay];
// }
// - (NSArray *) appointmentsForCurrentUser
// {
// NSMutableArray *filteredAppointments;
@@ -292,4 +282,11 @@
* (100.0 / [users count]))];
}
- (id <WOActionResults>) defaultAction
{
[super setCurrentView: @"multicolumndayview"];
return self;
}
@end