1.1 --- a/epoc32/include/calcategorymanager.h Tue Mar 16 16:12:26 2010 +0000
1.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
1.3 @@ -1,59 +0,0 @@
1.4 -// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 -// All rights reserved.
1.6 -// This component and the accompanying materials are made available
1.7 -// 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
1.8 -// which accompanies this distribution, and is available
1.9 -// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
1.10 -//
1.11 -// Initial Contributors:
1.12 -// Nokia Corporation - initial contribution.
1.13 -//
1.14 -// Contributors:
1.15 -//
1.16 -// Description:
1.17 -//
1.18 -
1.19 -#ifndef __CALCATEGORYMANAGER_H__
1.20 -#define __CALCATEGORYMANAGER_H__
1.21 -
1.22 -#include <e32base.h>
1.23 -
1.24 -class MCalProgressCallBack;
1.25 -class CCalCategory;
1.26 -class CCalEntry;
1.27 -class CCalCategoryManagerImpl;
1.28 -class CCalSession;
1.29 -
1.30 -/** A category manager used to manipulate the categories held by the Calendar store.
1.31 -
1.32 -There are 12 built-in category types which are specified by CCalCategory::TCalCategoryType.
1.33 -In addition, clients can create as many of their own categories as they like by giving a name to the category.
1.34 -This class is used along with the class CCalCategory to manipulate the categories in the file, for instance to
1.35 -add, delete and get a list of entries filtered by their category.
1.36 -
1.37 -@publishedAll
1.38 -@released
1.39 -*/
1.40 -NONSHARABLE_CLASS(CCalCategoryManager) : public CBase
1.41 - {
1.42 -public:
1.43 -
1.44 - IMPORT_C static CCalCategoryManager* NewL(CCalSession& aSession);
1.45 - IMPORT_C ~CCalCategoryManager();
1.46 -
1.47 - IMPORT_C TInt CategoryCountL() const;
1.48 - IMPORT_C CCalCategory* CategoryL(TInt aIndex) const;
1.49 - IMPORT_C void AddCategoryL(const CCalCategory& aCategory);
1.50 - IMPORT_C void FilterCategoryL(const CCalCategory& aCategory, RPointerArray<CCalEntry>& aEntries, MCalProgressCallBack& aProgressCallBack);
1.51 - IMPORT_C void FilterCategoryL(const CCalCategory& aCategory, RPointerArray<CCalEntry>& aEntries);
1.52 - IMPORT_C void DeleteCategoryL(const CCalCategory& aCategory, MCalProgressCallBack& aProgressCallBack);
1.53 -
1.54 -private:
1.55 - CCalCategoryManager();
1.56 - void ConstructL(CCalSession& aSession);
1.57 -
1.58 -private:
1.59 - CCalCategoryManagerImpl* iCCalCategoryManagerImpl;
1.60 - };
1.61 -
1.62 -#endif // __CALCATEGORYMANAGER_H__