1 /* UIxCalMainView.m - this file is part of SOGo
3 * Copyright (C) 2006 Inverse groupe conseil
5 * Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
7 * This file is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2, or (at your option)
12 * This file is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; see the file COPYING. If not, write to
19 * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 * Boston, MA 02111-1307, USA.
23 #import <Foundation/NSArray.h>
24 #import <Foundation/NSCalendarDate.h>
25 #import <Foundation/NSString.h>
26 #import <Foundation/NSTimeZone.h>
27 #import <Foundation/NSUserDefaults.h>
28 #import <Foundation/NSValue.h>
30 #import <NGObjWeb/SoSecurityManager.h>
31 #import <NGObjWeb/WOResponse.h>
33 #import <SOGo/SOGoPermissions.h>
34 #import <SOGo/SOGoUser.h>
36 #import "UIxCalMainView.h"
38 #import <Appointments/SOGoAppointmentFolder.h>
40 static NSMutableArray *monthMenuItems = nil;
41 static NSMutableArray *yearMenuItems = nil;
43 @implementation UIxCalMainView
45 - (NSString *) userUTCOffset
49 userTZ = [[context activeUser] timeZone];
51 return [NSString stringWithFormat: @"%d", [userTZ secondsFromGMT]];
54 - (NSArray *) monthMenuItems
60 monthMenuItems = [NSMutableArray arrayWithCapacity: 12];
62 for (count = 1; count < 13; count++)
63 [monthMenuItems addObject:
64 [NSString stringWithFormat: @"%.2d", count]];
65 [monthMenuItems retain];
68 return monthMenuItems;
71 - (void) setMonthMenuItem: (NSString *) aMonthMenuItem
73 monthMenuItem = aMonthMenuItem;
76 - (NSString *) monthMenuItem
81 - (NSString *) monthMenuItemLabel
83 return [self localizedNameForMonthOfYear: [monthMenuItem intValue]];
86 - (NSArray *) yearMenuItems
92 year = [[NSCalendarDate date] yearOfCommonEra];
93 yearMenuItems = [NSMutableArray arrayWithCapacity: 11];
94 for (count = -5; count < 6; count++)
95 [yearMenuItems addObject: [NSNumber numberWithInt: year + count]];
96 [yearMenuItems retain];
102 - (void) setYearMenuItem: (NSNumber *) aYearMenuItem
104 yearMenuItem = aYearMenuItem;
107 - (NSNumber *) yearMenuItem