-
Notifications
You must be signed in to change notification settings - Fork 517
/
Copy pathEKEnums.cs
216 lines (194 loc) · 4.89 KB
/
EKEnums.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
using System;
using ObjCRuntime;
using Foundation;
using CoreGraphics;
using CoreLocation;
#if !MONOMAC
using UIKit;
#endif
namespace EventKit {
// untyped enum -> EKTypes.h
// iOS 9 promoted this to an NSInteger - which breaks compatibility
[Native]
public enum EKCalendarType : long {
Local, CalDav, Exchange, Subscription, Birthday
}
// untyped enum -> EKTypes.h
// iOS 9 promoted this to an NSInteger - which breaks compatibility
[Native]
public enum EKParticipantType : long {
Unknown, Person, Room, Resource, Group
}
// untyped enum -> EKTypes.h
// iOS 9 promoted this to an NSInteger - which breaks compatibility
[Native]
public enum EKParticipantRole : long {
Unknown, Required, Optional, Chair, NonParticipant
}
// untyped enum -> EKTypes.h
// iOS 9 promoted this to an NSInteger - which breaks compatibility
[Native]
public enum EKParticipantStatus : long {
Unknown, Pending, Accepted, Declined,
Tentative, Delegated, Completed, InProcess
}
// untyped enum -> EKError.h
// iOS 9 promoted this to an NSInteger - which breaks compatibility
[Native]
[ErrorDomain ("EKErrorDomain")]
public enum EKErrorCode : long {
EventNotMutable,
NoCalendar,
NoStartDate,
NoEndDate,
DatesInverted,
InternalFailure,
CalendarReadOnly,
DurationGreaterThanRecurrence,
AlarmGreaterThanRecurrence,
StartDateTooFarInFuture,
StartDateCollidesWithOtherOccurrence,
ObjectBelongsToDifferentStore,
InvitesCannotBeMoved,
InvalidSpan,
CalendarHasNoSource,
CalendarSourceCannotBeModified,
CalendarIsImmutable,
SourceDoesNotAllowCalendarAddDelete,
RecurringReminderRequiresDueDate,
StructuredLocationsNotSupported,
ReminderLocationsNotSupported,
AlarmProximityNotSupported,
CalendarDoesNotAllowEvents,
CalendarDoesNotAllowReminders,
SourceDoesNotAllowReminders,
SourceDoesNotAllowEvents,
PriorityIsInvalid,
InvalidEntityType,
ProcedureAlarmsNotMutable,
EventStoreNotAuthorized,
OSNotSupported,
InvalidInviteReplyCalendar,
NotificationsCollectionFlagNotSet,
SourceMismatch,
NotificationCollectionMismatch,
NotificationSavedWithoutCollection,
}
// untyped enum -> EKTypes.h
// Special note: some API (like `dayOfWeek:` and `dayOfWeek:weekNumber:` use an `NSInteger` instead of the enum
[Deprecated (PlatformName.iOS, 9, 0, message : "Use 'EKWeekday'.")]
[Deprecated (PlatformName.MacOSX, 10, 11, message : "Use 'EKWeekday'.")]
public enum EKDay {
NotSet = 0,
Sunday = 1,
Monday, Tuesday, Wednesday, Thursday, Friday, Saturday
}
[iOS (9,0)][Mac (10,11)]
[Native] // NSInteger (size change from previously untyped enum)
public enum EKWeekday : long {
NotSet = 0,
Sunday = 1,
Monday,
Tuesday,
Wednesday,
Thursday,
Friday,
Saturday,
}
// untyped enum -> EKTypes.h
// iOS 9 promoted this to an NSInteger - which breaks compatibility
[Native]
public enum EKRecurrenceFrequency : long {
Daily, Weekly, Monthly, Yearly
}
// untyped enum -> EKEventStore.h
// iOS 9 promoted this to an NSInteger - which breaks compatibility
[Native]
public enum EKSpan : long {
ThisEvent, FutureEvents
}
// NSUInteger -> EKTypes.h
[Native]
[Flags]
public enum EKCalendarEventAvailability : ulong {
None = 0,
Busy = 1,
Free = 2,
Tentative = 4,
Unavailable = 8
}
// untyped enum -> EKEvent.h
// iOS 9 promoted this to an NSInteger - which breaks compatibility
[Native]
public enum EKEventAvailability : long {
NotSupported = -1,
Busy = 0, Free, Tentative, Unavailable,
}
// untyped enum -> EKEvent.h
// iOS 9 promoted this to an NSInteger - which breaks compatibility
[Native]
public enum EKEventStatus : long {
None, Confirmed, Tentative, Cancelled
}
// untyped enum -> EKTypes.h
// iOS 9 promoted this to an NSInteger - which breaks compatibility
[Native]
public enum EKSourceType : long {
Local, Exchange, CalDav, MobileMe, Subscribed, Birthdays
}
// NSInteger -> EKTypes.h
[Native]
public enum EKAlarmProximity : long {
None, Enter, Leave
}
// NSUInteger -> EKTypes.h
[Native]
[Flags]
public enum EKEntityMask : ulong {
Event = 1 << (int) EKEntityType.Event,
Reminder = 1 << (int) EKEntityType.Reminder
}
// NSUInteger -> EKTypes.h
[Native]
public enum EKEntityType : ulong {
Event,
Reminder
}
#if MONOMAC || WATCH
// untyped enum -> EKTypes.h (but not in the iOS SDK, only OSX)
// turned into a typed (NSInteger) enum in El Capitan (and also an NSInteger in watchOS)
[Native]
public enum EKAlarmType : long {
Display, Audio, Procedure, Email
}
#endif
// NSInteger -> EKEventStore.h
[Native]
public enum EKAuthorizationStatus : long {
NotDetermined = 0,
Restricted,
Denied,
Authorized,
}
[Native]
public enum EKParticipantScheduleStatus : long
{
None,
Pending,
Sent,
Delivered,
RecipientNotRecognized,
NoPrivileges,
DeliveryFailed,
CannotDeliver,
RecipientNotAllowed
}
[Native]
public enum EKReminderPriority : ulong
{
None = 0,
High = 1,
Medium = 5,
Low = 9
}
}