I'm using a QFileSystemModel with a QListview to display all files from a directory.
I'd like to filter that model to display some categories of files like :
- textual files : *.txt *.csv *.tab
- music : *.mp3 *.flac *.ogg
- movies : *.avi *.mkv
My current code is :
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
Filemodel = new QFileSystemModel(this) ;
Filemodel->setFilter( QDir::NoDotAndDotDot | QDir::Files ) ;
proxy_model = new QSortFilterProxyModel();
proxy_model ->setDynamicSortFilter(true);
proxy_model ->setSourceModel( Filemodel );
proxy_model ->setFilterKeyColumn(0);
ui->Filtered_tbView->setModel( proxy_model ) ;
}
(...)
/* combobox event to select file type to filter */
void MainWindow::on_FSFilter_Combo_currentIndexChanged(int index)
{
proxy_model->setFilterWildcard("*.txt"); // just a simple example here
ui->Filtered_tbView->setModel( proxy_model ) ;
}
That code doesn't display anything while all type of files are present in the directory.
Besides, things I've tried that wasn't fine for me (pointers may be useful for further readers) :
- setNameFilters : work well but lets show all files (unfiltered are just greyed)
- the Custom Sort/Filter Model Example -> while using QSortFilterProxyModel this example is somewhat too complicated to just filter out the file extentions, besides it uses regexp that is not the best method when using many filters like here.
- I've also found an interesting snippet from qt-project but couldn't found out how to implement it for rows with multiple extensions
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…