uifw/ganes/inc/HgScrollBufferManager.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 12 Mar 2010 15:43:43 +0200
branchRCL_3
changeset 5 aabf2c525e0f
parent 0 2f259fa3e83a
permissions -rw-r--r--
Revision: 201007 Kit: 201008

/*
* 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:     
*
*/


#ifndef HGSCROLLBUFFERMANAGER_H_
#define HGSCROLLBUFFERMANAGER_H_

#include <e32base.h>
class MHgScrollBufferObserver;
class MHgBufferOwner;

NONSHARABLE_CLASS( CHgScrollBufferManager ) : public CActive
    {
public:

    static CHgScrollBufferManager* NewL( 
            MHgScrollBufferObserver& aObserver, 
            TInt aBufferSize,
            TInt aBufferTreshold,
            TInt aInitialPosition,
            TInt aTotalCount );
    
    virtual ~CHgScrollBufferManager();
    
protected: // From CActive

    void RunL();
    void DoCancel();
    TInt RunError( TInt aError );

public:
    void SetPosition( TInt aIndex );

    void ItemCountChanged( TInt aIndex, TBool aRemoved, TInt aNewTotalCount );
    
    void SetTotalCount( TInt aTotalCount );
    
    void SetBufferOwner( MHgBufferOwner& aOwner );
    
    void ResetBuffer( TInt aPosition, TInt aTotalCount);

protected:
    CHgScrollBufferManager(
            MHgScrollBufferObserver& aObserver, 
            TInt aBufferSize,
            TInt aBufferTreshold,
            TInt aInitialPosition,
            TInt aTotalCount );
    
    void ConstructL();

private:
    void NotifyObserver();
    
private:
    MHgScrollBufferObserver& iObserver; 
    MHgBufferOwner* iOwner;
    
    TInt iBufferSize;
    TInt iBufferTreshold;
    TInt iBufferPosition;
    TInt iDiff;
    TInt iTotalCount;
    
    TBool iResetOrdered;
    
    TInt iRequestStart;
    TInt iRequestCount;
    TInt iReleaseStart;
    TInt iReleaseCount;
    };

#endif /*HGSCROLLBUFFERMANAGER_H_*/