diff -r 666f914201fb -r 2fe1408b6811 epoc32/include/calsession.h --- a/epoc32/include/calsession.h Tue Nov 24 13:55:44 2009 +0000 +++ b/epoc32/include/calsession.h Tue Mar 16 16:12:26 2010 +0000 @@ -1,1 +1,106 @@ -calsession.h +// 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 the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members +// which accompanies this distribution, and is available +// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// + +#ifndef __CALSESSION_H__ +#define __CALSESSION_H__ + +#include + +#include +#include + +class CCalSessionImpl; +class MCalChangeCallBack2; + +/** A handle to the calendar file. + +When the client instantiates a CCalSession, it will connect to the calendar server. +In turn, the client can use its APIs, for instance to create or open a calendar file. + +The agenda data in the file can be accessed as entries. To access the entries, clients should +use class CCalEntryView or CCalInstanceView to process the entry data. However, both view classes +require the handle to the file which is represented by this class. + +A calendar file can be opened on any writable drive. Note that if the file is opened +on a removable media and that media is removed, operations will leave with KErrNotReady. +This error can also happen when trying to access file attachments on removed media. +When this error occurs, the user should close the CCalSession and re-open it once the media +has been replaced. +It is recommended that when using a calendar file on removable media, the user should watch for when +the media is removed / replaced using the RFs::NotifyChange API. + +The session object must not be destroyed until all the objects which where created by referencing it +have been destroyed. + +@publishedAll +@released +*/ +NONSHARABLE_CLASS(CCalSession) : public CBase + { +public: + IMPORT_C static CCalSession* NewL(); + IMPORT_C ~CCalSession(); + + IMPORT_C void CreateCalFileL(const TDesC& aFileName) const; + IMPORT_C void OpenL(const TDesC& aFileName) const; + IMPORT_C void OpenL(const TDesC& aFileName, CalCommon::TCalFileVersionSupport& aFileSupportStatus) const; + IMPORT_C const TDesC& DefaultFileNameL() const; + IMPORT_C void DeleteCalFileL(const TDesC& aFileName) const; + IMPORT_C CDesCArray* ListCalFilesL() const; + + IMPORT_C void StartChangeNotification(MCalChangeCallBack2& aCallBack, const CCalChangeNotificationFilter& aFilter); + IMPORT_C void StopChangeNotification(); + IMPORT_C void DisableChangeBroadcast(); + IMPORT_C void EnableChangeBroadcast(); + + IMPORT_C void EnablePubSubNotificationsL(); + IMPORT_C void DisablePubSubNotificationsL(); + + IMPORT_C void FileIdL(TCalFileId& aCalFileId) const; + IMPORT_C void GetFileNameL(TCalPubSubData aPubSubData, TDes& aFileName) const; + IMPORT_C TBool IsFileNameL(TCalPubSubData aPubSubData, const TDesC& aFileName) const; + IMPORT_C TBool IsOpenedFileL(TCalPubSubData aPubSubData) const; + + // debug only +/** +@publishedPartner +@released +*/ + IMPORT_C void _DebugSetHeapFailL(RAllocator::TAllocFail aFail, TInt aRate); + +/** +@publishedPartner +@released +*/ + IMPORT_C TInt _DebugRequestAllocatedCellsL(); + + // deprecated + IMPORT_C void StartChangeNotification(MCalChangeCallBack* aCallBack, MCalChangeCallBack::TChangeEntryType aChangeEntryType, TBool aIncludeUndatedTodos, TTime aFilterStartTime, TTime aFilterEndTime); + + IMPORT_C void __dbgClearTzClientCacheL(TBool aRestartCaching); + + IMPORT_C TInt _DebugRequestAllocatedHeapSizeL(); + +public: + CCalSessionImpl& Impl() const; + +private: + CCalSession(); + void ConstructL(); +private: + CCalSessionImpl* iImpl; + }; + +#endif // __CALSESSION_H__