2

QSortFilterProxyModel が QFileSystemModel で動作する場合、正しくフィルタリングできないことがわかりました。ビューに何も残らないこともありました。誰かが私が間違っている場所を指摘できますか?

#include "MainWindow.h"
#include "ui_MainWindow.h"
#include <QFileSystemModel>
#include <QSortFilterProxyModel>

MainWindow::MainWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::MainWindow)
{
    ui->setupUi(this);
    QFileSystemModel *fsm = new QFileSystemModel(this);
    fsm->setRootPath(".");

    QSortFilterProxyModel *sfpm = new QSortFilterProxyModel();
    sfpm->setDynamicSortFilter(true);
    sfpm->setSourceModel(fsm);

    ui->tableView->setModel(sfpm);
    ui->tableView->setRootIndex(sfpm->mapFromSource(fsm->index(".")));

    sfpm->setFilterRegExp(QRegExp(".*cpp"));
    sfpm->setFilterKeyColumn(0);
}

MainWindow::~MainWindow()
{
    delete ui;
}

上記のコードで QRegExp(".*") を使用すると、現在のパスにあるすべてのファイルが表示されます。これをテストするための簡単なプロジェクトを作成できます。

4

1 に答える 1

3

私はこれに対する正しい解決策を持っていると思います。「source_parent」に関する何かを行うには、QSortFilterProxyModelをサブクラス化する必要があります。

class MySortFilterProxyModel : public QSortFilterProxyModel
{
protected:
    virtual bool MySortFilterProxyModel::filterAcceptsRow(
            int source_row, const QModelIndex &source_parent) const{
        QFileSystemModel *sm = qobject_cast<QFileSystemModel*>(sourceModel());
        if (source_parent == sm->index(sm->rootPath())) {    
            return QSortFilterProxyModel::filterAcceptsRow(source_row, source_parent);
        } 
        return true;            
    }
};
于 2012-08-22T02:16:39.390 に答える