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 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
/* This file is part of KDevelop
Copyright 2005 Adam Treat <treat@kde.org>
Copyright 2013 Sebastian Kügler <sebas@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef KDEVPLATFORM_PLUGIN_KDEVDOCUMENTMODEL_H
#define KDEVPLATFORM_PLUGIN_KDEVDOCUMENTMODEL_H
#include <QStandardItem>
#include <QStandardItemModel>
#include <QUrl>
#include <interfaces/idocument.h>
#include <QIcon>
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;
}
QIcon icon() const;
KDevelop::IDocument::DocumentState documentState() const;
void setDocumentState( KDevelop::IDocument::DocumentState state );
const QUrl url() const;
void setUrl(const QUrl &url);
QVariant data(int role) const override;
enum Roles {
UrlRole = Qt::UserRole + 1
};
protected:
QString m_fileIcon;
private:
QUrl m_url;
KDevelop::IDocument::DocumentState m_documentState;
};
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
|