1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-22 09:23:54 +00:00
openmw/apps/opencs/model/world/landtexturetableproxymodel.hpp

24 lines
533 B
C++
Raw Normal View History

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
{
2022-09-22 18:26:05 +00:00
Q_OBJECT
public:
LandTextureTableProxyModel(QObject* parent = nullptr);
2017-10-02 19:56:22 +00:00
2022-09-22 18:26:05 +00:00
protected:
bool filterAcceptsRow(int sourceRow, const QModelIndex& sourceParent) const override;
2017-10-02 19:56:22 +00:00
};
}
#endif