2017-10-02 19:56:22 +00:00
|
|
|
#ifndef CSM_WORLD_LANDTEXTURETABLEPROXYMODEL_H
|
|
|
|
#define CSM_WORLD_LANDTEXTURETABLEPROXYMODEL_H
|
|
|
|
|
|
|
|
#include "idtableproxymodel.hpp"
|
|
|
|
|
2022-10-19 17:02:00 +00:00
|
|
|
class QModelIndex;
|
|
|
|
class QObject;
|
|
|
|
|
2017-10-02 19:56:22 +00:00
|
|
|
namespace CSMWorld
|
|
|
|
{
|
|
|
|
/// \brief Removes base records from filtered results.
|
|
|
|
class LandTextureTableProxyModel : public IdTableProxyModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
LandTextureTableProxyModel(QObject* parent = nullptr);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool filterAcceptsRow(int sourceRow, const QModelIndex& sourceParent) const override;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|