00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #ifndef PLUGINITEMMODEL_H
00027 #define PLUGINITEMMODEL_H
00028
00029 #include "pluginmanager.h"
00030
00031 #include <QModelIndex>
00032
00033 namespace Avogadro {
00034
00035 class PluginItemModelPrivate;
00036 class PluginItemModel : public QAbstractItemModel
00037 {
00038 Q_OBJECT
00039
00040 public:
00041 explicit PluginItemModel( Plugin::Type type, QObject *parent = 0 );
00042 QModelIndex parent( const QModelIndex & ) const { return QModelIndex(); }
00043 int rowCount( const QModelIndex & parent = QModelIndex() ) const;
00044 int columnCount( const QModelIndex & parent = QModelIndex() ) const;
00045 QVariant data ( const QModelIndex & index, int role = Qt::DisplayRole ) const;
00046 Qt::ItemFlags flags ( const QModelIndex & index ) const;
00047 bool setData ( const QModelIndex & index, const QVariant & value, int role );
00048 QModelIndex index ( int row, int column, const QModelIndex & parent = QModelIndex() ) const;
00049
00050 PluginItem *plugin ( const QModelIndex & index ) const;
00051
00052 private:
00053 PluginItemModelPrivate * const d;
00054
00055 };
00056
00057 }
00058
00059 #endif