mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 06:39:49 +00:00
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
|