phonebookui/Phonebook/App/src/PbkContactInfoNavigationStrategyFactory.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Thu, 19 Aug 2010 09:41:07 +0300
branchRCL_3
changeset 18 d4f567ce2e7c
parent 0 e686773b3f54
permissions -rw-r--r--
Revision: 201031 Kit: 201033

/*
* 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: 
*       Contact Info View group members navigation strategy factory.
*
*/


// INCLUDE FILES
#include "PbkContactInfoNavigationStrategyFactory.h"  // This class' declaration
#include "CPbkContactInfoGroupMemberNavigationStrategy.h"
#include "CPbkContactInfoContactNavigationStrategy.h"
#include "CPbkContactInfoNoNavigationStrategy.h"
#include <pbkconfig.hrh>
#include <CPbkContactEngine.h>
#include <CPbkConstants.h>



// ================= MEMBER FUNCTIONS =======================

MPbkContactInfoNavigationStrategy* PbkContactInfoNavigationStrategyFactory::CreateL
        (CPbkContactEngine& aEngine,
        MPbkContactInfoNavigationCallback& aCallback,
        TContactItemId aParentContactId)
    {
    MPbkContactInfoNavigationStrategy* ret = NULL;

    // Check is the contact info view navigation feature enabled
    TBool navigationEnabled = aEngine.Constants()->
        LocallyVariatedFeatureEnabled(EPbkLVContactInfoViewNavigation);
    
    if (!navigationEnabled)
        {
        // No navigation
        ret = CPbkContactInfoNoNavigationStrategy::NewL();
        }
    else if (aParentContactId != KNullContactId)
        {
        // Navigate group members
        ret = CPbkContactInfoGroupMemberNavigationStrategy::NewL(
                aEngine, aCallback, aParentContactId);
        }
    else
        {
        // Navigate all contacts
        ret = CPbkContactInfoContactNavigationStrategy::NewL(
                aEngine, aCallback);
        }

    return ret;
    }

//  End of File