]> err.no Git - scalable-opengroupware.org/blob - UI/Scheduler/UIxCalMainView.m
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1236 d1b88da0-ebda-0310...
[scalable-opengroupware.org] / UI / Scheduler / UIxCalMainView.m
1 /* UIxCalMainView.m - this file is part of SOGo
2  *
3  * Copyright (C) 2006 Inverse groupe conseil
4  *
5  * Author: Wolfgang Sourdeau <wsourdeau@inverse.ca>
6  *
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)
10  * any later version.
11  *
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.
16  *
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.
21  */
22
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>
29
30 #import <NGObjWeb/SoSecurityManager.h>
31 #import <NGObjWeb/WOResponse.h>
32
33 #import <SOGo/SOGoPermissions.h>
34 #import <SOGo/SOGoUser.h>
35
36 #import "UIxCalMainView.h"
37
38 #import <Appointments/SOGoAppointmentFolder.h>
39
40 static NSMutableArray *monthMenuItems = nil;
41 static NSMutableArray *yearMenuItems = nil;
42
43 @implementation UIxCalMainView
44
45 - (NSArray *) monthMenuItems
46 {
47   unsigned int count;
48  
49   if (!monthMenuItems)
50     {
51       monthMenuItems = [NSMutableArray arrayWithCapacity: 12];
52       
53       for (count = 1; count < 13; count++)
54         [monthMenuItems addObject:
55                           [NSString stringWithFormat: @"%.2d", count]];
56       [monthMenuItems retain];
57     }
58
59   return monthMenuItems;
60 }
61
62 - (void) setMonthMenuItem: (NSString *) aMonthMenuItem
63 {
64   monthMenuItem = aMonthMenuItem;
65 }
66
67 - (NSString *) monthMenuItem
68 {
69   return monthMenuItem;
70 }
71
72 - (NSString *) monthMenuItemLabel
73 {
74   return [self localizedNameForMonthOfYear: [monthMenuItem intValue]];
75 }
76
77 - (NSArray *) yearMenuItems
78 {
79   int count, year;
80  
81   if (!yearMenuItems)
82     {
83       year = [[NSCalendarDate date] yearOfCommonEra];
84       yearMenuItems = [NSMutableArray arrayWithCapacity: 11];
85       for (count = -5; count < 6; count++)
86         [yearMenuItems addObject: [NSNumber numberWithInt: year + count]];
87       [yearMenuItems retain];
88     }
89
90   return yearMenuItems;
91 }
92
93 - (void) setYearMenuItem: (NSNumber *) aYearMenuItem
94 {
95   yearMenuItem = aYearMenuItem;
96 }
97
98 - (NSNumber *) yearMenuItem
99 {
100   return yearMenuItem;
101 }
102
103 @end