phonebookui/pbkcommonui/inc/cntfavoritesmemberview.h
branchRCL_3
changeset 62 5b6f26637ad3
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/phonebookui/pbkcommonui/inc/cntfavoritesmemberview.h	Tue Aug 31 15:05:21 2010 +0300
@@ -0,0 +1,93 @@
+/*
+* 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 CNTFAVORITESMEMBERVIEW_H
+#define CNTFAVORITESMEMBERVIEW_H
+
+#include <hbdocumentloader.h>
+#include <cntabstractview.h>
+#include <QSet>
+
+class CntListModel;
+class HbView;
+class HbAction;
+class HbListView;
+class HbAbstractViewItem;
+class QModelIndex;
+
+QTM_BEGIN_NAMESPACE
+class QContact;
+QTM_END_NAMESPACE
+
+class CntFavoritesMemberView : public QObject, public CntAbstractView
+{
+    Q_OBJECT
+
+public: // From CntAbstractView
+    void activate( const CntViewParameters aArgs );
+    void deactivate();
+    bool isDefault() const { return false; }
+    HbView* view() const { return mView; }
+    int viewId() const { return favoritesMemberView; }
+    inline void setEngine( CntAbstractEngine& aEngine ){ mEngine = &aEngine; }
+    
+    void createModel();
+    
+public:
+    CntFavoritesMemberView();
+    ~CntFavoritesMemberView();
+
+#ifdef PBK_UNIT_TEST
+public slots:
+#else
+private slots:
+#endif
+
+    void manageFavorites();
+    void handleManageFavorites(QSet<QContactLocalId> aIds);
+    
+    void onLongPressed (HbAbstractViewItem *item, const QPointF &coords);
+    void handleMenu(HbAction* action);
+    
+    void openContact(const QModelIndex &index);
+    void editContact(const QModelIndex &index);
+    void removeFromFavorites(const QModelIndex &index);
+    void sendToHs(const QModelIndex &index);
+    void showPreviousView();
+
+private:
+    QContactManager* getContactManager();
+    
+#ifdef PBK_UNIT_TEST
+public:
+#else
+private:
+#endif
+
+    QContact*                   mContact;
+    HbAction*                   mManageFavoritesAction; 
+    CntListModel*               mModel; // own
+    HbListView*                 mFavoriteListView; 
+    CntAbstractViewManager*     mViewManager;
+    HbDocumentLoader            mDocumentLoader;
+    HbView*                     mView; // own
+    QSet<QContactLocalId>       mOriginalGroupMembers;
+    HbAction*                   mSoftkey; // owned by view
+    CntAbstractEngine* mEngine;
+};
+
+#endif /* CNTFAVORITESMEMBERVIEW_H */