filebrowser/ui/inc/fbdrivemodel.h
author hgs
Fri, 03 Sep 2010 17:11:21 +0300
changeset 51 b048e15729d6
parent 31 e7a04a6385be
permissions -rw-r--r--
201035

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

#include "fbdriveentry.h"

#include <QAbstractListModel>
#include <QVariant>

// Forward declarations
class EngineWrapper;
class QModelIndex;
class QFileIconProvider;
class QObject;

class FbDriveModel : public QAbstractListModel
{
    Q_OBJECT

public:
    explicit FbDriveModel(EngineWrapper *engineWrapper, QObject *parent = 0);
    virtual ~FbDriveModel();

    int rowCount(const QModelIndex &parent = QModelIndex()) const;
    QVariant data(const QModelIndex &index, int role) const;
    QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;

    FbDriveEntry driveEntry(const QModelIndex &index) const;
    QString driveLetter( const QModelIndex &index ) const;
    QString mediaTypeString(const QModelIndex &index) const;

private:
    EngineWrapper *mEngineWrapper;
    QFileIconProvider *mFileIconProvider;
};



#endif /* FBDRIVEMODELH_H_ */