view src/includeemptysortmodel.cpp @ 113:20ec21924338 tip

Added tag 1.4 for changeset 9daf778feaf1
author Andre Heinecke <andre.heinecke@intevation.de>
date Thu, 08 Dec 2016 15:34:30 +0100
parents 3916cb3c9105
children
line wrap: on
line source
/* Copyright (C) 2015 by ETH Zürich
 * Software engineering by Intevation GmbH
 *
 * This file is Free Software under the GNU GPL (v>=2)
 * and comes with ABSOLUTELY NO WARRANTY!
 * See LICENSE.txt for details.
 */
#include "includeemptysortmodel.h"

bool IncludeEmptySortModel::filterAcceptsRow(int row, const QModelIndex &parent) const
{
    bool parentAcceptsRow = QSortFilterProxyModel::filterAcceptsRow(row, parent);
    if (!mIncludeEmpty || parentAcceptsRow) {
        return parentAcceptsRow;
    }

    QModelIndex source_index = sourceModel()->index(row, filterKeyColumn(), parent);
    if (!source_index.isValid()) // the column may not exist
        return true;
    QString key = sourceModel()->data(source_index).toString();
    return key.isEmpty();
}
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)