phonebookui/Phonebook/View/inc/CPbkFieldAnalyzer.h
changeset 0 e686773b3f54
child 3 04ab22b956c2
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/phonebookui/Phonebook/View/inc/CPbkFieldAnalyzer.h	Tue Feb 02 10:12:17 2010 +0200
@@ -0,0 +1,64 @@
+/*
+* Copyright (c) 2002 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:
+*       Class to be used by listbox model for analyzing if
+*       TPbkContactItemField has speed dial or voice tag.
+*
+*/
+
+#ifndef __CPBKFIELDANALYZER_H__
+#define __CPBKFIELDANALYZER_H__
+
+#include <e32base.h>
+#include "mpbkfieldanalyzer.h"
+
+//  FORWARD DECLARATIONS
+class CPbkFieldArray;
+class TPbkContactItemField;
+
+class CPbkFieldAnalyzer : public CBase,
+                          public MPbkFieldAnalyzer
+	{
+public:
+    /**
+     * Creates a new instance of this class.
+     *
+     * @param aEngine       Contact engine needed for MPbkFieldAnalyzer
+     *                      functions. This object does NOT take
+     *                      ownership of aContact.
+     */
+    static CPbkFieldAnalyzer* NewL( const CPbkFieldArray& aArray );
+
+    /**
+     * Destructor.
+     */
+    ~CPbkFieldAnalyzer();
+
+public: // From MPbkFieldAnalyzer
+    TBool HasSpeedDialL( const TPbkContactItemField& aField ) const;
+    TBool HasVoiceTagL( const TPbkContactItemField& aField ) const;
+    
+private:
+	TBool IsFieldOwned( const TPbkContactItemField& aField ) const;
+
+private:
+    CPbkFieldAnalyzer( const CPbkFieldArray& aArray );
+
+private: // Data member
+    /// Ref: Contact item to display
+    const CPbkFieldArray& iFieldArray;
+    };
+
+#endif // __CPBKFIELDANALYZER_H__
+