openmw-tes3coop/components/esxselector/model/masterproxymodel.hpp

26 lines
613 B
C++
Raw Normal View History

2013-08-17 02:12:30 +00:00
#ifndef MASTERPROXYMODEL_HPP
#define MASTERPROXYMODEL_HPP
#include <QSortFilterProxyModel>
2013-09-07 20:57:40 +00:00
#include <QStringList>
#include <QMimeData>
2013-08-17 02:12:30 +00:00
class QAbstractTableModel;
namespace EsxModel
2013-08-17 02:12:30 +00:00
{
class MasterProxyModel : public QSortFilterProxyModel
{
Q_OBJECT
public:
explicit MasterProxyModel(QObject *parent = 0, QAbstractTableModel *model = 0);
2013-09-07 20:57:40 +00:00
// virtual QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
2013-08-17 02:12:30 +00:00
signals:
2013-08-17 02:12:30 +00:00
public slots:
2013-09-07 20:57:40 +00:00
void slotSourceModelChanged(QModelIndex topLeft, QModelIndex botRight);
};
}
2013-08-17 02:12:30 +00:00
#endif // MASTERPROXYMODEL_HPP