pimappservices/calendar/inc/calcommon.h
author hgs
Tue, 05 Oct 2010 13:57:00 +0530
changeset 81 ce92091cbd61
parent 18 c198609911f9
child 66 bd7edf625bdd
permissions -rw-r--r--
201039

// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
//

#ifndef __CALCOMMON_H__
#define __CALCOMMON_H__

#include <caltime.h>

/** This system-wide #define is for version 2 of the Calendar component. 
V1 is the CalInterimAPI. V2 is the refactored Calendar component which includes 
support for Attachments, GEO, TRANSP, instance iterator, extended text searching.
@publishedAll
@released
*/
#define SYMBIAN_CALENDAR_V2

/** Calendar local entry ID. 
This entry ID is assigned by the calendar server when an entry is created. 
It will remain unchanged for the lifetime of that entry.
@publishedAll
@released
*/
typedef TUint32 TCalLocalUid;

/** Calendar file ID.
@publishedAll
@released
*/
typedef TInt64 TCalFileId;

/** Calendar Collection ID.
It identifies the same file as TCalFileId does
@publishedAll
@released
*/
typedef TUint8 TCalCollectionId;

/** Calendar NULL file ID.
The file ID will be set to KNullFileId if the file is not opened.
@publishedAll
@released
*/
const TCalFileId KNullFileId = 0;

/** Utility class containing common calendar-related enums.

@publishedAll
@released
*/



class CalCommon
	{
public:

	/** Entry filter used in the entry view and instance view, filter flags are defined by TCalViewFilterFlags
	@publishedAll
	@released
	*/
	typedef TUint TCalViewFilter;
	
	/** Entry filter flags used in the entry view and instance view. 
	@publishedAll
	@released
	*/
	enum TCalViewFilterFlags	
		{
		/** Include appointments. */
		EIncludeAppts=0x01,				
		/** Include reminders. */	
		EIncludeReminder=0x02,				
		/** Include all-day events. */
		EIncludeEvents=0x04,				
		/** Include anniversaries. */
		EIncludeAnnivs=0x08,				
		/** Include completed todos. */
		EIncludeCompletedTodos=0x10,					
		/** Include incompleted todos. */
		EIncludeIncompletedTodos=0x20,	
		/** Remove non-alarmed entries. This flag cannot be used by itself. */
		EIncludeAlarmedOnly=0x40,
		/** Include next only instance of a repeat entry. */
		EIncludeRptsNextInstanceOnly=0x80,
		
		/** By default all instances which overlap the time range are found. Use the EInstanceStartTimeWithinRange
		flag to only include instances whose start time is inside the search time range. 
		
		Note that setting both the EInstanceStartTimeWithinRange and EInstanceEndTimeWithinRange flags will 
		only include instances which are completely within the search time range. */
		EInstanceStartTimeWithinRange=0x100,

		/** By default all instances which overlap the time range are found. Use the EInstanceEndTimeWithinRange
		flag to only include instances whose end time is inside the search time range. 
		
		Note that setting both the EInstanceStartTimeWithinRange and EInstanceEndTimeWithinRange flags will 
		only include instances which are completely within the search time range.
		*/
		EInstanceEndTimeWithinRange=0x200,
		
		/** Include text notes **/
		EIncludeNotes=0x300,
		
		/** By default all instances which adjoin the search range are found. Use the EExcludeInstanceAdjoiningRange
		flag to exclude instances that are outside, but adjoin the search range.
		
		Instances that are outside, but adjoin the search start or end time are excluded.
		Instances that both start and end on the search start time are included.
		Instances that both start and end on the search end time are excluded.
		*/
		EExcludeInstanceAdjoiningRange=0x400,
		
		/** Include all entries (appointments, day events, reminders, anniversaries and todos). */
		EIncludeAll=EIncludeAppts|EIncludeReminder|EIncludeEvents|EIncludeAnnivs|
		EIncludeCompletedTodos|EIncludeIncompletedTodos|EIncludeNotes,
		};
		
	/** The range of instances referred to in a recurrence ID or instance view. 
	@publishedAll
	@released
	*/
	enum TRecurrenceRange
		{
		/** Only this instance is referenced. 
		If the user set EThisOnly when a repeating child entry is created and stored to the file, only the parent instance
		referred to by the child's recurrence ID will be replaced. */
		EThisOnly,
		/** This and all other instances are referenced. */
		EThisAndAll,
		/** This and all future instances are referenced. */
		EThisAndFuture,
		/** This and all previous instances are referenced. */
		EThisAndPrior
		};
		
	
	/** Search filter for use in the CCalInstanceView::FindInstanceL() function.
	Note that a folded text search is used if exact text search is not specified.
	The summary text field is always searched. It is possible to specify additional text fields to be 
	searched as well.
	@publishedAll
	@released
	*/
	enum TCalSearchBehaviour
		{
		/** Search for folded text. */
		EFoldedTextSearch=0x0,

		/** Search for the exact text. */
		EExactTextSearch=0x1,
		
		/** Search location during a text search. 
		@publishedPartner
		@released
		*/
		ESearchEntryLocation=0x2,
		
		/** Search description during a text search. 
		@publishedPartner
		@released
		*/
		ESearchEntryDescription=0x4,
		
		/** Search attendee addresses during a text search.
		@publishedPartner
		@released
		*/
		ESearchAttendeeAddress=0x8,
		
		/** Search attendee sent by addresses during a text search.
		@publishedPartner
		@released
		*/
		ESearchAttendeeSentByAddress=0x10,
		
		/** Search attendee common names during a text search. 
		@publishedPartner
		@released
		*/
		ESearchAttendeeCommonName=0x20,
		
		/** Search organizer's address during a text search. 
		@publishedPartner
		@released
		*/
		ESearchOrganizerAddress=0x40,
		
		/** Search organizer's sent by address during a text search. 
		@publishedPartner
		@released
		*/
		ESearchOrganizerSentByAddress=0x80,
		
		/** Search organizer's common name during a text search. 
		@publishedPartner
		@released
		*/
		ESearchOrganizerCommonName=0x100,
		
		/** Include all possible text fields during a text search. */
		ESearchAllTextFields=ESearchEntryLocation|ESearchEntryDescription|
			ESearchAttendeeAddress|ESearchAttendeeSentByAddress|ESearchAttendeeCommonName|
			ESearchOrganizerAddress|ESearchOrganizerSentByAddress|ESearchOrganizerCommonName,
		};
		
	/** Class to implement a time range in the Instance view and Entry view.
	@publishedAll
	@released
	*/	
	class TCalTimeRange
		{
	public:
		IMPORT_C TCalTimeRange(TCalTime aStartTime, TCalTime aEndTime);		
			
		IMPORT_C TCalTime StartTime() const;
		IMPORT_C TCalTime EndTime() const;
		
	private:
		TCalTime iStartTime;
		TCalTime iEndTime;
		};
		
	/** Enumeration returned when opening a file to indicate whether the file is the current version, 
	needs converting, or is unsupported.
	@publishedPartner
	@released
	*/
	enum TCalFileVersionSupport
		{
		/** The file is the current version and can be loaded immediately. */
		EFileIsCurrentVersion,
		/** The file is an older version and will be converted when it is used. */
		EFileNeedsConverting,
		/** The file is an old version that is not supported. */
		EUnsupportedFileVersion
		};

	/** Class to implement a priority range. This is used to set a priority range when using
	CCalFindInstanceSettings.
	@publishedAll
	@prototype
	*/
	class TCalPriorityRange
		{
	public:
		IMPORT_C TCalPriorityRange();
		IMPORT_C TCalPriorityRange(TUint aHighestPriority, TUint aLowestPriority);
		
		IMPORT_C TUint LowestPriority() const;
		IMPORT_C TUint HighestPriority() const;
		
	private:
		TUint iHighestPriority;
		TUint iLowestPriority;
		};
	
	/** Class to implement the filter on favourite entries.
	This is used to filter entries according the value of the favourite property
	when using CCalFindInstanceSettings.
	@publishedAll
	@released
	*/
	class TCalFavouriteFilter
		{
	public:
		IMPORT_C TCalFavouriteFilter();
		IMPORT_C TCalFavouriteFilter(TUint32 aValue, TUint32 aMask);
		
		IMPORT_C TUint32 Value() const;
		IMPORT_C TUint32 Mask() const;
		
	private:
		TUint32 iValue;
		TUint32 iMask;
		};

	/** Enumeration to define the sort-able attributes that can be sorted on in the
	 * instance view 
	@publishedAll
	@prototype
	*/
	enum TCalSortAttribute
		{
		ESortAttrStartTime,
		ESortAttrEndTime,
		ESortAttrLastModified,
		ESortAttrPriority,
		ESortAttrType
		};
	
	/** Enumeration to define the sort directions that can be used in sort criteria, 
	@publishedAll
	@prototype
	*/
	enum TCalSortDirection
		{
		/** Sort by ascending order  */
		EAscendingOrder,
		/** Sort by descending order  */
		EDescendingOrder
		};

	};
#endif // __CALCOMMON_H__