]> err.no Git - scalable-opengroupware.org/blob - UI/Scheduler/UIxComponentEditor.h
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1299 d1b88da0-ebda-0310...
[scalable-opengroupware.org] / UI / Scheduler / UIxComponentEditor.h
1 /* UIxComponentEditor.h - 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 #ifndef UIXCOMPONENTEDITOR_H
24 #define UIXCOMPONENTEDITOR_H
25
26 #import <SOGoUI/UIxComponent.h>
27
28 @class NSArray;
29 @class NSCalendarDate;
30 @class NSDictionary;
31 @class NSString;
32
33 @class iCalPerson;
34 @class iCalRecurrenceRule;
35 @class iCalRepeatableEntityObject;
36
37 @interface UIxComponentEditor : UIxComponent
38 {
39   iCalRepeatableEntityObject *component;
40   id item;
41
42   NSString *saveURL;
43   NSMutableArray *calendarList;
44   NSMutableArray *organizerList;
45   NSDictionary *organizerIdentity;
46   
47   /* individual values */
48   NSCalendarDate *cycleUntilDate;
49   NSString *title;
50   NSString *location;
51   NSString *comment;
52   NSString *url;
53   NSString *priority;
54   NSString *privacy;
55   NSString *status;
56   NSString *category;
57   NSArray *categories;
58   NSDictionary *cycle;
59   NSString *cycleEnd;
60   iCalPerson *organizer;
61   NSString *componentOwner;
62
63   NSString *attendeesNames;
64   NSString *attendeesUIDs;
65   NSString *attendeesEmails;
66   NSString *attendeesStates;
67 }
68
69 - (NSString *) toolbar;
70 - (void) setComponent: (iCalRepeatableEntityObject *) newComponent;
71
72 - (void) setSaveURL: (NSString *) newSaveURL;
73 - (NSString *) saveURL;
74
75 - (void) setItem: (id) _item;
76 - (id) item;
77
78 - (SOGoAppointmentFolder *) componentCalendar;
79
80 - (NSArray *) categoryList;
81 - (void) setCategories: (NSArray *) _categories;
82 - (NSArray *) categories;
83 - (NSString *) itemCategoryText;
84
85 - (NSArray *) priorities;
86 - (void) setPriority: (NSString *) _priority;
87 - (NSString *) priority;
88 - (NSString *) itemPriorityText;
89
90 - (NSArray *) privacyClasses;
91 - (void) setPrivacy: (NSString *) _privacy;
92 - (NSString *) privacy;
93 - (NSString *) itemPrivacyText;
94
95 - (NSArray *) statusTypes;
96 - (void) setStatus: (NSString *) _status;
97 - (NSString *) status;
98 - (NSString *) itemStatusText;
99
100 - (void) setTitle: (NSString *) _value;
101 - (NSString *) title;
102
103 - (void) setLocation: (NSString *) _value;
104 - (NSString *) location;
105
106 - (NSString *) location;
107
108 - (void) setComment: (NSString *) _value;
109 - (NSString *) comment;
110
111 - (void) setUrl: (NSString *) _url;
112 - (NSString *) url;
113
114 - (void) setAttendeesNames: (NSString *) newAttendeesNames;
115 - (NSString *) attendeesNames;
116
117 - (void) setAttendeesUIDs: (NSString *) newAttendeesUIDs;
118 - (NSString *) attendeesUIDs;
119
120 - (void) setAttendeesEmails: (NSString *) newAttendeesEmails;
121 - (NSString *) attendeesEmails;
122
123 - (NSArray *) cycles;
124 - (void) setCycle: (NSDictionary *) _cycle;
125 - (NSDictionary *) cycle;
126 - (BOOL) hasCycle;
127 - (NSString *) cycleLabel;
128 - (void) setCycleUntilDate: (NSCalendarDate *) _cycleUntilDate;
129 - (NSCalendarDate *) cycleUntilDate;
130 - (iCalRecurrenceRule *) rrule;
131 - (void) adjustCycleControlsForRRule: (iCalRecurrenceRule *) _rrule;
132 - (NSDictionary *) cycleMatchingRRule: (iCalRecurrenceRule *) _rrule;
133 - (NSArray *) cycleEnds;
134 - (void) setCycleEnd: (NSString *) _cycleEnd;
135 - (NSString *) cycleEnd;
136 - (BOOL) isCycleEndUntil;
137 - (void) setIsCycleEndUntil;
138 - (void) setIsCycleEndNever;
139
140 /* access */
141 - (BOOL) isMyComponent;
142 - (BOOL) canEditComponent;
143
144 /* helpers */
145 - (NSString *) completeURIForMethod: (NSString *) _method;
146 - (BOOL) isWriteableClientObject;
147 - (NSException *) validateObjectForStatusChange;
148
149 @end
150
151 #endif /* UIXCOMPONENTEDITOR_H */