00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef SIDEBARMODEL_H
00021 #define SIDEBARMODEL_H
00022
00023
00024 #include <QtCore/QAbstractListModel>
00025
00026 #include <QtCore/QList>
00027 #include <QtCore/QMap>
00028
00029
00030 namespace qsapecng
00031 {
00032
00033
00034 class SideBarModel: public QAbstractListModel
00035 {
00036
00037 Q_OBJECT
00038
00039 public:
00040 SideBarModel(QObject* parent = 0);
00041
00042 int rowCount(const QModelIndex& parent = QModelIndex()) const;
00043
00044 QVariant data(
00045 const QModelIndex& index,
00046 int role = Qt::DisplayRole
00047 ) const;
00048
00049 QVariant headerData(
00050 int section,
00051 Qt::Orientation orientation,
00052 int role = Qt::DisplayRole
00053 ) const;
00054
00055 Qt::ItemFlags flags(const QModelIndex& index) const;
00056
00057 Qt::DropActions supportedDropActions() const;
00058
00059 QStringList mimeTypes() const;
00060 QMimeData* mimeData(const QModelIndexList& indexes) const;
00061
00062 private:
00063 void setupSideBar();
00064
00065 QList< QMap<int, QVariant> > componentList_;
00066
00067 };
00068
00069
00070 }
00071
00072
00073 #endif // SIDEBARMODEL_H