From 88d19bca6cebfab88736e892b20c2da0fc67abcf Mon Sep 17 00:00:00 2001 From: Tomaz Canabrava Date: Thu, 13 Nov 2014 17:07:05 -0200 Subject: Added skeleton of the Suits Filter. Signed-off-by: Tomaz Canabrava Signed-off-by: Dirk Hohndel --- qt-ui/filtermodels.cpp | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'qt-ui/filtermodels.cpp') diff --git a/qt-ui/filtermodels.cpp b/qt-ui/filtermodels.cpp index 35f9b4103..da123799f 100644 --- a/qt-ui/filtermodels.cpp +++ b/qt-ui/filtermodels.cpp @@ -67,8 +67,28 @@ CREATE_DATA_METHOD( CLASS, COUNTER_FUNCTION ) CREATE_COMMON_METHODS_FOR_FILTER(TagFilterModel, count_dives_with_tag); CREATE_COMMON_METHODS_FOR_FILTER(BuddyFilterModel, count_dives_with_person); CREATE_COMMON_METHODS_FOR_FILTER(LocationFilterModel, count_dives_with_location); +CREATE_COMMON_METHODS_FOR_FILTER(SuitsFilterModel, count_dives_with_location); + CREATE_INSTANCE_METHOD(MultiFilterSortModel); +SuitsFilterModel::SuitsFilterModel(QObject *parent): QStringListModel(parent) +{ +} + +bool SuitsFilterModel::doFilter(dive *d, QModelIndex &index0, QAbstractItemModel *sourceModel) const +{ + return false; +} + +bool SuitsFilterModel::filterRow(int source_row, const QModelIndex &source_parent, QAbstractItemModel *sourceModel) const +{ + return false; +} + +void SuitsFilterModel::repopulate() +{ +} + TagFilterModel::TagFilterModel(QObject *parent) : QStringListModel(parent) { } -- cgit v1.2.3-70-g09d2