/core/externals/update-engine/externals/gdata-objectivec-client/Source/Clients/Calendar/GDataQueryCalendar.h
http://macfuse.googlecode.com/ · C++ Header · 71 lines · 26 code · 19 blank · 26 comment · 1 complexity · 6d9bba3d0e54295d8062c94b5e5c90cf MD5 · raw file
- /* Copyright (c) 2007 Google Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- //
- // GDataQueryCalendar.h
- //
- #if !GDATA_REQUIRE_SERVICE_INCLUDES || GDATA_INCLUDE_CALENDAR_SERVICE
- // Calendar-specific query params, per
- // http://code.google.com/apis/calendar/reference.html#Parameters
- // NOTE: Events for a recurring event with recurrence exceptions (i.e. where
- // individual events have been modified) will be returned twice for a query,
- // once in the original event and once as a separate event. The separate
- // event occurence can be detected by examining its originalEvent; if not nil
- // then it will also be reported as part of the original event.
- #import "GDataQuery.h"
- @interface GDataQueryCalendar : GDataQuery
- + (GDataQueryCalendar *)calendarQueryWithFeedURL:(NSURL *)feedURL;
- - (GDataDateTime *)minimumStartTime;
- - (void)setMinimumStartTime:(GDataDateTime *)dateTime;
- - (GDataDateTime *)maximumStartTime;
- - (void)setMaximumStartTime:(GDataDateTime *)dateTime;
- - (GDataDateTime *)recurrenceExpansionStartTime;
- - (void)setRecurrenceExpansionStartTime:(GDataDateTime *)dateTime;
- - (GDataDateTime *)recurrenceExpansionEndTime;
- - (void)setRecurrenceExpansionEndTime:(GDataDateTime *)dateTime;
- // querying all future events overrides any parameters for
- // start-min, start-max, and recurrence expansion start and end times
- - (BOOL)shouldQueryAllFutureEvents;
- - (void)setShouldQueryAllFutureEvents:(BOOL)dateTime;
- - (BOOL)shouldExpandRecurrentEvents;
- - (void)setShouldExpandRecurrentEvents:(BOOL)dateTime;
- - (BOOL)shouldShowInlineComments;
- - (void)setShouldShowInlineComments:(BOOL)flag;
- - (BOOL)shouldShowHiddenEvents;
- - (void)setShouldShowHiddenEvents:(BOOL)flag;
- - (NSString *)currentTimeZoneName;
- - (void)setCurrentTimeZoneName:(NSString *)str;
- - (NSInteger)maximumAttendees;
- - (void)setMaximumAttendees:(NSInteger)val;
- @end
- #endif // !GDATA_REQUIRE_SERVICE_INCLUDES || GDATA_INCLUDE_CALENDAR_SERVICE