QTfrontend/model/ThemeFilterProxyModel.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sun, 18 Mar 2018 14:38:48 +0100
changeset 13247 4df9d8cedf7f
child 13248 b0022324fb4e
permissions -rw-r--r--
ThemeModel: Filter themes based on IsDlcRole rather than string-based
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13247
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
     1
/*
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
     2
 * Hedgewars, a free turn based strategy game
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
     3
 * Copyright (c) 2004-2018 Andrey Korotaev <unC0Rr@gmail.com>
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
     4
 *
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
     8
 *
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    12
 * GNU General Public License for more details.
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    13
 *
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    15
 * along with this program; if not, write to the Free Software
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    16
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    17
 */
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    18
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    19
/**
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    20
 * @file
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    21
 * @brief ThemeFilterProxyModel class implementation
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    22
 */
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    23
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    24
#include "ThemeModel.h"
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    25
#include "ThemeFilterProxyModel.h"
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    26
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    27
ThemeFilterProxyModel::ThemeFilterProxyModel(QObject *parent)
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    28
    : QSortFilterProxyModel(parent)
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    29
{
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    30
    isFilteringDLC = false;
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    31
}
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    32
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    33
bool ThemeFilterProxyModel::filterAcceptsRow(int sourceRow, const QModelIndex & sourceParent) const
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    34
{
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    35
    if(isFilteringDLC)
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    36
    {
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    37
        QModelIndex index = sourceModel()->index(sourceRow, 0, sourceParent);
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    38
        bool isDLC = index.data(ThemeModel::IsDlcRole).toBool();
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    39
        return !isDLC;
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    40
    }
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    41
    else
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    42
    {
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    43
        return true;
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    44
    }
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    45
}
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    46
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    47
void ThemeFilterProxyModel::setFilterDLC(bool enable)
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    48
{
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    49
    isFilteringDLC = enable;
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    50
    invalidateFilter();
4df9d8cedf7f ThemeModel: Filter themes based on IsDlcRole rather than string-based
Wuzzy <Wuzzy2@mail.ru>
parents:
diff changeset
    51
}