emailuis/emailui/inc/FreestyleEmailUiListModel.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 18 Jan 2010 20:08:26 +0200
changeset 2 5253a20d2a1e
parent 0 8466d47a6819
child 8 e1b6206813b4
permissions -rw-r--r--
Revision: 201001 Kit: 201003

/*
* Copyright (c) 2007 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:  FreestyleEmailUi  list model and model item 
*				 abstract base classes definitions
*
*/

 
 
#ifndef __FREESTYLEEMAILUI_LISTMODEL_H__
#define __FREESTYLEEMAILUI_LISTMODEL_H__

#include <e32base.h>
//<cmail>
#include "CFSMailMessage.h"
//</cmail>

// LIST ITEM MODEL DEFINITION
class MFSListModelItem
    {
public:
    /** Virtual destructor. */
    virtual ~MFSListModelItem() {}

    };

/**
 * An interface for a list model. This mixin class provides storage methods for 
 * accessing, adding and removing list data.
 * 
 * Logic code and visualisation is done elsewhere.
 */
class MFSEmailListModel
    {
public:
	/**
	* Add an item to the end of the list.
	*/
	virtual void AppendL(MFSListModelItem* aItem) = 0;
	
	/**
	* Insert an item at the given index.
	*/	
	virtual void InsertL(MFSListModelItem* aItem, TInt aIndex) = 0;

	/**
	* Remove item by its index.
	*/	
	virtual void RemoveAndDestroy(TInt aIndex) = 0;

	/**
	* get an item by its index.
	* 
	* @return NULL if out of range.
	*/
	virtual MFSListModelItem* Item(TInt aIndex) = 0;

	/**
	* Get number of items in list.
	* 
	* @return Number of items.
	*/		
	virtual TInt Count() const = 0;
    };

#endif //__FREESTYLEEMAILUI_LISTMODEL_H__