1 #ifndef STANDARDITEMMODEL_H
2 #define STANDARDITEMMODEL_H
5 #include <QStandardItemModel>
11 class StandardItemModel
: public QStandardItemModel
14 StandardItemModel( MainWindow
* aparent
= 0 );
16 bool dropMimeData( const QMimeData
*data
, Qt::DropAction action
, int row
, int column
, const QModelIndex
&parent
);
17 QMimeData
* mimeData( const QModelIndexList
&indexes
) const;
18 QStringList
mimeTypes() const;
19 Qt::DropActions
supportedDropActions() const;
25 #endif // STANDARDITEMMODEL_H