meetingrequest/mrgui/inc/cesmrlocationhistoryitem.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Wed, 31 Mar 2010 21:08:33 +0300
branchRCL_3
changeset 12 4ce476e64c59
parent 0 8466d47a6819
permissions -rw-r--r--
Revision: 201011 Kit: 201013

/*
* 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:  Location history item class definition
*
*/


#ifndef CESMRLOCATIONHISTORYITEM_H
#define CESMRLOCATIONHISTORYITEM_H

//  INCLUDES
#include <e32base.h>
#include "mesmrlocationhistoryitem.h"

// CLASS DECLARATION

/**
 * List item wrapper for location history
 */
NONSHARABLE_CLASS( CESMRLocationHistoryItem ) : public CBase,
                                                public MESMRLocationHistoryItem
    {
public:
    /**
     * Two-phased constructor.
     * Creates a new instance of class
     * 
     * @return CESMRLocationHistoryItem instance
     */
    static CESMRLocationHistoryItem* NewL( const TUint aId,
                                           const TDesC& aAddress, 
                                           const TDesC& aUrl );

    /**
     * Two-phased constructor.
     * Creates a new instance of class
     * and leaves it on the cleanupstack
     * 
     * @return CESMRLocationHistoryItem instance
     */
    static CESMRLocationHistoryItem* NewLC( const TUint aId,
                                            const TDesC& aAddress, 
                                            const TDesC& aUrl );

    /**
     * C++ Destructor.
     */
    virtual ~CESMRLocationHistoryItem();

public: // from MESMRLocationHistoryItem
    
    /**
     * Sets aAddress as new address 
     * 
     * @param aAddress New address to be set 
     */
    void SetAddressL( const TDesC& aAddress );
    
    /**
     * Sets aUrl as new url 
     * 
     * @param aUrl New url to be set 
     */
    void SetUrlL( const TDesC& aUrl );
    
    /**
     * Returns address 
     * 
     * @return the address of this item
     */
    const TDesC& Address() const;
    
    /**
     * Returns url 
     * 
     * @return the url of this item
     */
    const TDesC& Url() const;
    
    /**
     * Returns id
     * 
     * @return the id of this item
     */ 
    TUint Id() const;
    
protected:
    /**
     * C++ default constructor.
     * 
     * @param aId id for this item
     */
    CESMRLocationHistoryItem(  const TUint aId );

private:
    /**
     * ConstructL
     * 
     * @param aAddress address for this item
     * @param aUrl url for this item
     */
    void ConstructL( const TDesC& aAddress, 
                     const TDesC& aUrl );

private: // data
    HBufC*  iAddress; /// Owned: address

    HBufC*  iUrl; /// Owned: url

    TUint iId; // unique id
    };

#endif  // CESMRLOCATIONHISTORYITEM_H

// End of File