diff -r 7cc7d74059f9 -r 4ecbe3571b5a phonebookui/cntcommonui/collections/cntcollectionlistmodel_p.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/phonebookui/cntcommonui/collections/cntcollectionlistmodel_p.h Mon Oct 04 00:06:02 2010 +0300 @@ -0,0 +1,108 @@ +/* +* Copyright (c) 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 CNTCOLLECTIONLISTMODELPRIVATE_H +#define CNTCOLLECTIONLISTMODELPRIVATE_H + +#include +#include +#include + +#include + +#include + +class CntExtensionManager; +class CntUiGroupSupplier; +class CntThumbnailManager; + +QTM_BEGIN_NAMESPACE +class QContactManager; +QTM_END_NAMESPACE + +QTM_USE_NAMESPACE + +/*! + Helper class for CntCollectionListModel +*/ +class CntCollectionItem +{ +public: + CntCollectionItem() : memberCount(0), isPlugin(false), fetched(false) {} + ~CntCollectionItem() {} + + inline const CntCollectionItem& operator=(const CntCollectionItem& other) + { + groupName = other.groupName; + secondLineText = other.secondLineText; + icon = other.icon; + secondaryIcon = other.secondaryIcon; + memberCount = other.memberCount; + members = other.members; + isPlugin = other.isPlugin; + id = other.id; + return *this; + } + + inline bool operator==(const CntCollectionItem& other) const + { + return id == other.id; + } + +public: + QString groupName; + QString secondLineText; + HbIcon icon; + HbIcon secondaryIcon; + int memberCount; + QList members; + bool isPlugin; + bool fetched; + int id; +}; + +typedef QSharedPointer CollectionItemPointer; + +/*! + Helper class for CntCollectionListModel +*/ +class CntCollectionListModelData : public QSharedData +{ +public: + CntCollectionListModelData(CntExtensionManager &extensionManager) + : QSharedData(), + mContactManager(NULL), + mExtensionManager(extensionManager), + mFavoriteGroupId(-1), + mThumbnailManager(NULL) + {} + ~CntCollectionListModelData() { } + +public: + QContactManager *mContactManager; + CntExtensionManager &mExtensionManager; + int mFavoriteGroupId; + + QList mList; + QMap mExtensions; + + QMap mIconRequests; + + CntThumbnailManager *mThumbnailManager; +}; + +#endif // CNTCOLLECTIONLISTMODELPRIVATE_H