You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
416 B
C++
21 lines
416 B
C++
#ifndef PLUGINSMODEL_H
|
|
#define PLUGINSMODEL_H
|
|
|
|
#include <QStandardItemModel>
|
|
|
|
class PluginsModel : public QStandardItemModel
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
PluginsModel(QObject *parent = 0);
|
|
~PluginsModel() {};
|
|
|
|
bool dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent);
|
|
|
|
signals:
|
|
void indexesDropped(QVector<QPersistentModelIndex> indexes);
|
|
|
|
};
|
|
|
|
#endif |