hgcacheproxymodel/tsrc/unit/bmhelper.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 14 May 2010 16:57:01 +0300
changeset 2 49c70dcc3f17
parent 1 e48454f237ca
child 3 c863538fcbb6
permissions -rw-r--r--
Revision: 201017 Kit: 201019

/*
* 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:
*
*  Version     : %version: 1 %
*/
#ifndef BUFFERMANAGERHELPER_H
#define BUFFERMANAGERHELPER_H

#include <hgwidgets/hgcacheproxymodel.h>

class BMHelper: public HgBufferManagerObserver
{
public:
    BMHelper(int totalSize);
    ~BMHelper();
    
    virtual void release(int start, int end);
    virtual void request(int start, int end, HgRequestOrder order = HgRequestOrderAscending);  

    bool isIntergal(int bufferSize);
    void itemCountChanged( int aIndex, bool aRemoved, int aNewTotalCount );
    void resizeCache(int newSize);

    
private:    
    QList< bool > mBuffer;
    
};
#endif // BUFFERMANAGERHELPER_H