phonebookui/Phonebook2/UIControls/inc/pbk2contactviewdoublelistboxdataelement.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 11 May 2010 16:00:21 +0300
branchRCL_3
changeset 32 2828b4d142c0
parent 0 e686773b3f54
child 57 2666d9724c76
permissions -rw-r--r--
Revision: 201017 Kit: 201019

/*
* Copyright (c) 2009-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 PBK2CONTACTVIEWDOUBLELISTBOXDATAELEMENT_H
#define PBK2CONTACTVIEWDOUBLELISTBOXDATAELEMENT_H

//  INCLUDES
#include <e32base.h>
#include <pbk2contactuicontroldoublelistboxextension.h>
#include <TPbk2IconId.h>

//FORWARD
class MVPbkContactLink;

// CLASS DECLARATION

/**
 * Double listbox data element
 *  this helper class implements MPbk2DoubleListboxDataElement interface
 */
NONSHARABLE_CLASS( CPbk2ContactViewDoubleListboxDataElement ) :
        public CBase,
        public MPbk2DoubleListboxDataElement
    {
public: // constructor and destructor
    static CPbk2ContactViewDoubleListboxDataElement* NewL(
            MVPbkContactLink* aLink = NULL,
            TInt aListIndex = KErrNotFound );
    ~CPbk2ContactViewDoubleListboxDataElement();

    TPtr TextPtr(
            MPbk2DoubleListboxDataElement::TTextDataElementItems aIndex) const;
    inline const MVPbkContactLink* ContactLink();
    inline TInt ListIndex();
    
public: // from MPbk2DoubleListboxDataElement
    const TPbk2IconId& IconId( 
            MPbk2DoubleListboxDataElement::TIconDataElementItems aIndex ) const;
    const TDesC& Text( 
            MPbk2DoubleListboxDataElement::TTextDataElementItems aIndex ) const;
    TTextDataType TextType(
            MPbk2DoubleListboxDataElement::TTextDataElementItems aIndex ) const;
    
    void SetIconId( 
            MPbk2DoubleListboxDataElement::TIconDataElementItems aIndex, 
            const TPbk2IconId& aIconId );
    void SetText( 
            MPbk2DoubleListboxDataElement::TTextDataElementItems aIndex, 
            HBufC* aBuffer,
            MPbk2DoubleListboxDataElement::TTextDataType aType );
private:
    inline CPbk2ContactViewDoubleListboxDataElement(TInt aListIndex);
    inline void ConstructL();

private:
    TFixedArray<TPbk2IconId, 3> iIcons;
    TFixedArray<HBufC*, 2> iTexts;
    TFixedArray<TTextDataType, 2 > iTextType;
    /// Own
    HBufC* iEmptyBuffer;
    /// Own: for data cache
    MVPbkContactLink* iLink;
    /// for data cache
    TInt iListIndex;
    };

inline const MVPbkContactLink* 
CPbk2ContactViewDoubleListboxDataElement::ContactLink()
    {
    return iLink;
    }

inline TInt CPbk2ContactViewDoubleListboxDataElement::ListIndex()
    {
    return iListIndex;
    }


#endif // PBK2CONTACTVIEWDOUBLELISTBOXDATAELEMENT_H

// End of File