]> err.no Git - scalable-opengroupware.org/blob - UI/Scheduler/UIxCalMainView.m
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1172 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/NSUserDefaults.h>
27 #import <Foundation/NSValue.h>
28
29 #import <NGObjWeb/SoSecurityManager.h>
30 #import <NGObjWeb/WOResponse.h>
31
32 #import <SOGo/SOGoPermissions.h>
33 #import <SOGo/SOGoUser.h>
34
35 #import "UIxCalMainView.h"
36
37 #import <Appointments/SOGoAppointmentFolder.h>
38
39 static NSMutableArray *monthMenuItems = nil;
40 static NSMutableArray *yearMenuItems = nil;
41
42 @implementation UIxCalMainView
43
44 - (NSArray *) monthMenuItems
45 {
46   unsigned int count;
47  
48   if (!monthMenuItems)
49     {
50       monthMenuItems = [NSMutableArray arrayWithCapacity: 12];
51       
52       for (count = 1; count < 13; count++)
53         [monthMenuItems addObject:
54                           [NSString stringWithFormat: @"%.2d", count]];
55       [monthMenuItems retain];
56     }
57
58   return monthMenuItems;
59 }
60
61 - (void) setMonthMenuItem: (NSString *) aMonthMenuItem
62 {
63   monthMenuItem = aMonthMenuItem;
64 }
65
66 - (NSString *) monthMenuItem
67 {
68   return monthMenuItem;
69 }
70
71 - (NSString *) monthMenuItemLabel
72 {
73   return [self localizedNameForMonthOfYear: [monthMenuItem intValue]];
74 }
75
76 - (NSArray *) yearMenuItems
77 {
78   int count, year;
79  
80   if (!yearMenuItems)
81     {
82       year = [[NSCalendarDate date] yearOfCommonEra];
83       yearMenuItems = [NSMutableArray arrayWithCapacity: 11];
84       for (count = -5; count < 6; count++)
85         [yearMenuItems addObject: [NSNumber numberWithInt: year + count]];
86       [yearMenuItems retain];
87     }
88
89   return yearMenuItems;
90 }
91
92 - (void) setYearMenuItem: (NSNumber *) aYearMenuItem
93 {
94   yearMenuItem = aYearMenuItem;
95 }
96
97 - (NSNumber *) yearMenuItem
98 {
99   return yearMenuItem;
100 }
101
102 - (id) batchDeleteAction
103 {
104   NSArray *ids;
105   SOGoAppointmentFolder *clientObject;
106
107   ids = [[self queryParameterForKey: @"ids"] componentsSeparatedByString: @"/"];
108   if (ids)
109     {
110       clientObject = [self clientObject];
111       [clientObject deleteEntriesWithIds: ids];
112     }
113
114   return self;
115 }
116
117 @end