1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
/*
SPDX-FileCopyrightText: 2005 Adam Treat <treat@kde.org>
SPDX-FileCopyrightText: 2013 Sebastian Kügler <sebas@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef KDEVPLATFORM_PLUGIN_KDEVDOCUMENTMODEL_H
#define KDEVPLATFORM_PLUGIN_KDEVDOCUMENTMODEL_H
#include <QStandardItem>
#include <QStandardItemModel>
#include <QUrl>
class KDevDocumentItem;
class KDevCategoryItem;
class KDevFileItem;
class KDevDocumentItem: public QStandardItem
{
public:
explicit KDevDocumentItem( const QString &name );
~KDevDocumentItem() override;
virtual KDevCategoryItem *categoryItem() const
{
return nullptr;
}
virtual KDevFileItem *fileItem() const
{
return nullptr;
}
const QUrl url() const;
void setUrl(const QUrl &url);
QVariant data(int role) const override;
enum Roles {
UrlRole = Qt::UserRole + 1
};
private:
QUrl m_url;
};
class KDevCategoryItem: public KDevDocumentItem
{
public:
explicit KDevCategoryItem( const QString &name );
~KDevCategoryItem() override;
KDevCategoryItem *categoryItem() const override
{
return const_cast<KDevCategoryItem*>( this );
}
QList<KDevFileItem*> fileList() const;
KDevFileItem* file( const QUrl &url ) const;
};
class KDevFileItem: public KDevDocumentItem
{
public:
explicit KDevFileItem( const QUrl &url );
~KDevFileItem() override;
KDevFileItem *fileItem() const override
{
return const_cast<KDevFileItem*>( this );
}
};
class KDevDocumentModel: public QStandardItemModel
{
Q_OBJECT
public:
explicit KDevDocumentModel( QObject *parent = nullptr );
~KDevDocumentModel() override;
QList<KDevCategoryItem*> categoryList() const;
KDevCategoryItem* category( const QString& category ) const;
};
#endif // KDEVPLATFORM_PLUGIN_KDEVDOCUMENTMODEL_H
|