phonebookui/cntcommonui/views/cntactionmenubuilder.h
changeset 72 6abfb1094884
parent 47 7cbcb2896f0e
child 81 640d30f4fb64
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/phonebookui/cntcommonui/views/cntactionmenubuilder.h	Tue Sep 21 17:07:25 2010 +0300
@@ -0,0 +1,78 @@
+/*
+* 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 CNTACTIONMENUBUILDER_H_
+#define CNTACTIONMENUBUILDER_H_
+
+#include <QObject>
+#include <hbmenu.h>
+#include <qtcontactsglobal.h>
+#include <qtcontacts.h>
+
+class CntStringMapper;
+QTM_BEGIN_NAMESPACE
+class QContact;
+class QContactDetail;
+QTM_END_NAMESPACE
+
+QTM_USE_NAMESPACE
+
+class CntActionMenuBuilder : public QObject
+    {
+    Q_OBJECT
+public:
+    CntActionMenuBuilder( QContactLocalId aMyCardId );
+    ~CntActionMenuBuilder();
+    
+public:
+    HbMenu* actionMenu( QContact& aContact, QContactLocalId myCardId );
+    
+public:
+    HbMenu* buildActionMenu( QContact& aContact );
+    
+signals:
+    void openContact( QContact& aContact );
+    void editContact( QContact& aContact );
+    void deleteContact( QContact& aContact );
+    void performContactAction( QContact& aContact, QContactDetail contactDetail, const QString& aAction );
+    
+private slots:
+    void emitOpenContact();
+    void emitEditContact();
+    void emitDeleteContact();
+    void emitCallContact();
+    void emitSmsContact();
+    void emitMailContact();
+    void emitContactaction(QContact& aContact, QContactDetail contactDetail, QString aAction);
+    
+#ifdef PBK_UNIT_TEST
+public:
+#else
+private:
+#endif
+    
+    void createCallAction( HbMenu& aMenu, QContact& aContact );
+    void createMessageAction( HbMenu& aMenu, QContact& aContact );
+    void createEmailAction( HbMenu& aMenu, QContact& aContact );
+    bool isSupportedDetails( const QString &actionName, const QContact &contact );
+
+private:
+    QContactLocalId iMyCardId;
+    QContact* mContact;
+    CntStringMapper* mMap;
+    };
+#endif /* CNTACTIONMENUBUILDER_H_ */